1
0
mirror of https://github.com/Wind4/vlmcsd synced 2025-12-19 22:55:52 +00:00

vlmcsd-svn1065-2016-10-12-Hotbird64

This commit is contained in:
Wind4
2016-10-14 13:28:23 +08:00
parent d413afbadf
commit 798675dc66
599 changed files with 72866 additions and 1999 deletions

29
src/vlmcs.h Normal file
View File

@@ -0,0 +1,29 @@
#ifndef VLMCS_H_
#define VLMCS_H_
#ifndef CONFIG
#define CONFIG "config.h"
#endif // CONFIG
#include CONFIG
#if !defined(USE_MSRPC) && defined(_WIN32)
#include <winsock2.h>
#endif // defined(USE_MSRPC) && defined(_WIN32)
#include "types.h"
#ifndef USE_MSRPC
#include "rpc.h"
#else // USE_MSRPC
#include "msrpc-client.h"
#endif // USE_MSRPC
#include "kms.h"
#if MULTI_CALL_BINARY < 1
#define client_main main
#else
int client_main(int argc, CARGV argv);
#endif
int SendActivationRequest(const RpcCtx sock, RESPONSE *baseResponse, REQUEST *baseRequest, RESPONSE_RESULT *result, BYTE *const hwid);
#endif /* VLMCS_H_ */