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.

29 lines
622 B

  1. /*
  2. * expandft.h - Routines for expanding folder twins to object twins
  3. * description.
  4. */
  5. /* Types
  6. ********/
  7. /* subtree enumeration callback function called by ExpandSubtree() */
  8. typedef BOOL (*EXPANDSUBTREEPROC)(LPCTSTR, PCWIN32_FIND_DATA, PVOID);
  9. /* Prototypes
  10. *************/
  11. /* expandft.c */
  12. extern TWINRESULT ExpandSubtree(HPATH, EXPANDSUBTREEPROC, PVOID);
  13. extern TWINRESULT ExpandFolderTwinsIntersectingTwinList(HTWINLIST, CREATERECLISTPROC, LPARAM);
  14. extern BOOL NamesIntersect(LPCTSTR, LPCTSTR);
  15. #ifdef DEBUG
  16. extern BOOL IsValidTWINRESULT(TWINRESULT);
  17. #endif