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.

39 lines
487 B

  1. /*++
  2. Copyright (c) 1993 Microsoft Corporation
  3. Module Name:
  4. args.c
  5. Abstract:
  6. Header file for routines to process unicode command line arguments
  7. into argc and argv.
  8. Author:
  9. Ted Miller (tedm) 16-June-1993
  10. Revision History:
  11. --*/
  12. //
  13. // Function protypes.
  14. //
  15. BOOL
  16. InitializeUnicodeArguments(
  17. OUT int *argcW,
  18. OUT PWCHAR **argvW
  19. );
  20. VOID
  21. FreeUnicodeArguments(
  22. IN int argcW,
  23. IN PWCHAR *argvW
  24. );