Lines Matching defs:CplFileConf

94  * cpl_file_completions() knows when it is passed a valid CplFileConf
104 struct CplFileConf {
126 static void cpl_init_FileConf(CplFileConf *cfc);
133 struct CplFileConf {int dummy;};
713 * CplFileConf structure, whose members specify
730 CplFileConf *conf; /* The new-style configuration object. */
735 CplFileConf default_conf;
747 * The 'data' argument is either a CplFileConf pointer, identifiable
753 conf = (CplFileConf *) data;
800 * deprecated. The opaque CplFileConf object should be used in future
817 * Initialize a CplFileConf structure with default configuration
821 * cfc CplFileConf * The configuration object of the
824 static void cpl_init_FileConf(CplFileConf *cfc)
837 * Create a new CplFileConf object and initialize it with defaults.
840 * return CplFileConf * The new object, or NULL on error.
842 CplFileConf *new_CplFileConf(void)
848 CplFileConf *cfc; /* The object to be returned */
852 cfc = (CplFileConf *)malloc(sizeof(CplFileConf));
866 * Delete a CplFileConf object.
869 * cfc CplFileConf * The object to be deleted.
871 * return CplFileConf * The deleted object (always NULL).
873 CplFileConf *del_CplFileConf(CplFileConf *cfc)
893 * cfc CplFileConf * The cpl_file_completions() configuration object
899 void cfc_literal_escapes(CplFileConf *cfc, int literal)
915 * cfc CplFileConf * The cpl_file_completions() configuration object
920 void cfc_file_start(CplFileConf *cfc, int start_index)
935 * cfc CplFileConf * The cpl_file_completions() configuration object
943 void cfc_set_check_fn(CplFileConf *cfc, CplCheckFn *chk_fn, void *chk_data)