| 152 | } |
| 153 | |
| 154 | const wchar_t* APIEvent::GetMailslotPath() { |
| 155 | static std::wstring sPath; |
| 156 | if (sPath.empty()) { |
| 157 | sPath = std::format( |
| 158 | L"\\\\.\\mailslot\\{}.events.v1.3", OpenKneeboard::ProjectReverseDomainW); |
| 159 | } |
| 160 | return sPath.c_str(); |
| 161 | } |
| 162 | |
| 163 | OPENKNEEBOARD_DEFINE_JSON(SetTabByIDEvent, mID, mPageNumber, mKneeboard); |
| 164 | OPENKNEEBOARD_DEFINE_JSON(SetTabByNameEvent, mName, mPageNumber, mKneeboard); |
nothing calls this directly
no outgoing calls
no test coverage detected