Fix compiler warning due to missing function prototype.
[svn.git] / contrib / client-side / diff3wrap.bat
blob1d085f8822bb2c38c2f3de9a06512ca23f240c24
1 @ECHO OFF\r
2 \r
3 REM Configure your favorite diff3/merge program here.\r
4 SET DIFF3="C:\Program Files\Funky Stuff\My Merge Tool.exe"\r
5 \r
6 REM Subversion provides the paths we need as the ninth, tenth, and eleventh \r
7 REM parameters.  But we only have access to nine parameters at a time, so we\r
8 REM shift our nine-parameter window twice to let us get to what we need.\r
9 SHIFT\r
10 SHIFT\r
11 SET MINE=%7\r
12 SET OLDER=%8\r
13 SET YOURS=%9\r
15 REM Call the merge command (change the following line to make sense for\r
16 REM your merge program).\r
17 %DIFF3% --older %OLDER% --mine %MINE% --yours %YOURS%\r
19 REM After performing the merge, this script needs to print the contents\r
20 REM of the merged file to stdout.  Do that in whatever way you see fit.\r
21 REM Return an errorcode of 0 on successful merge, 1 if unresolved conflicts\r
22 REM remain in the result.  Any other errorcode will be treated as fatal.\r