Lines Matching full:resources

1 /* windres.c -- a program to manipulate Windows resources
23 /* This program can read and write Windows resources in various
148 of resources. */
301 /* Define a resource. The arguments are the resource tree, RESOURCES,
310 define_resource (struct res_directory **resources, int cids, in define_resource() argument
321 if (*resources == NULL) in define_resource()
330 *resources = ((struct res_directory *) in define_resource()
331 res_alloc (sizeof **resources)); in define_resource()
332 (*resources)->characteristics = 0; in define_resource()
333 (*resources)->time = timeval; in define_resource()
334 (*resources)->major = 0; in define_resource()
335 (*resources)->minor = 0; in define_resource()
336 (*resources)->entries = NULL; in define_resource()
339 for (pp = &(*resources)->entries; *pp != NULL; pp = &(*pp)->next) in define_resource()
374 resources = &re->u.dir; in define_resource()
408 define_standard_resource (struct res_directory **resources, int type, in define_standard_resource() argument
418 return define_resource (resources, 3, a, dupok); in define_standard_resource()
433 /* Sort the resources. */
756 struct res_directory *resources; in main() local
972 resources = read_rc_file (input_filename, preprocessor, preprocargs, in main()
976 resources = read_res_file (input_filename); in main()
979 resources = read_coff_rsrc (input_filename, target); in main()
983 if (resources == NULL) in main()
984 fatal (_("no resources")); in main()
986 /* Sort the resources. This is required for COFF, convenient for in main()
988 resources = sort_resources (resources); in main()
998 write_rc_file (output_filename, resources); in main()
1001 write_res_file (output_filename, resources); in main()
1004 write_coff_file (output_filename, target, resources); in main()