mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 13:26:17 +00:00
Add wine_get_data_dir()/wine_get_build_dir() functions
Add missing header in uuid library svn path=/trunk/; revision=32911
This commit is contained in:
parent
9966008a7e
commit
47399d8373
4 changed files with 37 additions and 0 deletions
|
@ -29,7 +29,9 @@
|
|||
|
||||
/* 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);
|
||||
extern const char *wine_get_user_name(void);
|
||||
extern void wine_init_argv0_path( const char *argv0 );
|
||||
|
|
33
reactos/lib/3rdparty/libwine/config.c
vendored
Normal file
33
reactos/lib/3rdparty/libwine/config.c
vendored
Normal file
|
@ -0,0 +1,33 @@
|
|||
/*
|
||||
* Configuration parameters shared between Wine server and clients
|
||||
*
|
||||
* Copyright 2002 Alexandre Julliard
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
|
||||
#include "wine/library.h"
|
||||
|
||||
/* retrieve the wine data dir */
|
||||
const char *wine_get_data_dir(void)
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/* retrieve the wine build dir (if we are running from there) */
|
||||
const char *wine_get_build_dir(void)
|
||||
{
|
||||
return NULL;
|
||||
}
|
1
reactos/lib/3rdparty/libwine/libwine.rbuild
vendored
1
reactos/lib/3rdparty/libwine/libwine.rbuild
vendored
|
@ -2,6 +2,7 @@
|
|||
<!DOCTYPE module SYSTEM "../../../tools/rbuild/project.dtd">
|
||||
<module name="wine" type="staticlibrary">
|
||||
<define name="_DISABLE_TIDENTS" />
|
||||
<file>config.c</file>
|
||||
<file>debug.c</file>
|
||||
<file>string.c</file>
|
||||
</module>
|
||||
|
|
|
@ -69,6 +69,7 @@ DEFINE_GUID(GUID_NULL,0,0,0,0,0,0,0,0,0,0,0);
|
|||
#include "urlhist.h"
|
||||
#include "hlguids.h"
|
||||
#include "isguids.h"
|
||||
#include "objsafe.h"
|
||||
|
||||
/* FIXME: cguids declares GUIDs but does not define their values */
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue