Move function prototypes to header.
This commit is contained in:
parent
ddb002437b
commit
a6dd1258b9
|
@ -20,6 +20,7 @@
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
#include "dumpres.h"
|
#include "dumpres.h"
|
||||||
|
#include "wrc.h"
|
||||||
|
|
||||||
#define MASTER_LANGUAGE LANG_ENGLISH
|
#define MASTER_LANGUAGE LANG_ENGLISH
|
||||||
#define NB_LANG 0x94
|
#define NB_LANG 0x94
|
||||||
|
|
|
@ -107,12 +107,6 @@ static const char version_string[] = "Wine Resource Compiler Version " WRC_FULLV
|
||||||
"Copyright 1998-2000 Bertho A. Stultiens\n"
|
"Copyright 1998-2000 Bertho A. Stultiens\n"
|
||||||
" 1994 Martin von Loewis\n";
|
" 1994 Martin von Loewis\n";
|
||||||
|
|
||||||
/*
|
|
||||||
* External functions
|
|
||||||
*/
|
|
||||||
void write_resfile(char *outname, resource_t *top);
|
|
||||||
void verify_translations(resource_t *top);
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Set if compiling in 32bit mode (default).
|
* Set if compiling in 32bit mode (default).
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -66,4 +66,7 @@ extern int char_number;
|
||||||
extern resource_t *resource_top;
|
extern resource_t *resource_top;
|
||||||
extern language_t *currentlanguage;
|
extern language_t *currentlanguage;
|
||||||
|
|
||||||
|
void verify_translations(resource_t *top);
|
||||||
|
void write_resfile(char *outname, resource_t *top);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue