| 3 | #include"WindowsShellcodeInjector.h" |
| 4 | |
| 5 | void WindowsShellCodeInvoke::p32(UINT32 src, UINT8 *dst) { |
| 6 | for (int i = 0; i < 4; i++) { |
| 7 | dst[i] = src & 0xff; |
| 8 | src >>= 8; |
| 9 | } |
| 10 | } |
| 11 | |
| 12 | void WindowsShellCodeInvoke::p64(UINT64 src, UINT8 *dst) { |
| 13 | for (int i = 0; i < 8; i++) { |
nothing calls this directly
no outgoing calls
no test coverage detected