boinc/client/gui_rpc_client.h

15 lines
203 B
C
Raw Normal View History

#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>&);
};