home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / magazine / drdobbs / 1991 / 03 / megaphon / megaphon.h < prev    next >
Text File  |  1990-12-17  |  1KB  |  48 lines

  1. #define MAX_CONNECTIONS 100
  2. #define MAX_MESSAGE_LEN  56
  3.  
  4. #define IDT_MESSAGETIMER 100
  5.  
  6. #define IDC_USERLISTBOXTITLE    100
  7. #define IDC_USERLISTBOX         101
  8. #define IDC_SERVERCOMBOBOXTITLE 102
  9. #define IDC_SERVERCOMBOBOX      103
  10. #define IDC_MESSAGEEDITBOX      104
  11. #define IDC_SENDBUTTON          105
  12. #define IDC_SETTINGSBUTTON      106
  13. #define IDC_EXITBUTTON          107
  14.  
  15. #define IDC_ACCEPTMESSAGES    100
  16. #define IDC_ICONIZEMESSAGES   101
  17. #define IDC_ONLYATTACHEDUSERS 102
  18. #define IDC_ALLUSERSINBINDERY 103
  19.  
  20. #define IDC_USERNAME  100
  21. #define IDC_STATION   101
  22. #define IDC_NODE      102
  23. #define IDC_FULLNAME  103
  24. #define IDC_LOGINTIME 104
  25. #define IDC_NETWORK   105
  26.  
  27. #define IDC_REPLYEDITBOX 100
  28. #define IDC_REPLYBUTTON  101
  29. #define IDC_SAVEBUTTON   102
  30.  
  31. #define IDM_EXIT        200
  32. #define IDM_ABOUT       201
  33. #define IDM_REFRESH     220
  34.  
  35.  
  36. int  PASCAL WinMain(HANDLE, HANDLE, LPSTR, int);
  37.  
  38. LONG FAR PASCAL MainWndProc(HWND, unsigned, WORD, LONG);
  39. LONG FAR PASCAL UserInfo(HWND, unsigned, WORD, LONG);
  40. LONG FAR PASCAL MessageHandler(HWND, unsigned, WORD, LONG);
  41. BOOL FAR PASCAL About(HWND, unsigned, WORD, LONG);
  42. BOOL FAR PASCAL Settings(HWND, unsigned, WORD, LONG);
  43.  
  44. BOOL PASCAL InitNetStuff(VOID);
  45. VOID PASCAL EnableOrDisableSendButton(VOID);
  46. VOID PASCAL SendNetWareMessageToUsers(VOID);
  47. VOID PASCAL ShowUserInformation(VOID);
  48.