home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / powergui / thread / threads / threads.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-10-29  |  2.2 KB  |  62 lines

  1. /*******************************************************************************
  2. * FILE NAME: threads.h                                                         *
  3. *                                                                              *
  4. * DESCRIPTION:                                                                 *
  5. *                                                                              *
  6. * COPYRIGHT:                                                                   *
  7. *   Licensed Materials - Property of Solution Frameworks                       *
  8. *   Copyright (C) 1996, Solution Frameworks                                    *
  9. *   All Rights Reserved                                                        *
  10. *******************************************************************************/
  11. #ifdef WINDOWSx
  12. #define THREADS       "1000"
  13.  
  14. #define THREADS_POPUP "1100"
  15. #define THREADS_NEW   "1101"
  16. #define THREADS_EXIT  "1102"
  17.  
  18. #define THREAD_POPUP    "1200"
  19. #define THREAD_SUSPEND  "1201"
  20. #define THREAD_RESUME   "1201"
  21. #define THREAD_STOP     "1202"
  22. #define THREAD_BOOST    "1203"
  23. #define THREAD_REDUCE   "1204"
  24. #define THREAD_IDLE     "1205"
  25. #define THREAD_REGULAR  "1206"
  26. #define THREAD_TIMECRIT "1207"
  27. #define THREAD_FORE     "1208"
  28.  
  29. #define THREAD1 "2000"
  30. #else
  31. #define THREADS       1000
  32.  
  33. #define THREADS_POPUP 1100
  34. #define THREADS_NEW   1101
  35. #define THREADS_EXIT  1102
  36.  
  37. #define THREAD_POPUP         1200
  38. #define THREAD_SHOW          1201
  39. #define THREAD_SUSPEND       1202
  40. #define THREAD_RESUME        1202
  41. #define THREAD_STOP          1203
  42. #define THREAD_CRITSEC       1204
  43. #define THREAD_GETPRIVATE    1205
  44. #define THREAD_RELPRIVATE    1206
  45. #define THREAD_GETSHARED     1207
  46. #define THREAD_RELSHARED     1208
  47. #define THREAD_RESETPRIVATE  1209
  48. #define THREAD_SIGNALPRIVATE 1210
  49. #define THREAD_WAITPRIVATE   1211
  50. #define THREAD_RESETSHARED   1212
  51. #define THREAD_SIGNALSHARED  1213
  52. #define THREAD_WAITSHARED    1214
  53. #define THREAD_BOOST         1215
  54. #define THREAD_REDUCE        1216
  55. #define THREAD_IDLE          1217
  56. #define THREAD_REGULAR       1218
  57. #define THREAD_TIMECRIT      1219
  58. #define THREAD_FORE          1220
  59.                              
  60. #define THREAD1 2000
  61. #endif
  62.