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.

43 lines
788 B

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