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.

28 lines
1.3 KiB

  1. /**************************************************************************
  2. *
  3. * InstVer.h - SDK Version-checking installer include file
  4. *
  5. * Copyright (C) Microsoft, 1991-1994
  6. * February 25, 1991
  7. *
  8. **************************************************************************/
  9. /** Error returns from DLL/.EXE */
  10. #define ERR_BADSRCDIR -1 /* invalid library (source) pathname */
  11. #define ERR_BADWINDIR -2 /* invalid windows directory */
  12. #define ERR_BADARGS -3 /* incorrect arguments (DOS .EXE only) */
  13. #define ERR_CREATINGFILE -4 /* error creating destination file */
  14. #define ERR_CANNOTREADSRC -5 /* error opening/reading source file */
  15. #define ERR_OUTOFSPACE -6 /* out of disk space copying file */
  16. #define ERR_BADDATFILE -7 /* invalid DAT file */
  17. #define ERR_CANTOPENDATFILE -8 /* can't open DAT file for reading */
  18. #define ERR_NOMEM -9 /* out of memory for local buffers */
  19. #define ERR_READINGDATFILE -10 /* error in reading DAT file*/
  20. #define ERR_RENAME -11 /* error renaming destination file */
  21. /* library installer function */
  22. BOOL FAR PASCAL InstallVersionFiles (LPSTR lpszLibPath,
  23. LPSTR lpszWindowsPath,
  24. LPSTR lpszDatFile);