mirror of
https://github.com/reactos/wine.git
synced 2024-11-26 13:10:28 +00:00
c192ba2468
in separate address spaces. Run 16-bit tasks as Win32 threads, not processes.
20 lines
497 B
C
20 lines
497 B
C
/*
|
|
* Wine initialization definitions
|
|
*/
|
|
|
|
#ifndef __WINE_MAIN_H
|
|
#define __WINE_MAIN_H
|
|
|
|
#include "windef.h"
|
|
|
|
extern BOOL MAIN_MainInit( char *argv[] );
|
|
extern void MAIN_WineInit(void);
|
|
extern int MAIN_GetLanguageID(char*lang, char*country, char*charset, char*dialect);
|
|
extern void MAIN_ParseDebugOptions(const char *options);
|
|
extern void MAIN_ParseLanguageOption( const char *arg );
|
|
|
|
extern BOOL RELAY_Init(void);
|
|
extern int RELAY_ShowDebugmsgRelay(const char *func);
|
|
|
|
#endif /* __WINE_MAIN_H */
|