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.
|
|
/*
* expandft.h - Routines for expanding folder twins to object twins * description. */
/* Types
********/
/* subtree enumeration callback function called by ExpandSubtree() */
typedef BOOL (*EXPANDSUBTREEPROC)(LPCTSTR, PCWIN32_FIND_DATA, PVOID);
/* Prototypes
*************/
/* expandft.c */
extern TWINRESULT ExpandSubtree(HPATH, EXPANDSUBTREEPROC, PVOID); extern TWINRESULT ExpandFolderTwinsIntersectingTwinList(HTWINLIST, CREATERECLISTPROC, LPARAM); extern BOOL NamesIntersect(LPCTSTR, LPCTSTR);
#ifdef DEBUG
extern BOOL IsValidTWINRESULT(TWINRESULT);
#endif
|