home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / quot210s.zip / include / qotd.h < prev    next >
C/C++ Source or Header  |  1998-06-07  |  1KB  |  50 lines

  1. /*
  2.  * qotd.h
  3.  *
  4.  * Header file containing PM definitions for the Quoteriser's Quote-of-the-day
  5.  * program.
  6.  *
  7.  *      Created: 31st March, 1997
  8.  * Version 1.00: 9th April, 1997
  9.  * Version 2.00: 21st December, 1997
  10.  *
  11.  * (C) 1997 Nicholas Paul Sheppard
  12.  *
  13.  * This file is distributed under the GNU General Public License. See the
  14.  * file copying.txt for details.
  15.  */
  16.  
  17. #ifndef _QUOTERISER_QOTD_H
  18. #define _QUOTERISER_QOTD_H
  19.  
  20. #include <os2.h>
  21. #include "types.h"
  22.  
  23. /* icon */
  24. #define IDI_ICON        1
  25.  
  26. /* menu */
  27. #define IDM_MAIN        2
  28. #define IDM_EXIT        20
  29. #define IDM_EDIT        21
  30. #define IDM_COPY_TEXT        210
  31. #define IDM_COPY_METAFILE    211
  32. #define IDM_AGAIN        22
  33.  
  34. /* strings */
  35. #define IDS_APPNAME        3000
  36. #define IDS_OPENFAILED        3001
  37. #define IDS_THREADFAILED    3002
  38. #define IDS_INIFAILED        3003
  39. #define IDS_EMPTYDB        3004
  40. #define IDS_NODB        3005
  41. #define IDS_SEARCHING        3006
  42. #define IDS_ERROR        3007
  43. #define IDS_UNSET        3008
  44.  
  45. /* variables in qotd.c */
  46. extern HWND    hwndVertScroll;
  47. extern PROFILE    prf;
  48.  
  49. #endif
  50.