mirror-ac/user/client.h

21 lines
248 B
C
Raw Normal View History

2023-08-18 07:33:13 +02:00
#ifndef CLIENT_H
#define CLIENT_H
#include <Windows.h>
#include "report.h"
namespace global
{
class Client
{
HANDLE pipe_handle;
LPTSTR pipe_name;
public:
Client(LPTSTR PipeName);
void WriteToPipe( TestReport* Report );
};
}
#endif