HANDLE FindFirstFile(    LPCTSTR lpFileName, // pointer to name of file to search for  
    LPWIN32_FIND_DATA lpFindFileData  // pointer to returned information 
   );BOOL FindNextFile(    HANDLE hFindFile, // handle to search  
    LPWIN32_FIND_DATA lpFindFileData  // pointer to structure for data on found file  
   );BOOL FindClose(    HANDLE hFindFile  // file search handle 
   );