mirror of
https://github.com/8damon/Blackbird-Platform
synced 2026-06-21 13:41:12 +00:00
26 lines
431 B
C++
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
|