summaryrefslogtreecommitdiffstats
path: root/private/oleutest/act/client/client.hxx
blob: b5c9a412f27bc6d032a37fc4c3916ed0c5d30c0e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/*
 * client.hxx
 */

#ifdef UNICODE
#define _UNICODE 1
#endif

#include <windows.h>
#include <stdio.h>
#include <stdlib.h>
#include <tchar.h>
#include <ole2.h>
#include <oleext.h>
#include "..\acttest.h"
#include "..\dll\goober.h"
#include <rpc.h>

// To build performance tests for pre-DCOM systems
// uncomment the following line.
//#define NO_DCOM

typedef unsigned long   ulong;
typedef unsigned char   uchar;
#define NO  0
#define YES 1

typedef BOOL (* LPTESTFUNC) (void);

DWORD InstallService(TCHAR * Path);

extern TCHAR ServerName[32];

void PrintUsageAndExit( BOOL bListTests );
long InitializeRegistryForLocal();
long InitializeRegistryForInproc();
long InitializeRegistryForCustom();
long InitializeRegistryForRemote();
long InitializeRegistryForService();

BOOL Tests();