C
typedef enum { LOOK_FOR_EMPTY_ENTRY = 0, LOOK_FOR_MATCHING_ENTRY } SEARCH_TYPE;
Description
The values in the SEARCH_TYPE enumeration are used internally by the library to indicate how the FILEfind function how to perform a search. The 'LOOK_FOR_EMPTY_ENTRY' value indicates that FILEfind should search for an empty file entry. The 'LOOK_FOR_MATCHING_ENTRY' value indicates that FILEfind should search for an entry that matches the FSFILE object that was passed into the FILEfind function.