Move function prototypes to header.

This commit is contained in:
Mike McCormack 2005-06-22 11:59:18 +00:00 committed by Alexandre Julliard
parent ddb002437b
commit a6dd1258b9
3 changed files with 4 additions and 6 deletions

View File

@ -20,6 +20,7 @@
#include <stdlib.h>
#include "dumpres.h"
#include "wrc.h"
#define MASTER_LANGUAGE LANG_ENGLISH
#define NB_LANG 0x94

View File

@ -107,12 +107,6 @@ static const char version_string[] = "Wine Resource Compiler Version " WRC_FULLV
"Copyright 1998-2000 Bertho A. Stultiens\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).
*/

View File

@ -66,4 +66,7 @@ extern int char_number;
extern resource_t *resource_top;
extern language_t *currentlanguage;
void verify_translations(resource_t *top);
void write_resfile(char *outname, resource_t *top);
#endif