microsoft / Detours

Detours is a software package for monitoring and instrumenting API calls on Windows. It is distributed in source code form.
MIT License
5.02k stars 981 forks source link

Prevent conflict with MINGW32 defines #173

Closed ReneNyffenegger closed 3 years ago

ReneNyffenegger commented 3 years ago

mingw defines (typedefs?) ULONG_PTR and LONG_PTR, but not _MSC_VER. So the typedef LONG LONG_PTR in detours.h gives an error when compiling with mingw.

Microsoft Reviewers: Open in CodeFlow
bgianfo commented 3 years ago

Thanks!