Release 980628
[wine/multimedia.git] / tools / wrc / genres.h
blob0f4d9d2c4d962cfff99c2a152d046f63152d57ba
1 /*
2 * Generate resource prototypes
4 * Copyright 1998 Bertho A. Stultiens (BS)
6 */
8 #ifndef __WRC_GENRES_H
9 #define __WRC_GENRES_H
11 #ifndef __WRC_WRCTYPES_H
12 #include "wrctypes.h"
13 #endif
15 res_t *new_res(void);
16 res_t *grow_res(res_t *r, int add);
17 void put_byte(res_t *res, unsigned c);
18 void put_word(res_t *res, unsigned w);
19 void put_dword(res_t *res, unsigned d);
20 void resources2res(resource_t *top);
21 char *get_c_typename(enum res_e type);
22 char *make_c_name(char *base, name_id_t *nid, language_t *lan);
23 char *prep_nid_for_label(name_id_t *nid);
25 #endif