Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
5ff1004c
Commit
5ff1004c
authored
Mar 16, 2006
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libwine: Export wine_get_build_dir.
parent
bf566139
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
0 deletions
+9
-0
library.h
include/wine/library.h
+1
-0
config.c
libs/wine/config.c
+6
-0
wine.def
libs/wine/wine.def
+1
-0
wine.map
libs/wine/wine.map
+1
-0
No files found.
include/wine/library.h
View file @
5ff1004c
...
...
@@ -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
);
...
...
libs/wine/config.c
View file @
5ff1004c
...
...
@@ -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
)
{
...
...
libs/wine/wine.def
View file @
5ff1004c
...
...
@@ -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
...
...
libs/wine/wine.map
View file @
5ff1004c
...
...
@@ -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;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment