Home | History | Annotate | Download | only in examples

Lines Matching defs:file

2  * \file detect.c
202 // Try to get Media player device info XML file...
205 LIBMTP_file_t *file, *tmp;
206 file = files;
207 while (file != NULL) {
208 if (!strcmp(file->filename, "WMPInfo.xml") ||
209 !strcmp(file->filename, "WMPinfo.xml") ||
210 !strcmp(file->filename, "default-capabilities.xml")) {
211 if (file->item_id != 0) {
212 /* Dump this file */
213 FILE *xmltmp = tmpfile();
218 file->item_id,
239 fprintf(stdout, "\n%s file contents:\n", file->filename);
242 perror("Unable to read file");
255 tmp = file;
256 file = file->next;