pnstdinc.h

来自「PQDIF软件包(SDK,Software Development Kit),它」· C头文件 代码 · 共 35 行

H
35
字号
// Windows declarations. Note: the compile time variable USE_MFC is used to
// determine if afxwin.h or Windows.h should be included. This is required
// since STRICT can not be enabled with MCF.
//#ifdef USE_MFC
    #include <afxwin.h>
    #include <afxres.h>
    #include <afxdlgs.h>
//#else
//    #define STRICT
//    #include <windows.h>
//#endif


// Run-time library.
#include <stdio.h>
#include <io.h>
#include <string.h>
#include <stdlib.h>
#include <time.h>
#include <math.h>
#include <signal.h>


// Microsoft C++ Specific declarations.
#ifdef _MSC_VER


    // Disable the unreferenced local function warning. This is generated
    // each time an inline funciton is not used.
    #pragma warning (disable : 4505)
    
    
#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?