vlmcsd/src/vlmcs.h

30 lines
623 B
C
Raw Normal View History

2015-11-29 10:30:52 +01:00
#ifndef VLMCS_H_
#define VLMCS_H_
#ifndef CONFIG
#define CONFIG "config.h"
#endif // CONFIG
#include CONFIG
2016-10-14 07:28:23 +02:00
#if !defined(USE_MSRPC) && defined(_WIN32)
2015-11-29 10:30:52 +01:00
#include <winsock2.h>
#endif // defined(USE_MSRPC) && defined(_WIN32)
#include "types.h"
2016-08-15 12:35:59 +02:00
#ifndef USE_MSRPC
#include "rpc.h"
#else // USE_MSRPC
#include "msrpc-client.h"
#endif // USE_MSRPC
#include "kms.h"
2015-11-29 10:30:52 +01:00
#if MULTI_CALL_BINARY < 1
#define client_main main
#else
int client_main(int argc, CARGV argv);
#endif
2016-08-15 12:35:59 +02:00
int SendActivationRequest(const RpcCtx sock, RESPONSE *baseResponse, REQUEST *baseRequest, RESPONSE_RESULT *result, BYTE *const hwid);
2015-11-29 10:30:52 +01:00
#endif /* VLMCS_H_ */