| 160 | |
| 161 | |
| 162 | typedef struct DIR |
| 163 | { |
| 164 | dirent curentry; /* Current directory entry */ |
| 165 | WIN32_FIND_DATAA find_data; /* Private file data */ |
| 166 | int cached; /* True if data is valid */ |
| 167 | HANDLE search_handle; /* Win32 search handle */ |
| 168 | char patt[MAX_PATH + 3]; /* Initial directory name */ |
| 169 | } DIR; |
| 170 | |
| 171 | |
| 172 | /* Forward declarations */ |
nothing calls this directly
no outgoing calls
no test coverage detected