home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c480 / 20.ddi / SAMPLES / MAKEAPP / DLG.H_ / DLG.H
Encoding:
C/C++ Source or Header  |  1993-02-08  |  707 b   |  27 lines

  1. #ifndef _INC_DLG
  2. #define _INC_DLG
  3.  
  4. // Public declarations
  5.  
  6. int SampleDlg_Do(HWND hwndOwner);
  7.  
  8. // Private declarations
  9.  
  10. // Dialog procedure
  11.  
  12. BOOL CALLBACK _export SampleDlg_OldDlgProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
  13.  
  14. LRESULT SampleDlg_DlgProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
  15.  
  16. // Default message handler
  17.  
  18. LRESULT SampleDlg_DefProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
  19.  
  20. // Message handlers
  21.  
  22. BOOL SampleDlg_OnInitDialog(HWND hwnd, HWND hwndFocus, LPARAM lParam);
  23. void SampleDlg_OnCommand(HWND hwnd, UINT id, HWND hwndCtl, UINT codeNotify);
  24. BOOL SampleDlg_OnMsgFilter(HWND hwnd, MSG FAR* lpmsg, int context);
  25.  
  26. #endif  // !_INC_DLG
  27.