mirror of
https://github.com/ufrisk/LeechCore.git
synced 2026-05-07 06:01:34 +08:00
15 lines
347 B
C
15 lines
347 B
C
// leechagent_rpc.h : definitions of RPC related functionality.
|
|
//
|
|
// (c) Ulf Frisk, 2025-2026
|
|
// Author: Ulf Frisk, pcileech@frizk.net
|
|
//
|
|
#ifndef __LEECHAGENT_RPC_H__
|
|
#define __LEECHAGENT_RPC_H__
|
|
|
|
#include "oscompatibility.h"
|
|
|
|
_Success_(return) BOOL RpcStartGRPC(_In_ PLEECHSVC_CONFIG pConfig);
|
|
void RpcStop();
|
|
|
|
#endif /* __LEECHAGENT_RPC_H__ */
|