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.

49 lines
634 B

  1. /*++
  2. Copyright (c) 1995 Microsoft Corporation
  3. Module Name:
  4. dirlist.h
  5. Abstract:
  6. Prototypes, etc. for dirlist.c
  7. Author:
  8. Richard L Firth (rfirth) 31-Jul-1995
  9. Revision History:
  10. 31-Jul-1995 rfirth
  11. Created
  12. --*/
  13. #if defined(__cplusplus)
  14. extern "C" {
  15. #endif
  16. DWORD
  17. ParseDirList(
  18. IN LPSTR lpBuffer,
  19. IN DWORD lpBufferLength,
  20. IN LPSTR lpszFilespec OPTIONAL,
  21. IN OUT PLIST_ENTRY lpList
  22. );
  23. BOOL
  24. IsFilespecWild(
  25. IN LPCSTR lpszFilespec
  26. );
  27. PRIVATE
  28. VOID
  29. ClearFindList(
  30. IN PLIST_ENTRY lpList
  31. );
  32. #if defined(__cplusplus)
  33. }
  34. #endif