pqdif_custom_1.h

来自「电能质量交换格式转换库」· C头文件 代码 · 共 32 行

H
32
字号
//
//  This file is included just after the windows.h and STL library includes
//  using namespace std; declaration and just before the standard PQDIF headers
//  in PQDIF_classes.h
//
//  Use this file to add custom headers for your implementation of PQDIF
//
// =============================================================================
//
//                               Begin Custom Header
//
// =============================================================================
//
#ifdef __BORLANDC__
#define _stricmp stricmp
#else
#if _MSC_VER >= 1100
#include <crtdbg.h>
#endif
#include <comdef.h>
#include <atlconv.h>
#endif

#undef ASSERT
#define ASSERT(x)

#undef ASSERT_VALID
#define ASSERT_VALID(x)

#undef _T
#define _T

⌨️ 快捷键说明

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