pschweitzer@svn.reactos.org wrote:
+DWORD WINAPI sfc_8()
I hope you guys realize that sfc_8 () compiled as C is different from what it'd be when compiled as C++. In C this means that it is a cdecl function with variable arguments (I guess WINAPI overrides cdecl, but still). If it is compiled as C++, it means the same as sfc_8 (void). So better have a void argument list.
Thomas