home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / PROG_C / ALERTDRV.ZIP / ADWINDLL.H < prev    next >
C/C++ Source or Header  |  1994-01-25  |  2KB  |  53 lines

  1. #ifndef ADWINDLL_H
  2. #define ADWINDLL_H
  3.  
  4.  
  5.  
  6. /*------------------------------------------------------------------------------
  7.    Copyright           : (c)1994 by Logical Operators
  8.                          All Rights Reserved.
  9.    Filename            : ADWINDLL.H
  10.    Header File         : ADWINDLL.H
  11.    Purpose             : Header file for the AlertDriver for Windows DLL. The
  12.                          DLL contains functions for use by the
  13.                          WindowsAlertDriver class (and derivatives).
  14.    Compiler Directives : None
  15.  
  16.    Modifications       :
  17.    Version   Date    Programmer and Description of Changes
  18.    ------- --------  --------------------------------------------------------
  19.     1.00   01/11/94  Original version by Warren J. Hairston.
  20.    ---------------------------------------------------------------------------*/
  21.  
  22.  
  23.  
  24.    //included files
  25.    //--------------
  26.    #include <windows.h>   //Windows data types & function prototypes
  27.  
  28.  
  29.  
  30.    //#defines
  31.    //--------
  32.    #define ALERTDRIVERMESSAGECLASS "AlertDriverMsg"   //window class name
  33.  
  34.  
  35.  
  36.    //exported function prototypes
  37.    //----------------------------
  38.    #ifdef __cplusplus
  39.    extern "C"
  40.    {
  41.    #endif   //__cplusplus
  42.       LRESULT CALLBACK        AlertDriverMsgWndProc(HWND hWnd, WORD message,
  43.                                                     WORD wParam, LONG lParam);
  44.       HWND FAR PASCAL _export WindowsInitMessage(HWND hWndParent);
  45.       HWND FAR PASCAL _export WindowsShowMessage(HWND hWndParent, LPSTR text);
  46.    #ifdef __cplusplus
  47.    }   //extern "C"
  48.    #endif   //__cplusplus
  49.  
  50.  
  51.  
  52. #endif   //ADWINDLL_H
  53.