Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
401 B

  1. @echo off
  2. rem Removes the IcePicked gdiplus.dll, and replaces it with the original
  3. pushd %~dp0..\Engine\Flat\dll\obj\i386
  4. if not exist gdiplus.beforecap.dll echo gppick has not been run on this gdiplus.dll & goto exit
  5. if not exist gdiplus.dll echo gdiplus.dll not found & goto exit
  6. del gdiplus.dll
  7. ren gdiplus.beforecap.dll gdiplus.dll
  8. echo gdiplus.dll has been restored.
  9. :exit
  10. popd