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.

51 lines
750 B

  1. /*++
  2. Copyright (c) 1991 Microsoft Corporation
  3. Module Name:
  4. zwapi.h
  5. Abstract:
  6. This is the main header file for the NT nt header file to
  7. zw header file converter.
  8. Author:
  9. Mark Lucovsky (markl) 28-Jan-1991
  10. Revision History:
  11. --*/
  12. #include <windows.h>
  13. #include <assert.h>
  14. #include <stdio.h>
  15. #include <string.h>
  16. #include <ctype.h>
  17. //
  18. // Global Data
  19. //
  20. int fUsage;
  21. char *OutputFileName;
  22. char *SourceFileName;
  23. char *SourceFilePattern;
  24. char **SourceFileList;
  25. int SourceFileCount;
  26. FILE *SourceFile, *OutputFile;
  27. #define STRING_BUFFER_SIZE 1024
  28. char StringBuffer[STRING_BUFFER_SIZE];
  29. int
  30. ProcessParameters(
  31. int argc,
  32. char *argv[]
  33. );
  34. void
  35. ProcessSourceFile( void );