SNSystems / dexter

DExTer - Debug Experience Tester
MIT License
33 stars 6 forks source link

Use WINFUNCTYPE for windows callback types #74

Closed jmorse closed 4 years ago

jmorse commented 4 years ago

WINFUNCTYPE selects the correct calling convention from the platform, if we pick cdecl all the time then windows gets upset on 32 bit machines.

stdcall: causing me misery and pain for almost 20 years!

OCHyams commented 4 years ago

Makes sense LGTM