home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / powergui / frame1 / dialog / dialog.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-10-29  |  715 b   |  27 lines

  1. /**********************************************************
  2. / Frame Window Basics - Loading a Dialog Template
  3. /
  4. / Copyright (C) 1994, Law, Leong, Love, Olson, Tsuji.
  5. / Copyright (c) 1997 John Wiley & Sons, Inc. 
  6. / All Rights Reserved.
  7. **********************************************************/
  8. #include <icconst.h>
  9.  
  10. /* Define values not in VisualAge C++ for OS/2, V3.0. */
  11. #ifdef IC_PM
  12.  
  13. #ifndef IC_ID_OK
  14.   #define IC_ID_OK     1
  15.   #define IC_ID_CLOSE  0x8004    // SC_CLOSE
  16. #endif
  17. #endif
  18.  
  19. /* Window identifiers. */
  20. #define ID_DIALOG      100
  21. #define ID_OK          IC_ID_OK
  22. #define ID_CLOSE       IC_ID_CLOSE
  23.  
  24. /* Menu identifiers. */
  25. #define ID_FILE        200
  26. #define ID_DIALOG_CMD  210
  27.