microsoft / Detours

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

return value of 'main()' #298

Open gvanem opened 10 months ago

gvanem commented 10 months ago

Many of the programs in this projects fails to compile using clang-cl for this IMHO silly reason:

sltestp.cpp(29,1): error: 'main' must return 'int'
DWORD main(int argc, char *argv[])
^~~~~

Since when was DWORD main() okay?