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 |
|
---|
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);
|
---|
24 |
|
---|
25 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.