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.

35 lines
1.3 KiB

  1. // fnreg.h
  2. //
  3. // filename regular expression routine for WIN32
  4. //
  5. // Copyright (C) 1994-1998 by Hirofumi Yamamoto. All rights reserved.
  6. //
  7. // Redistribution and use in source and binary forms are permitted
  8. // provided that
  9. // the above copyright notice and this paragraph are duplicated in all such
  10. // forms and that any documentation, advertising materials, and other
  11. // materials related to such distribution and use acknowledge that the
  12. // software was developed by Hirofumi Yamamoto may not be used to endorse or
  13. // promote products derived from this software without specific prior written
  14. // permission. THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
  15. // IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES
  16. // OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  17. //
  18. //////////////////////////////////////////////////////////////////////////
  19. // BOOL fnexpand(int* argc, TCHAR*** argv);
  20. //
  21. // fnexpand takes &argc and &argv to expand wild cards in the arguments.
  22. //
  23. // Currently characters should be UNICODE. In other words,
  24. // main routine should be wmain. See cat.cpp's main routine for the
  25. // detail.
  26. //////////////////////////////////////////////////////////////////////////
  27. #ifdef __cplusplus
  28. extern "C"
  29. #endif
  30. BOOL fnexpand(int* argc, TCHAR*** argv);