vbutil.h
来自「The code for this article was written fo」· C头文件 代码 · 共 35 行
H
35 行
// VBUTIL.H
//@B VBUtil
#ifndef _VBUTIL_H_
#define _VBUTIL_H_
#include <windows.h>
#include <io.h>
#include <iostream.h>
#include <strstrea.h>
#include "oletype.h"
// Temporary buffer size
const TEMP_MAX = 512;
#define DLLAPI WINAPI // Currently evaluates to __stdcall
// Make ASSERT statement (fails in expressions where it shouldn't be used)
#if defined(DEBUG)
#define ASSERT(f) \
if (f) \
NULL; \
else \
assert(f)
#else
#define ASSERT(f) NULL
#endif
void ErrorHandler(Long e);
DWORD HResultToErr(Long e);
#endif // _VBUTIL_H_
//@E VBUtil
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?