| 198 | /* Token Functions */ |
| 199 | |
| 200 | extern "C" BEACON_IMPEX BOOL BeaconUseToken(HANDLE token) { |
| 201 | /* Probably needs to handle DuplicateTokenEx too */ |
| 202 | SetThreadToken(NULL, token); |
| 203 | return TRUE; |
| 204 | } |
| 205 | |
| 206 | extern "C" BEACON_IMPEX void BeaconRevertToken(void) { |
| 207 | if (!RevertToSelf()) { |
nothing calls this directly
no outgoing calls
no test coverage detected