ANIMSG.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:4k
源码类别:

Windows编程

开发平台:

Visual C++

  1. //
  2. //  Values are 32 bit values layed out as follows:
  3. //
  4. //   3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
  5. //   1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
  6. //  +---+-+-+-----------------------+-------------------------------+
  7. //  |Sev|C|R|     Facility          |               Code            |
  8. //  +---+-+-+-----------------------+-------------------------------+
  9. //
  10. //  where
  11. //
  12. //      Sev - is the severity code
  13. //
  14. //          00 - Success
  15. //          01 - Informational
  16. //          10 - Warning
  17. //          11 - Error
  18. //
  19. //      C - is the Customer code flag
  20. //
  21. //      R - is a reserved bit
  22. //
  23. //      Facility - is the facility code
  24. //
  25. //      Code - is the facility's status code
  26. //
  27. //
  28. // Define the facility codes
  29. //
  30. //
  31. // Define the severity codes
  32. //
  33. //
  34. // MessageId: MSG_INVALIDCURSORFILE
  35. //
  36. // MessageText:
  37. //
  38. //  %1 is not a valid animated cursor file.
  39. //
  40. #define MSG_INVALIDCURSORFILE            0x00000000L
  41. //
  42. // MessageId: MSG_OUTOFMEM
  43. //
  44. // MessageText:
  45. //
  46. //  There is not enough free memory for this operation.
  47. //
  48. #define MSG_OUTOFMEM                     0x00000001L
  49. //
  50. // MessageId: MSG_OUTOFRESOUCES
  51. //
  52. // MessageText:
  53. //
  54. //  There are not enough system resources to continue.  Try closing some
  55. //  applications and trying again.
  56. //
  57. #define MSG_OUTOFRESOUCES                0x00000002L
  58. //
  59. // MessageId: MSG_CANTOPENFILE
  60. //
  61. // MessageText:
  62. //
  63. //  The file %1 can not be opened.  Please verify that you have permission
  64. //  to access the file.
  65. //
  66. #define MSG_CANTOPENFILE                 0x00000003L
  67. //
  68. // MessageId: MSG_CANTCREATEFILE
  69. //
  70. // MessageText:
  71. //
  72. //  The file %1 can not be created.  Please verify that there is free
  73. //  space on the drive and that you have write permission.
  74. //
  75. #define MSG_CANTCREATEFILE               0x00000004L
  76. //
  77. // MessageId: MSG_MUSTEQONEFAME
  78. //
  79. // MessageText:
  80. //
  81. //  You must have one and only one frame selected to use this function.
  82. //
  83. #define MSG_MUSTEQONEFAME                0x00000005L
  84. //
  85. // MessageId: MSG_LESSEQONEFRAME
  86. //
  87. // MessageText:
  88. //
  89. //  You must have no more than one frame selected to use this function.
  90. //
  91. #define MSG_LESSEQONEFRAME               0x00000006L
  92. //
  93. // MessageId: MSG_FILEWRITEERR
  94. //
  95. // MessageText:
  96. //
  97. //  An error occured while writing file: %1.  Please make sure there is
  98. //  free space on the drive and that you have write permission.
  99. //
  100. #define MSG_FILEWRITEERR                 0x00000007L
  101. //
  102. // MessageId: MSG_RATERANGE
  103. //
  104. // MessageText:
  105. //
  106. //  You must specify a number greater than zero.
  107. //
  108. #define MSG_RATERANGE                    0x00000008L
  109. //
  110. // MessageId: MSG_LITERAL
  111. //
  112. // MessageText:
  113. //
  114. //  %1
  115. //
  116. #define MSG_LITERAL                      0x00000009L
  117. //
  118. // MessageId: MSG_FRAMESSELECTED
  119. //
  120. // MessageText:
  121. //
  122. //  %1!d! frames selected
  123. //
  124. #define MSG_FRAMESSELECTED               0x0000000AL
  125. //
  126. // MessageId: MSG_FRAMEOFSEL
  127. //
  128. // MessageText:
  129. //
  130. //  Frame %1!d! of %2!d! selected
  131. //
  132. #define MSG_FRAMEOFSEL                   0x0000000BL
  133. //
  134. // MessageId: MSG_ALLFRAMES
  135. //
  136. // MessageText:
  137. //
  138. //  All frames selected
  139. //
  140. #define MSG_ALLFRAMES                    0x0000000CL
  141. //
  142. // MessageId: MSG_NOFRAMESSEL
  143. //
  144. // MessageText:
  145. //
  146. //  No frames selected
  147. //
  148. #define MSG_NOFRAMESSEL                  0x0000000DL
  149. //
  150. // MessageId: MSG_SAVEFILEQUEST
  151. //
  152. // MessageText:
  153. //
  154. //  Save current file %1?
  155. //
  156. #define MSG_SAVEFILEQUEST                0x0000000EL
  157. //
  158. // MessageId: MSG_PASTEERR
  159. //
  160. // MessageText:
  161. //
  162. //  One of the frames in the clipboard could not be copied to the animation
  163. //  sequence.  Press OK to continue pasting with the next frame, or Cancel to
  164. //  abort the operation.
  165. //
  166. #define MSG_PASTEERR                     0x0000000FL
  167. //
  168. // MessageId: MSG_NOIMAGEDIT
  169. //
  170. // MessageText:
  171. //
  172. //  You must have the Image Editor ('%1') on your path to use this function.
  173. //
  174. #define MSG_NOIMAGEDIT                   0x00000010L