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.

17 lines
687 B

  1. rem @echo off
  2. rem
  3. rem This utility is used to verify that changes to kbdtool.exe do not regress
  4. rem keyboard layouts, by comparing old and new kbd layout C source files.
  5. rem To use it:
  6. rem First, build all kbd layout C sources using the old kbdtool then rename
  7. rem the "all_kbds" directory to "all_kbds-"
  8. rem Then ssync -fr the "all_kbds" directory and build all kbd layout C sources again
  9. rem using the new kbdtool.
  10. rem Then run "diffit" from this directory, and look at the differences.
  11. rem (there should be just version string differences)
  12. rem
  13. cd all_kbds
  14. for %%e in (c h rc def) do for /D %%i in (*) do diff ..\all_kbds-\%%i\%%i.%%e ..\all_kbds\%%i\%%i.%%e
  15. cd ..