12 lines
443 B
C
Executable File
12 lines
443 B
C
Executable File
#ifndef PIPE_COMMUNICATOR_H
|
|
#define PIPE_COMMUNICATOR_H
|
|
|
|
#include "types.h"
|
|
|
|
bool pipe_create(PipeCommunicator* comm, const wchar_t* pipe_name);
|
|
void pipe_destroy(PipeCommunicator* comm);
|
|
bool pipe_wait_for_client(PipeCommunicator* comm);
|
|
bool pipe_send_initial_data(PipeCommunicator* comm, bool verbose, bool fingerprint, const wchar_t* output_path);
|
|
bool pipe_relay_messages(PipeCommunicator* comm);
|
|
|
|
#endif // PIPE_COMMUNICATOR_H
|