adwindll.h

来自「AlertDriver c++模块化类库」· C头文件 代码 · 共 53 行

H
53
字号
#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 + =
减小字号Ctrl + -
显示快捷键?