|
From: Mattia B. <mb...@ds...> - 2001-10-23 12:21:57
|
Hello, I've made some small changes to w32api theat allows its use with OpenWatcom ( patch for discussion attached ). Are w32api deveklopers interested in such changes? ( Of course the final patch will have GetCurrentFiber/GetFiberData ) The only thing that is not clear to me is: w32api uses foo __stdcall func1(); __stdcall foo* func2(); While Watcom wants foo __stdcall func1(); foo* __stdcall func2(); I know that MSVC5 has problems with foo* __stdcall func2(); but GCC does not seem to. Should I change it to foo* __stdcall or use a DECLSPEC_STDCALL(type) that does the right thing for the current compiler? Regards Mattia |