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
39 lines
487 B
/*++
|
|
|
|
Copyright (c) 1993 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
args.c
|
|
|
|
Abstract:
|
|
|
|
Header file for routines to process unicode command line arguments
|
|
into argc and argv.
|
|
|
|
Author:
|
|
|
|
Ted Miller (tedm) 16-June-1993
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
|
|
|
|
//
|
|
// Function protypes.
|
|
//
|
|
|
|
BOOL
|
|
InitializeUnicodeArguments(
|
|
OUT int *argcW,
|
|
OUT PWCHAR **argvW
|
|
);
|
|
|
|
|
|
VOID
|
|
FreeUnicodeArguments(
|
|
IN int argcW,
|
|
IN PWCHAR *argvW
|
|
);
|