MCPcopy Create free account
hub / github.com/Boomslangnz/FFBArcadePlugin / DirectInputDirectInput8Create

Function DirectInputDirectInput8Create

DllMain.cpp:807–813  ·  view source on GitHub ↗

DINPUT8 WRAPPER

Source from the content-addressed store, hash-verified

805}
806// DINPUT8 WRAPPER
807HRESULT WINAPI DirectInputDirectInput8Create(HINSTANCE hinst, DWORD dwVersion, REFIID riidltf, LPVOID* ppvOut, LPUNKNOWN punkOuter)
808{
809 LPVOID val;
810 HRESULT res = originalDirectInputDirectInput8Create(hinst, dwVersion, riidltf, &val, punkOuter);
811 *ppvOut = new DirectInputDeviceWrapper(val, (IID_IDirectInput8W == riidltf));
812 return res;
813}
814
815HRESULT WINAPI DirectInputDllRegisterServer(void)
816{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected