Use __WINE__ instead of _WINE_, _WIN32.

This commit is contained in:
Richard Cohen 2003-08-13 19:38:22 +00:00 committed by Alexandre Julliard
parent c17ad75ae6
commit ca1fe9ec1d
3 changed files with 12 additions and 9 deletions

View File

@ -14,6 +14,7 @@ C_SRCS = \
winefile.c
RC_SRCS = rsrc.rc
EXTRARCFLAGS = -D__WINE__
@MAKE_PROG_RULES@

View File

@ -29,7 +29,7 @@ IDA_WINEFILE ACCELERATORS DISCARDABLE
}
IDI_WINEFILE ICON DISCARDABLE
#ifdef _WIN32
#ifndef __WINE__
"winefile.ico"
#else
{
@ -85,7 +85,7 @@ IDI_WINEFILE ICON DISCARDABLE
#endif
IDB_TOOLBAR BITMAP DISCARDABLE
#ifdef _WIN32
#ifndef __WINE__
"toolbar.bmp"
#else
{
@ -153,7 +153,7 @@ IDB_TOOLBAR BITMAP DISCARDABLE
#endif
IDB_DRIVEBAR BITMAP DISCARDABLE
#ifdef _WIN32
#ifndef __WINE__
"drivebar.bmp"
#else
{
@ -208,7 +208,7 @@ IDB_DRIVEBAR BITMAP DISCARDABLE
#endif
IDB_IMAGES BITMAP DISCARDABLE
#ifdef _WIN32
#ifndef __WINE__
"images.bmp"
#else
{

View File

@ -18,7 +18,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef _WIN32
#ifdef __WINE__
#include "config.h"
#include "wine/port.h"
#endif
@ -30,10 +30,12 @@
#include "resource.h"
/* for read_directory_unix() */
#if !defined(_NO_EXTENSIONS) && !defined(_WIN32)
#if !defined(_NO_EXTENSIONS) && defined(__WINE__)
#include <dirent.h>
#include <sys/stat.h>
#include <unistd.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#include <time.h>
#endif
@ -1822,7 +1824,7 @@ LRESULT CALLBACK FrameWndProc(HWND hwnd, UINT nmsg, WPARAM wparam, LPARAM lparam
/*TODO: There are even more menu items! */
#ifndef _NO_EXTENSIONS
#ifdef _WINE_
#ifdef __WINE__
case ID_LICENSE:
WineLicense(Globals.hMainWnd);
break;
@ -3643,7 +3645,7 @@ void show_frame(HWND hwndParent, int cmdshow)
ShowWindow(Globals.hMainWnd, cmdshow);
#if defined(_SHELL_FOLDERS) && !defined(_WINE_)
#if defined(_SHELL_FOLDERS) && !defined(__WINE__)
/* Shell Namespace as default: */
child = alloc_child_window(path, get_path_pidl(path,Globals.hMainWnd), Globals.hMainWnd);
#else