Files
8damon-Blackbird-Platform/UserMode/hook/ipc/send.cpp
T

26 lines
431 B
C++

#define NOMINMAX
#include "pipe.h"
namespace BKIPC
{
bool SendHello()
{
return Initialize();
}
bool RequestNumberForName(const std::wstring &name, DWORD &outValue)
{
(void)name;
outValue = 0;
return false;
}
bool RequestNameForNumber(DWORD ssn, std::wstring &outName)
{
(void)ssn;
outName.clear();
return false;
}
} // namespace BKIPC