>__ 100010 #pragma once11 #endif // _MSC_VER
> 100012 13 #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from
Windows headers14 15 16 ...
>_ 100010 #pragma once11 #endif // _MSC_VER >
100012 13 #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows
headers14 15 16 /...
>____ 100010 #pragma once11 #endif // _MSC_VER
> 100012 13 #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from
Windows headers14 15 1...
以下摘自源文件经过以下几步生成可执行文件:1、预处理(preprocessor):对#include、#define、#ifdef/#endif、#ifndef/#endif等进行处理2、编译(compiler):将源码编译为汇编代码3、汇编(assembler):将汇编代码汇编为目标代码4、链接(...
分类:
其他好文 时间:
2014-05-16 09:42:22
阅读次数:
360
if 循环 控制语句
if--then endif
if----then ----else endif
if-----then --elsif then ----else endif
--编写一个过程,可以 输入一个雇员名,如果该雇员的工资低于2000就给他增加10%
create or replace proc...
分类:
数据库 时间:
2014-05-13 00:23:11
阅读次数:
436
简介
本例讲解了如何使用ffmpeg SDK解码媒体文件;
一、源代码
#include
#include
#include
#include
#ifdef HAVE_AV_CONFIG_H
#undef HAVE_AV_CONFIG_H
#endif
#include "libavcodec/avcodec.h"
#define INBUF_SIZE 4...
分类:
其他好文 时间:
2014-05-10 08:38:17
阅读次数:
479
#include
#include
#include
#ifndef VIRTUAL
#define VIRTUAL
#endif
#ifndef DELETE
#define DELETE(X) do { free(X);X = NULL; } while(0)
#endif
#define NEW(TYPE,pInstance,SUBTYPE) struct TYPE* pInst...
分类:
编程语言 时间:
2014-05-09 22:29:48
阅读次数:
455
这篇文章是本人(本人是菜鸟)在第一次接触上线项目时遇到的一个让我记忆深刻的问题。
如果你是大神,那么请绕过,这只是很肤浅的知识点,写给自己也分享给大家。
相信大家对于下面的语句一定不陌生。
#ifdef (1)
(2)
#else
(3)
#endif
但是我在这里还是稍微解释一下吧(显得专业),如果在这个式子之前有
#define (1)
的话 执行...
分类:
移动开发 时间:
2014-05-07 16:38:20
阅读次数:
472
#include #ifdef __cplusplusextern "C"
{#endif#include #include //#include #ifdef _MSC_VERint strcasecmp(const char
*s1, const char *s2){ while ((*s...
分类:
其他好文 时间:
2014-05-05 11:09:37
阅读次数:
382
之前把调试项目的时候软件界面变成了很古板的那种界面,后来查了一会发现因为字符集的改变,个人习惯统一我一般用同一种字符集,虽然Unicode只涉及语言问题,不过总感觉它占内存,用非字符集,搜索发现将代码中的#ifdef
__UNICODE去掉就可以,注意后面的#endif。 1 #ifdef _UNI...
分类:
其他好文 时间:
2014-05-01 05:27:16
阅读次数:
374