aboutsummaryrefslogtreecommitdiffstats
path: root/lib/rpcs32.h
blob: 6c333b4e3d6831ced276b947563f660a79fb7825 (plain)
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
#ifndef _rpcs32_h_
#define _rpcs32_h_

#include "rpcs.h"

class ppsocket;

class rpcs32 : public rpcs {
	public:
		rpcs32(ppsocket *);
		~rpcs32();

		int queryDrive(const char, bufferArray &);
		int getCmdLine(const char *, bufferStore &); 
		int getMachineInfo(machineInfo &);
		int configOpen(void);
		int configRead(void);
#if 0
		int closeHandle(int);
		int regOpenIter(void);
		int regReadIter(void);
		int regWrite(void);
		int regRead(void);
		int regDelete(void);
		int setTime(void);
		int configOpen(void);
		int configRead(void);
		int configWrite(void);
		int queryOpen(void);
		int queryRead(void);
		int quitServer(void);
#endif

};

#endif