mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
14 lines
257 B
C
14 lines
257 B
C
/*
|
|
* Wine Message Compiler outpur generation
|
|
*
|
|
* Copyright 2000 Bertho A. Stultiens (BS)
|
|
*
|
|
*/
|
|
#ifndef __WMC_WRITE_H
|
|
#define __WMC_WRITE_H
|
|
|
|
void write_h_file(const char *fname);
|
|
void write_rc_file(const char *fname);
|
|
void write_bin_files(void);
|
|
|
|
#endif
|