JwaCdErr.pas
上传用户:davidchvip
上传日期:2009-07-28
资源大小:1749k
文件大小:6k
源码类别:

Windows编程

开发平台:

Delphi

  1. {******************************************************************************}
  2. {                                                                       }
  3. { Common dialog error return codes API interface Unit for Object Pascal        }
  4. {                                                                       }
  5. { Portions created by Microsoft are Copyright (C) 1995-2001 Microsoft          }
  6. { Corporation. All Rights Reserved.                                            }
  7. {                 }
  8. { The original file is: cderr.h, released June 2000. The original Pascal       }
  9. { code is: CdErr.pas, released December 2000. The initial developer of the     }
  10. { Pascal code is Marcel van Brakel (brakelm@chello.nl).                        }
  11. {                                                                              }
  12. { Portions created by Marcel van Brakel are Copyright (C) 1999-2001            }
  13. { Marcel van Brakel. All Rights Reserved.                                      }
  14. {                 }
  15. { Obtained through: Joint Endeavour of Delphi Innovators (Project JEDI)        }
  16. {                }
  17. { You may retrieve the latest version of this file at the Project JEDI home    }
  18. { page, located at http://delphi-jedi.org or my personal homepage located at   }
  19. { http://members.chello.nl/m.vanbrakel2                                        }
  20. {                }
  21. { The contents of this file are used with permission, subject to the Mozilla   }
  22. { Public License Version 1.1 (the "License"); you may not use this file except }
  23. { in compliance with the License. You may obtain a copy of the License at      }
  24. { http://www.mozilla.org/MPL/MPL-1.1.html                                      }
  25. {                                                                              }
  26. { Software distributed under the License is distributed on an "AS IS" basis,   }
  27. { WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for }
  28. { the specific language governing rights and limitations under the License.    }
  29. {                                                                              }
  30. { Alternatively, the contents of this file may be used under the terms of the  }
  31. { GNU Lesser General Public License (the  "LGPL License"), in which case the   }
  32. { provisions of the LGPL License are applicable instead of those above.        }
  33. { If you wish to allow use of your version of this file only under the terms   }
  34. { of the LGPL License and not to allow others to use your version of this file }
  35. { under the MPL, indicate your decision by deleting  the provisions above and  }
  36. { replace  them with the notice and other provisions required by the LGPL      }
  37. { License.  If you do not delete the provisions above, a recipient may use     }
  38. { your version of this file under either the MPL or the LGPL License.          }
  39. {                 }
  40. { For more information about the LGPL: http://www.gnu.org/copyleft/lesser.html }
  41. {                 }
  42. {******************************************************************************}
  43. unit JwaCdErr;
  44. {$WEAKPACKAGEUNIT}
  45. {$HPPEMIT ''}
  46. {$HPPEMIT '#include "cderr.h"'}
  47. {$HPPEMIT ''}
  48. {$I WINDEFINES.INC}
  49. interface
  50. const
  51.   CDERR_DIALOGFAILURE = $FFFF;
  52.   {$EXTERNALSYM CDERR_DIALOGFAILURE}
  53.   CDERR_GENERALCODES    = $0000;
  54.   {$EXTERNALSYM CDERR_GENERALCODES}
  55.   CDERR_STRUCTSIZE      = $0001;
  56.   {$EXTERNALSYM CDERR_STRUCTSIZE}
  57.   CDERR_INITIALIZATION  = $0002;
  58.   {$EXTERNALSYM CDERR_INITIALIZATION}
  59.   CDERR_NOTEMPLATE      = $0003;
  60.   {$EXTERNALSYM CDERR_NOTEMPLATE}
  61.   CDERR_NOHINSTANCE     = $0004;
  62.   {$EXTERNALSYM CDERR_NOHINSTANCE}
  63.   CDERR_LOADSTRFAILURE  = $0005;
  64.   {$EXTERNALSYM CDERR_LOADSTRFAILURE}
  65.   CDERR_FINDRESFAILURE  = $0006;
  66.   {$EXTERNALSYM CDERR_FINDRESFAILURE}
  67.   CDERR_LOADRESFAILURE  = $0007;
  68.   {$EXTERNALSYM CDERR_LOADRESFAILURE}
  69.   CDERR_LOCKRESFAILURE  = $0008;
  70.   {$EXTERNALSYM CDERR_LOCKRESFAILURE}
  71.   CDERR_MEMALLOCFAILURE = $0009;
  72.   {$EXTERNALSYM CDERR_MEMALLOCFAILURE}
  73.   CDERR_MEMLOCKFAILURE  = $000A;
  74.   {$EXTERNALSYM CDERR_MEMLOCKFAILURE}
  75.   CDERR_NOHOOK          = $000B;
  76.   {$EXTERNALSYM CDERR_NOHOOK}
  77.   CDERR_REGISTERMSGFAIL = $000C;
  78.   {$EXTERNALSYM CDERR_REGISTERMSGFAIL}
  79.   PDERR_PRINTERCODES     = $1000;
  80.   {$EXTERNALSYM PDERR_PRINTERCODES}
  81.   PDERR_SETUPFAILURE     = $1001;
  82.   {$EXTERNALSYM PDERR_SETUPFAILURE}
  83.   PDERR_PARSEFAILURE     = $1002;
  84.   {$EXTERNALSYM PDERR_PARSEFAILURE}
  85.   PDERR_RETDEFFAILURE    = $1003;
  86.   {$EXTERNALSYM PDERR_RETDEFFAILURE}
  87.   PDERR_LOADDRVFAILURE   = $1004;
  88.   {$EXTERNALSYM PDERR_LOADDRVFAILURE}
  89.   PDERR_GETDEVMODEFAIL   = $1005;
  90.   {$EXTERNALSYM PDERR_GETDEVMODEFAIL}
  91.   PDERR_INITFAILURE      = $1006;
  92.   {$EXTERNALSYM PDERR_INITFAILURE}
  93.   PDERR_NODEVICES        = $1007;
  94.   {$EXTERNALSYM PDERR_NODEVICES}
  95.   PDERR_NODEFAULTPRN     = $1008;
  96.   {$EXTERNALSYM PDERR_NODEFAULTPRN}
  97.   PDERR_DNDMMISMATCH     = $1009;
  98.   {$EXTERNALSYM PDERR_DNDMMISMATCH}
  99.   PDERR_CREATEICFAILURE  = $100A;
  100.   {$EXTERNALSYM PDERR_CREATEICFAILURE}
  101.   PDERR_PRINTERNOTFOUND  = $100B;
  102.   {$EXTERNALSYM PDERR_PRINTERNOTFOUND}
  103.   PDERR_DEFAULTDIFFERENT = $100C;
  104.   {$EXTERNALSYM PDERR_DEFAULTDIFFERENT}
  105.   CFERR_CHOOSEFONTCODES = $2000;
  106.   {$EXTERNALSYM CFERR_CHOOSEFONTCODES}
  107.   CFERR_NOFONTS         = $2001;
  108.   {$EXTERNALSYM CFERR_NOFONTS}
  109.   CFERR_MAXLESSTHANMIN  = $2002;
  110.   {$EXTERNALSYM CFERR_MAXLESSTHANMIN}
  111.   FNERR_FILENAMECODES   = $3000;
  112.   {$EXTERNALSYM FNERR_FILENAMECODES}
  113.   FNERR_SUBCLASSFAILURE = $3001;
  114.   {$EXTERNALSYM FNERR_SUBCLASSFAILURE}
  115.   FNERR_INVALIDFILENAME = $3002;
  116.   {$EXTERNALSYM FNERR_INVALIDFILENAME}
  117.   FNERR_BUFFERTOOSMALL  = $3003;
  118.   {$EXTERNALSYM FNERR_BUFFERTOOSMALL}
  119.   FRERR_FINDREPLACECODES = $4000;
  120.   {$EXTERNALSYM FRERR_FINDREPLACECODES}
  121.   FRERR_BUFFERLENGTHZERO = $4001;
  122.   {$EXTERNALSYM FRERR_BUFFERLENGTHZERO}
  123.   CCERR_CHOOSECOLORCODES = $5000;
  124.   {$EXTERNALSYM CCERR_CHOOSECOLORCODES}
  125. implementation
  126. end.