mirror of
https://github.com/reactos/wine.git
synced 2024-12-02 16:57:26 +00:00
15 lines
257 B
C
15 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
|