mirror of https://github.com/BOINC/boinc.git
15 lines
203 B
C
15 lines
203 B
C
|
#include <stdio.h>
|
||
|
|
||
|
#include "client_types.h"
|
||
|
|
||
|
class RPC_CLIENT {
|
||
|
int sock;
|
||
|
FILE* fin;
|
||
|
FILE* fout;
|
||
|
public:
|
||
|
~RPC_CLIENT();
|
||
|
int init(char*);
|
||
|
int get_projects(vector<PROJECT>&);
|
||
|
};
|
||
|
|