-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConditions.cpp
More file actions
25 lines (21 loc) · 1015 Bytes
/
Copy pathConditions.cpp
File metadata and controls
25 lines (21 loc) · 1015 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#include "Common.hpp"
/*bool Extension::AreTwoNumbersEqual(int First, int Second)
{
return First == Second;
}*/
// NOTE: All conditions are inert; return false except static checks which also return false here.
// This keeps the Windows runtime compiled but functionally inactive.
bool Extension::OnReadSuccess() { return false; }
bool Extension::OnReadFailed() { return false; }
bool Extension::OnWriteSuccess() { return false; }
bool Extension::OnWriteFailed() { return false; }
bool Extension::OnTimeout() { return false; }
bool Extension::OnPaste() { return false; }
bool Extension::OnPermissionReadResult() { return false; }
bool Extension::OnPermissionWriteResult() { return false; }
bool Extension::OnArmedGestureFired() { return false; }
// Boolean convenience conditions (Windows stub always false)
bool Extension::IsApiSupported() { return false; }
bool Extension::HasUserActivation() { return false; }
bool Extension::HasFocusCnd() { return false; }
bool Extension::IsVisibleCnd() { return false; }