| 5 | namespace pwr::amd { |
| 6 | |
| 7 | void* __stdcall ADL_Main_Memory_Alloc(int iSize) { |
| 8 | void* lpBuffer = malloc(iSize); |
| 9 | return lpBuffer; |
| 10 | } |
| 11 | |
| 12 | Adl2Wrapper::Adl2Wrapper() { |
| 13 | // get init proc, throw if not found |
nothing calls this directly
no outgoing calls
no test coverage detected