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.

38 lines
728 B

  1. /*
  2. * client.hxx
  3. */
  4. #include <stdio.h>
  5. #include <stdlib.h>
  6. #include <windows.h>
  7. #include <rpc.h>
  8. #include <ole2.h>
  9. #include <oleext.h>
  10. #include "..\acttest.h"
  11. #include "..\dll\goober.h"
  12. // To build performance tests for pre-DCOM systems
  13. // uncomment the following line.
  14. //#define NO_DCOM
  15. typedef unsigned long ulong;
  16. typedef unsigned char uchar;
  17. #define NO 0
  18. #define YES 1
  19. typedef BOOL (* LPTESTFUNC) (void);
  20. DWORD InstallService(WCHAR * Path);
  21. extern WCHAR ServerName[32];
  22. void PrintUsageAndExit( BOOL bListTests );
  23. long InitializeRegistryForLocal();
  24. long InitializeRegistryForInproc();
  25. long InitializeRegistryForCustom();
  26. long InitializeRegistryForRemote();
  27. long InitializeRegistryForService();
  28. BOOL Tests();
  29.