source: trunk/tools/wrc/genres.h@ 10367

Last change on this file since 10367 was 882, checked in by sandervl, 26 years ago

Created Wine port of wrc (using EMX/GCC)

File size: 557 bytes
Line 
1/*
2 * Generate resource prototypes
3 *
4 * Copyright 1998 Bertho A. Stultiens (BS)
5 *
6 */
7
8#ifndef __WRC_GENRES_H
9#define __WRC_GENRES_H
10
11#ifndef __WRC_WRCTYPES_H
12#include "wrctypes.h"
13#endif
14
15res_t *new_res(void);
16res_t *grow_res(res_t *r, int add);
17void put_byte(res_t *res, unsigned c);
18void put_word(res_t *res, unsigned w);
19void put_dword(res_t *res, unsigned d);
20void resources2res(resource_t *top);
21char *get_c_typename(enum res_e type);
22char *make_c_name(char *base, name_id_t *nid, language_t *lan);
23char *prep_nid_for_label(name_id_t *nid);
24
25#endif
Note: See TracBrowser for help on using the repository browser.