home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / wpobj.zip / TESTAPP.H < prev    next >
Text File  |  1993-10-19  |  729b  |  29 lines

  1. /***************************************************************************\
  2.  * NAME: TESTAPP.H
  3.  *
  4.  * DESCRIPTION:
  5.  *     Test application that shows a sample use of the color sample control.
  6. \***************************************************************************/
  7.  
  8. #define DebugBox(title, text) WinMessageBox(HWND_DESKTOP,HWND_DESKTOP, (PSZ) text , (PSZ) title, 20, MB_OK)
  9.  
  10. /* Function definitions
  11.  */
  12. MRESULT EXPENTRY TestAppDlgProc(
  13.     HWND     hwnd,
  14.     ULONG    message,
  15.     MPARAM    mp1,
  16.     MPARAM    mp2 );
  17.  
  18. int main(
  19.     int     argc,
  20.     char     *argv[] );
  21.  
  22. #define SAMPLE_DIALOG            100
  23. #define    DID_EDIT1                901
  24. #define DID_EDIT2                902
  25. #define DID_SAMPLE1                903
  26. #define DID_SAMPLE2                904
  27. #define DID_BOGUS                  0xFFFF
  28.  
  29.