- Don't name-decorate the entrypoint. This lets msvc link the module properly and remains compatible with GCC. Modified: trunk/reactos/tools/rbuild/module.cpp _____
Modified: trunk/reactos/tools/rbuild/module.cpp --- trunk/reactos/tools/rbuild/module.cpp 2006-01-07 01:26:05 UTC (rev 20638) +++ trunk/reactos/tools/rbuild/module.cpp 2006-01-07 01:27:20 UTC (rev 20639) @@ -817,7 +817,7 @@
case Kernel: return "_NtProcessStartup"; case KernelModeDLL: - return "_DriverEntry@8"; + return "DriverEntry"; case NativeDLL: return "_DllMainCRTStartup@12"; case NativeCUI: @@ -836,7 +836,7 @@ else return "_WinMainCRTStartup"; case KernelModeDriver: - return "_DriverEntry@8"; + return "DriverEntry"; case BuildTool: case StaticLibrary: case ObjectLibrary: