Source code of Windows XP (NT5)
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.

68 lines
1020 B

  1. #ifndef _MAIN_H
  2. #define _MAIN_H
  3. //
  4. // NT Headers
  5. //
  6. #include <nt.h>
  7. #include <ntrtl.h>
  8. #include <nturtl.h>
  9. //
  10. // Windows Headers
  11. //
  12. #include <windows.h>
  13. #include <rpc.h>
  14. //
  15. // CRunTime Includes
  16. //
  17. #include <stdlib.h>
  18. #include <limits.h>
  19. #include <io.h>
  20. #include <stdio.h>
  21. #include <string.h>
  22. //
  23. // ********** Other Includes
  24. //
  25. #include "memory.h"
  26. #include "debug.h"
  27. #include "msg.h"
  28. #include "globals.h"
  29. DWORD Client32CheckSchemaExtension(
  30. PWSTR szServer,
  31. PWSTR szContext,
  32. PWSTR szUser,
  33. PWSTR szPasswd,
  34. BOOL *pfExtended
  35. );
  36. DWORD NWAPICheckSchemaExtension(
  37. PWSTR szServer,
  38. PWSTR szContext,
  39. PWSTR szUser,
  40. PWSTR szPasswd,
  41. BOOL *pfExtended
  42. );
  43. DWORD NWAPIExtendSchema(
  44. PWSTR szServer,
  45. PWSTR szContext,
  46. PWSTR szUser,
  47. PWSTR szPasswd
  48. );
  49. DWORD Client32ExtendSchema(
  50. PWSTR szServer,
  51. PWSTR szContext,
  52. PWSTR szUser,
  53. PWSTR szPasswd
  54. );
  55. void SelectivePrint(DWORD messageID, ...);
  56. void SelectivePrintWin32(DWORD dwError);
  57. #endif