sync winefile's header between WINE and ReactOS

svn path=/trunk/; revision=15792
This commit is contained in:
Martin Fuchs 2005-06-04 20:37:15 +00:00
parent 4b55dd45ab
commit 9dafeab3da
2 changed files with 9 additions and 3 deletions

View file

@ -18,6 +18,11 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifdef __WINE__
#include "config.h"
#include "wine/port.h"
#endif
#include "winefile.h"
#include "resource.h"

View file

@ -1,5 +1,5 @@
/*
* Copyright 2000, 2003, 2004 Martin Fuchs
* Copyright 2000, 2003, 2004, 2005 Martin Fuchs
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
@ -35,7 +35,7 @@
#include <commdlg.h>
#ifdef UNICODE
#define _UNICODE
#define _UNICODE
#include <wchar.h>
#endif
#include <tchar.h>
@ -44,7 +44,6 @@
#include <stdio.h>
#include <ctype.h>
#include <locale.h>
#include <time.h>
#ifndef __WINE__
#include <malloc.h> /* for alloca() */
@ -143,6 +142,8 @@ typedef struct
#endif
} WINEFILE_GLOBALS;
extern WINEFILE_GLOBALS Globals;
#ifdef __WINE__
#ifdef UNICODE
extern void _wsplitpath(const WCHAR* path, WCHAR* drv, WCHAR* dir, WCHAR* name, WCHAR* ext);