Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

110 lines
1.6 KiB

  1. /*++
  2. Copyright (c) 1997-1998 Microsoft Corporation
  3. Module Name:
  4. digitaer.h
  5. Abstract:
  6. FlashPoint Digita command language error codes
  7. Notes:
  8. Non-portable, for use with Win32 environment.
  9. Author:
  10. Vlad Sadovsky (VladS) 11/13/1998
  11. Environment:
  12. User Mode - Win32
  13. Revision History:
  14. 11/13/1998 VladS Created
  15. --*/
  16. #pragma once
  17. typedef UINT CDPERROR ;
  18. //
  19. // No error detected
  20. //
  21. #define CDPERR_NOERROR 0
  22. //
  23. // Illegal command or command not implemented
  24. //
  25. #define CDPERR_UNIMPLEMENTED 1
  26. //
  27. // Protocol error
  28. //
  29. #define CDPERR_PROT_ERROR 2
  30. //
  31. // Timeout of interface
  32. //
  33. #define CDPERR_APPTIMEOUT 3
  34. //
  35. // Memory errors, corrupted image, OS errors, media read/write errors , etc
  36. //
  37. #define CDPERR_INTERNAL 4
  38. //
  39. // INvalid parameter value
  40. //
  41. #define CDPERR_INVALID_PARAM 5
  42. //
  43. // File system is full
  44. //
  45. #define CDPERR_FILESYS_FULL 6
  46. //
  47. // Specified file is not found
  48. //
  49. #define CDPERR_FILE_NOT_FOUND 7
  50. //
  51. // Image does not contain data section ( f.e. thumbnail, audio )
  52. //
  53. #define CDPERR_DATA_NOT_FOUND 8
  54. //
  55. // Unknown file type
  56. //
  57. #define CDPERR_INVALID_FILE_TYPE 9
  58. //
  59. // Unknown drive name
  60. //
  61. #define CDPERR_UNKNOWN_DRIVE 10
  62. //
  63. // Specified drive is not mounted
  64. //
  65. #define CDPERR_DRIVE_NOT_MOUNTED 11
  66. //
  67. // System is currently busy
  68. //
  69. #define CDPERR_SYSTEM_BUSY 12
  70. //
  71. // Low battery
  72. //
  73. #define CDPERR_BATTERY_LOW 13
  74. #ifndef CDPERR_CANCEL_CALLBACK
  75. //BUGBUG
  76. #define CDPERR_CANCEL_CALLBACK 141
  77. #endif