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

Windows编程

开发平台:

Visual C++

  1. #if ! defined( _RES_STR_ )
  2. #define _RES_STR_
  3. #ifdef RESOURCES
  4. #define RES_STR(a, b, c) b, c
  5. STRINGTABLE
  6. LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
  7. BEGIN
  8. #else
  9. enum _RESOURCEIDS {
  10. #define RES_STR(a, b, c) a = b,
  11. #endif
  12. RES_STR(ERR_OPEN_INPUT_FILE,    1,      "The file '%s' could not be openned for reading")
  13. RES_STR(ERR_INVALID_PE,         2,      "'%s' is not a valid PE exe file with debug info")
  14. RES_STR(ERR_NO_DEST,            3,      "Need to specify a destination for the converted debug information")
  15. RES_STR(ERR_OPEN_WRITE_FILE,    4,      "Cannot open the file '%s' for writing")
  16. RES_STR(ERR_EDIT_DBG_FILE,      5,      "Cannot edit name file in DBG file")
  17. RES_STR(ERR_MAP_FILE,           6,      "Cannot map the file '%s'")
  18. RES_STR(ERR_NO_COFF,            7,      "No COFF debug information present to be converted")
  19. RES_STR(ERR_NOT_MAPPED,         8,      "Cannot add CV info unless debug information is mapped")
  20. RES_STR(ERR_COFF_TO_CV,         9,      "Cannot convert COFF debug information to CodeView debug information")
  21. RES_STR(ERR_OP_UNKNOWN,         10,     "Operation '%s' is unknown")
  22. RES_STR(ERR_NO_MEMORY,          11,     "Out of memory")
  23. RES_STR(ERR_FILE_PTRS,          12,     "INTERNAL: cannot set file pointers")
  24. RES_STR(ERR_SET_EOF,            13,     "INTERNAL: cannot set the end of file markder")
  25. RES_STR(ERR_CHECKSUM_CALC,      14,     "INTERNAL: cannot compute the image checksum")
  26. #ifdef RESOURCES
  27. END
  28. #else
  29. };
  30. #endif
  31. #endif // _RES_STR_