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.

27 lines
882 B

  1. /***
  2. *noarg.c - stub out CRT's processing of command line arguments
  3. *
  4. * Copyright (c) 1997-2001, Microsoft Corporation. All rights reserved.
  5. *
  6. *Purpose:
  7. * Stub out the processing of the command line into argv[], normally
  8. * carried out at during startup. Note, the argc and argv arguments to
  9. * main are not meaningful if this object is used. Nor are __argc and
  10. * __argv.
  11. *
  12. *Revision History:
  13. * 05-05-97 GJF Created.
  14. * 06-30-97 GJF Added stubs for _[w]wincmdln().
  15. * 03-27-01 PML _[w]setargv now returns an int (vs7#231220)
  16. *
  17. *******************************************************************************/
  18. #include <tchar.h>
  19. int __cdecl _setargv() { return 0; }
  20. int __cdecl _wsetargv() { return 0; }
  21. _TUCHAR * __cdecl _wincmdln() { return NULL; }
  22. _TUCHAR * __cdecl _wwincmdln() { return NULL; }