搜索结果
找到约 9 项符合
ifdef 的查询结果
按分类筛选
Delphi控件源码 // // BEZIER.RC2 - resources Microsoft Visual C++ does not edit directly // #ifdef APSTUDIO_INV
//
// BEZIER.RC2 - resources Microsoft Visual C++ does not edit directly
//
#ifdef APSTUDIO_INVOKED
#error this file is not editable by Microsoft Visual C++
#endif //APSTUDIO_INVOKED
Windows CE #ifdef _AFXDLL Enable3dControls() // Call this when using MFC in a shared DLL #else Enable3d
#ifdef _AFXDLL
Enable3dControls() // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic() // Call this when linking to MFC statically
#endif
CPreviewDialogDlg dlg
m_pMainWnd = &dlg
int nResponse = dlg.DoModal()
if (nResponse == IDOK)
{
// TODO: Place code here to ...
编译器/解释器 一个去掉程序中#ifdef #if 等预处理条件为假的程序
一个去掉程序中#ifdef #if 等预处理条件为假的程序
人工智能/神经网络 #ifdef INTEGER #include "ibp.h" #else #include "rbp.h" #endif /* built-in C functions */
#ifdef INTEGER
#include "ibp.h"
#else
#include "rbp.h"
#endif
/* built-in C functions */
单片机编程 ucos在ATMEGA128L上的移植
和其他的μC/OS-II移植文件类似,设备代码由以下3 到5 个文件组成的。
Os_cpu.h
Os_cpu_c.c
Os_cpu_a.s90 (该文件仅在ICC 编译器中使用)
Os_cpu_i.s90 (该文件仅在ICC 编译器中使用)
Os_dbg.c
Os_dbg.c 仅需在IAR 工程中使用。
3.01 OS_CPU.H
3.01.01 OS_CPU.H, macros for ‘externals’
Listing 3 ...
Linux/Unix编程 #include "REG51.H" #include <intrins.h> #include "Common.h" //#include "Remote.h" #def
#include "REG51.H"
#include <intrins.h>
#include "Common.h"
//#include "Remote.h"
#define OSD_EN
//typedef unsigned char uCHAR
//#include "T100Data_A.h"
//#include "T100Data_PA.h"
//#include "T100Data_AU.h"
//#include "T100Data_CPT.h"
//#include "T100Data_PANASONIC.h"
//#include "T100Data_PVI7.h ...
接口技术 net_tcp.h
/*
*********************************************************************************************************
* &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; uC/TCP-IP V2
* &nbsp; &nbsp; &nbsp; ...
单片机编程 红外解码程序
/*
&nbsp;* _168ZHONGDUAN2.c
&nbsp;*
&nbsp;* Created: 2014/11/2 15:12:45
&nbsp;* &nbsp;Author: lenovo
&nbsp;*/&nbsp;
#include <avr/io.h>
#include <avr/iom168pa.h>
#include <avr/interrupt.h>
#include <util/delay.h>
#include <avr/eeprom.h>
//#include <util/delay_basic.h>
//unsigned char const SEGtabl ...
书籍 pid教程
pid控制
#ifndef _PID_H
#ifndef _PID_H
#ifdef _PID_C
&nbsp;&nbsp;&nbsp; #define PID_EXT
#else
&nbsp;&nbsp;&nbsp; #define PID_EXT extern
#endif
typedef struct PID
{
&nbsp;&nbsp; &nbsp;int SetPoint;
&nbsp;&nbsp; &nbsp;
&nbsp;&nbsp; &nbsp;unsigned char BitMove;
&nbsp;&nbsp; &nbsp;
&nbsp;&nbsp; &n ...