mirror-ac/user/client.h

19 lines
234 B
C
Raw Normal View History

2023-08-18 07:33:13 +02:00
#ifndef CLIENT_H
#define CLIENT_H
#include <Windows.h>
namespace global
{
class Client
{
HANDLE pipe_handle;
LPTSTR pipe_name;
public:
Client(LPTSTR PipeName);
2023-08-18 09:18:00 +02:00
void WriteToPipe( PVOID Buffer, SIZE_T Size );
2023-08-18 07:33:13 +02:00
};
}
#endif