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.

60 lines
778 B

  1. /*++
  2. Copyright (c) 1991 Microsoft Corporation
  3. Module Name:
  4. uemul.h
  5. Abstract:
  6. Prototypes for Unix emulation routines used by libstcp and the tcpcmd
  7. utilities.
  8. Author:
  9. Mike Massa (mikemas) Sept 20, 1991
  10. Revision History:
  11. Who When What
  12. -------- -------- ----------------------------------------------
  13. mikemas 10-29-91 created
  14. sampa 11-16-91 added getopt
  15. Notes:
  16. Exports:
  17. getlogin
  18. getpass
  19. getopt
  20. --*/
  21. #define MAX_USERNAME_SIZE 256
  22. int
  23. getlogin(
  24. char *UserName,
  25. int len
  26. );
  27. char *
  28. getpass(
  29. char *prompt
  30. );
  31. char *
  32. getusername(
  33. char *prompt
  34. );
  35. int
  36. getopt(
  37. int,
  38. char **,
  39. char *);