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.

21 lines
264 B

  1. /*
  2. *
  3. * miscdbg.h
  4. *
  5. * Miscellaneous helper routines.
  6. *
  7. */
  8. #ifndef __MISCDBG_H__
  9. #define __MISCDBG_H__
  10. #define MAXARGS 8
  11. BOOL
  12. ParseArgString(
  13. IN char * pszArgString,
  14. OUT DWORD * pArgc,
  15. OUT char * Argv[MAXARGS]
  16. );
  17. #endif