📄 adwindll.h
字号:
#ifndef ADWINDLL_H
#define ADWINDLL_H
/*------------------------------------------------------------------------------
Copyright : (c)1994 by Logical Operators
All Rights Reserved.
Filename : ADWINDLL.H
Header File : ADWINDLL.H
Purpose : Header file for the AlertDriver for Windows DLL. The
DLL contains functions for use by the
WindowsAlertDriver class (and derivatives).
Compiler Directives : None
Modifications :
Version Date Programmer and Description of Changes
------- -------- --------------------------------------------------------
1.00 01/11/94 Original version by Warren J. Hairston.
---------------------------------------------------------------------------*/
//included files
//--------------
#include <windows.h> //Windows data types & function prototypes
//#defines
//--------
#define ALERTDRIVERMESSAGECLASS "AlertDriverMsg" //window class name
//exported function prototypes
//----------------------------
#ifdef __cplusplus
extern "C"
{
#endif //__cplusplus
LRESULT CALLBACK AlertDriverMsgWndProc(HWND hWnd, WORD message,
WORD wParam, LONG lParam);
HWND FAR PASCAL _export WindowsInitMessage(HWND hWndParent);
HWND FAR PASCAL _export WindowsShowMessage(HWND hWndParent, LPSTR text);
#ifdef __cplusplus
} //extern "C"
#endif //__cplusplus
#endif //ADWINDLL_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -