| 854 | struct operation_xor { int operator()(const int& a, const int& b) { return a ^ b; } }; |
| 855 | struct operation_or { int operator()(const int& a, const int& b) { return a | b; } }; |
| 856 | struct operation_and { int operator()(const int& a, const int& b) { return a & b; } }; |
| 857 | |
| 858 | int nLoArg = LOWORD(nArg); |
| 859 | int nHiArg = HIWORD(nArg); |
nothing calls this directly
no outgoing calls
no test coverage detected