Commit ba7ccc4c authored by Steven Edwards's avatar Steven Edwards Committed by Alexandre Julliard

Changes wine_main to main to properly build on all platforms.

parent 37d960fa
......@@ -40,7 +40,8 @@ show_last_error(void)
}
int
wine_main(int argc, char ** argv)
main(int argc, char ** argv)
{
BOOL result;
OSVERSIONINFO oiv;
......
name osversioncheck
mode cuiexe
type win32
init wine_main
init main
import kernel32.dll
import ntdll.dll
name wcmd
mode cuiexe
type win32
init wine_main
init main
rsrc wcmdrc.res
import shell32.dll
......
......@@ -33,8 +33,7 @@ BATCH_CONTEXT *context = NULL;
* winmain().
*/
int wine_main (int argc, char *argv[]) {
int main (int argc, char *argv[]) {
char string[1024], args[MAX_PATH], param[MAX_PATH];
int status, i;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment