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
616 B

  1. #include <windows.h>
  2. #include <stdio.h>
  3. #include <tchar.h>
  4. //
  5. // Include ODS headers
  6. //
  7. #include "srv.h"
  8. #include <string>
  9. using namespace std;
  10. #define XP_NOERROR 0
  11. #define XP_ERROR 1
  12. #define MAXCOLNAME 25
  13. #define MAXNAME 50
  14. #define MAXTEXT 255
  15. #define MAXERROR 80
  16. #define XP_SRVMSG_SEV_ERROR 11
  17. extern "C"
  18. {
  19. RETCODE xp_reset_key( SRV_PROC *srvproc );
  20. RETCODE xp_reclaculate_statistics( SRV_PROC *srvproc );
  21. }
  22. void ReportError( SRV_PROC *srvproc, LPCSTR sz, DWORD dwResult = 0 );
  23. string& GetUddiInstallDirectory();
  24. ULONG __GetXpVersion();