mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 04:39:45 +00:00
libwine: Export wine_get_build_dir.
This commit is contained in:
parent
bf566139d7
commit
5ff1004c4d
@ -29,6 +29,7 @@
|
||||
|
||||
/* configuration */
|
||||
|
||||
extern const char *wine_get_build_dir(void);
|
||||
extern const char *wine_get_config_dir(void);
|
||||
extern const char *wine_get_data_dir(void);
|
||||
extern const char *wine_get_server_dir(void);
|
||||
|
@ -356,6 +356,12 @@ const char *wine_get_data_dir(void)
|
||||
return datadir;
|
||||
}
|
||||
|
||||
/* retrieve the wine build dir (if we are running from there) */
|
||||
const char *wine_get_build_dir(void)
|
||||
{
|
||||
return build_dir;
|
||||
}
|
||||
|
||||
/* return the full name of the server directory (the one containing the socket) */
|
||||
const char *wine_get_server_dir(void)
|
||||
{
|
||||
|
@ -25,6 +25,7 @@ EXPORTS
|
||||
wine_dlopen
|
||||
wine_dlsym
|
||||
wine_exec_wine_binary
|
||||
wine_get_build_dir
|
||||
wine_get_config_dir
|
||||
wine_get_cs
|
||||
wine_get_data_dir
|
||||
|
@ -25,6 +25,7 @@ WINE_1.0
|
||||
wine_dlopen;
|
||||
wine_dlsym;
|
||||
wine_exec_wine_binary;
|
||||
wine_get_build_dir;
|
||||
wine_get_config_dir;
|
||||
wine_get_cs;
|
||||
wine_get_data_dir;
|
||||
|
Loading…
Reference in New Issue
Block a user