home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: Graphics / Graphics.zip / os2apipm.zip / PMEXAM / HELLO / HELLO.H < prev    next >
C/C++ Source or Header  |  1993-01-04  |  1KB  |  41 lines

  1. /*********** HELLO C Sample Program Include file (.H) ***********************
  2.  *
  3.  *  The HELLO include file defines symbolic constants used
  4.  *  in the HELLO.C and .RC files.
  5.  *  HELLO local procedure declarations may appear in this file to
  6.  *  ensure have been declared before being used.
  7.  *
  8.  *  Copyright (C) 1991 IBM Corporation
  9.  *
  10.  *      DISCLAIMER OF WARRANTIES.  The following [enclosed] code is
  11.  *      sample code created by IBM Corporation. This sample code is not
  12.  *      part of any standard or IBM product and is provided to you solely
  13.  *      for  the purpose of assisting you in the development of your
  14.  *      applications.  The code is provided "AS IS", without
  15.  *      warranty of any kind.  IBM shall not be liable for any damages
  16.  *      arising out of your use of the sample code, even if they have been
  17.  *      advised of the possibility of such damages.                                                    *
  18.  ******************************************************************************/
  19.  
  20. #pragma linkage (main,optlink)
  21. INT main(VOID);
  22.  
  23. extern VOID AbortHello(HWND hwndFrame,HWND hwndClient);
  24.  
  25. #define MSGBOXID    1001
  26.  
  27. #define ID_WINDOW   256
  28.  
  29. #define ID_OPTIONS  257
  30. #define ID_OPTION1  258
  31. #define ID_OPTION2  259
  32. #define ID_OPTION3  260
  33.  
  34. #define ID_EXITPROG 261
  35.  
  36. #define IDS_HELLO   262
  37. #define IDS_1       263
  38. #define IDS_2       264
  39. #define IDS_3       265
  40.  
  41.