Changed GUID_DEFINED to _GUID_DEFINED for compatibility (prevent conflict) with mingw...
[reactos.git] / reactos / installwine.bat
1 @echo off
2 REM
3 REM created by sedwards 11/11/01
4 REM
5 if "%1" == "" goto NoParameter
6 set WINE_INSTALL=%1
7 goto Install
8 :NoParameter
9 set WINE_INSTALL=c:\reactos\system32
10 set ROS_INSTALL=c:\reactos
11 :Install
12 echo Installing dlls to %WINE_INSTALL%
13 @echo off
14 copy ..\wine\dlls\comctl32\comctl32.dll %WINE_INSTALL%
15 copy ..\wine\dlls\commdlg\comdlg32.dll %WINE_INSTALL%
16 copy ..\wine\dlls\ddraw\ddraw.dll %WINE_INSTALL%
17 copy ..\wine\dlls\dinput\dinput.dll %WINE_INSTALL%
18 copy ..\wine\dlls\dplay\dplay.dll %WINE_INSTALL%
19 copy ..\wine\dlls\dplayx\dplayx.dll %WINE_INSTALL%
20 copy ..\wine\dlls\mapi32\mapi32.dll %WINE_INSTALL%
21 copy ..\wine\dlls\ole32\ole32.dll %WINE_INSTALL%
22 copy ..\wine\dlls\oleaut32\oleaut32.dll %WINE_INSTALL%
23 copy ..\wine\dlls\olecli\olecli32.dll %WINE_INSTALL%
24 copy ..\wine\dlls\oledlg\oledlg.dll %WINE_INSTALL%
25 copy ..\wine\dlls\olepro32\olepro32.dll %WINE_INSTALL%
26 copy ..\wine\dlls\olesvr\olesvr32.dll %WINE_INSTALL%
27 copy ..\wine\dlls\psapi\psapi.dll %WINE_INSTALL%
28 copy ..\wine\dlls\richedit\riched32.dll %WINE_INSTALL%
29 copy ..\wine\dlls\rpcrt4\rpcrt4.dll %WINE_INSTALL%
30 copy ..\wine\dlls\serialui\serialui.dll %WINE_INSTALL%
31 copy ..\wine\dlls\shdocvw\shdocvw.dll %WINE_INSTALL%
32 copy ..\wine\dlls\shell32\shell32.dll %WINE_INSTALL%
33 copy ..\wine\dlls\shfolder\shfolder.dll %WINE_INSTALL%
34 copy ..\wine\dlls\shlwapi\shlwapi.dll %WINE_INSTALL%
35 copy ..\wine\dlls\tapi32\tapi32.dll %WINE_INSTALL%
36 copy ..\wine\dlls\urlmon\urlmon.dll %WINE_INSTALL%
37 copy ..\wine\dlls\wintrust\wintrust.dll %WINE_INSTALL%
38 REM
39 echo Installing winelib programs to %ROS_INSTALL%\bin
40 REM
41 copy ..\wine\programs\clock\winclock.exe %ROS_INSTALL%\bin
42 copy ..\wine\programs\cmdlgtst\cmdlgtst.exe %ROS_INSTALL%\bin
43 copy ..\wine\programs\control\control.exe %ROS_INSTALL%\bin
44 copy ..\wine\programs\notepad\notepad.exe %ROS_INSTALL%\bin
45 copy ..\wine\programs\progman\progman.exe %ROS_INSTALL%\bin
46 copy ..\wine\programs\uninstaller\uninstaller.exe %ROS_INSTALL%\bin
47 copy ..\wine\programs\view\view.exe %ROS_INSTALL%\bin
48 copy ..\wine\programs\wcmd\wcmd.exe %ROS_INSTALL%\bin
49 copy ..\wine\programs\winefile\winefile.exe %ROS_INSTALL%\bin
50 copy ..\wine\programs\winemine\winmine.exe %ROS_INSTALL%\bin
51 copy ..\wine\programs\winver\winver.exe %ROS_INSTALL%\bin
52 REM
53 echo Installing Regression tests to %ROS_INSTALL%\bin
54 copy ..\wine\dlls\advapi32\tests\advapi32_test.exe %WINE_INSTALL%
55 copy ..\wine\dlls\kernel\tests\kernel32_test.exe %WINE_INSTALL%
56 copy ..\wine\dlls\ntdll\tests\ntdll_test.exe %WINE_INSTALL%
57 copy ..\wine\dlls\user32\tests\user32_test.exe %WINE_INSTALL%
58 REM
59
60
61