?? spbutils.h
字號(hào):
/*****************************************************************
*
* Project.....: Shell Programming Book Utility Library
* Application.: SPBUTIL.dll
* Module......: SPBUtils.h
* Description.: Utility header
* Compiler....: MS Visual C++
* Written by..: D. Esposito
* Environment.: Windows 9x/NT
*
******************************************************************/
// Prevent multiple inclusions
#define WIN32_LEAN_AND_MEAN
#define STRICT
#ifndef _SPB_UTILS_
#define _SPB_UTILS_
#ifdef __cplusplus
extern "C" {
#endif
/*---------------------------------------------------------------*/
// INCLUDE section
/*---------------------------------------------------------------*/
#include <windows.h>
#include <windowsx.h>
/*---------------------------------------------------------------*/
// PROTOTYPE section
/*---------------------------------------------------------------*/
// Error Messages
#include <stdarg.h>
void WINAPI Msg(char* szFormat, ...);
void WINAPI SPB_SystemMessage(DWORD dwRC);
#ifdef __cplusplus
}
#endif
#endif // _SPB_UTILS_
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -