Source code of Windows XP (NT5)
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.
 
 
 
 
 
 

60 lines
718 B

/*++
Copyright (c) 1991 Microsoft Corporation
Module Name:
uemul.h
Abstract:
Prototypes for Unix emulation routines used by libstcp and the tcpcmd
utilities.
Author:
Mike Massa (mikemas) Sept 20, 1991
Revision History:
Who When What
-------- -------- ----------------------------------------------
mikemas 10-29-91 created
sampa 11-16-91 added getopt
Notes:
Exports:
getlogin
getpass
getopt
--*/
#define MAX_USERNAME_SIZE 256
int
getlogin(
char *UserName,
int len
);
char *
getpass(
char *prompt
);
char *
getusername(
char *prompt
);
int
getopt(
int,
char **,
char *);