mirror of
https://github.com/Wind4/vlmcsd.git
synced 2025-09-09 03:39:37 +00:00
vlmcsd-svn812-2015-08-30-Hotbird64
This commit is contained in:
22
msrpc-client.h
Normal file
22
msrpc-client.h
Normal file
@@ -0,0 +1,22 @@
|
||||
/*
|
||||
* msrpc-client.h
|
||||
*/
|
||||
|
||||
#ifndef MSRPC_CLIENT_H_
|
||||
#define MSRPC_CLIENT_H_
|
||||
|
||||
#include "types.h"
|
||||
#include <setjmp.h>
|
||||
|
||||
typedef int_fast8_t RpcCtx;
|
||||
typedef RPC_STATUS RpcStatus;
|
||||
|
||||
RpcCtx connectToAddress(char *const addr, const int AddressFamily_unused, int_fast8_t showHostName);
|
||||
int_fast8_t isDisconnected(const RpcCtx handle);
|
||||
RpcStatus rpcBindClient(const RpcCtx handle, const int_fast8_t verbose);
|
||||
RpcStatus rpcSendRequest(const RpcCtx handle, BYTE* KmsRequest, size_t requestSize, BYTE **KmsResponse, size_t *responseSize);
|
||||
RpcStatus closeRpc(RpcCtx s);
|
||||
|
||||
#define INVALID_RPCCTX ((RpcCtx)~0)
|
||||
|
||||
#endif /* MSRPC_CLIENT_H_ */
|
Reference in New Issue
Block a user