Files
VLMCSD/sources/src/vlmcs.h
T
Cantibra 50e015dc96
VLMCSD / VLMCSD (amd64, cicd.bookworm, bookworm trixie noble, main, x86_64-linux-gnu-gcc-12) (push) Successful in 15s
VLMCSD / VLMCSD (arm64, cicd.bookworm, bookworm trixie noble, main, aarch64-linux-gnu-gcc-12) (push) Failing after 2m31s
Initialize Git Repository: 'VLMCSD'
2026-05-04 21:22:10 +02:00

29 lines
622 B
C

#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_ */