Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
b4a4c05a
Commit
b4a4c05a
authored
Jan 04, 2003
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed a few more #ifdef __WINE__.
parent
1f722892
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
9 additions
and
35 deletions
+9
-35
imagelist.c
dlls/comctl32/imagelist.c
+2
-3
signal_i386.c
dlls/ntdll/signal_i386.c
+1
-0
signal_powerpc.c
dlls/ntdll/signal_powerpc.c
+1
-0
signal_sparc.c
dlls/ntdll/signal_sparc.c
+1
-0
commctrl.h
include/commctrl.h
+0
-3
d3d8types.h
include/d3d8types.h
+1
-7
eh.h
include/msvcrt/eh.h
+1
-1
stdio.h
include/msvcrt/stdio.h
+1
-5
stdlib.h
include/msvcrt/stdlib.h
+1
-10
winbase.h
include/winbase.h
+0
-2
exception.h
include/wine/exception.h
+0
-4
No files found.
dlls/comctl32/imagelist.c
View file @
b4a4c05a
...
...
@@ -253,9 +253,8 @@ ImageList_Add (HIMAGELIST himl, HBITMAP hbmImage, HBITMAP hbmMask)
* Success: index of the new image
* Failure: -1
*/
INT
WINAPI
ImageList_AddIcon
(
HIMAGELIST
himl
,
HICON
hIcon
)
#undef ImageList_AddIcon
INT
WINAPI
ImageList_AddIcon
(
HIMAGELIST
himl
,
HICON
hIcon
)
{
return
ImageList_ReplaceIcon
(
himl
,
-
1
,
hIcon
);
}
...
...
dlls/ntdll/signal_i386.c
View file @
b4a4c05a
...
...
@@ -424,6 +424,7 @@ static wine_signal_handler handlers[256];
static
sigset_t
all_sigs
;
extern
void
WINAPI
EXC_RtlRaiseException
(
PEXCEPTION_RECORD
,
PCONTEXT
);
/***********************************************************************
* dispatch_signal
...
...
dlls/ntdll/signal_powerpc.c
View file @
b4a4c05a
...
...
@@ -78,6 +78,7 @@ static wine_signal_handler handlers[256];
static
sigset_t
all_sigs
;
extern
void
WINAPI
EXC_RtlRaiseException
(
PEXCEPTION_RECORD
,
PCONTEXT
);
/***********************************************************************
* dispatch_signal
...
...
dlls/ntdll/signal_sparc.c
View file @
b4a4c05a
...
...
@@ -51,6 +51,7 @@ static wine_signal_handler handlers[256];
static
sigset_t
all_sigs
;
extern
void
WINAPI
EXC_RtlRaiseException
(
PEXCEPTION_RECORD
,
PCONTEXT
);
/***********************************************************************
* dispatch_signal
...
...
include/commctrl.h
View file @
b4a4c05a
...
...
@@ -554,7 +554,6 @@ typedef struct _IMAGELISTDRAWPARAMS
INT
WINAPI
ImageList_Add
(
HIMAGELIST
,
HBITMAP
,
HBITMAP
);
INT
WINAPI
ImageList_AddIcon
(
HIMAGELIST
,
HICON
);
INT
WINAPI
ImageList_AddMasked
(
HIMAGELIST
,
HBITMAP
,
COLORREF
);
BOOL
WINAPI
ImageList_BeginDrag
(
HIMAGELIST
,
INT
,
INT
,
INT
);
BOOL
WINAPI
ImageList_Copy
(
HIMAGELIST
,
INT
,
HIMAGELIST
,
INT
,
INT
);
...
...
@@ -599,9 +598,7 @@ BOOL WINAPI ImageList_SetOverlayImage(HIMAGELIST,INT,INT);
BOOL
WINAPI
ImageList_Write
(
HIMAGELIST
,
LPSTREAM
);
#endif
#ifndef __WINE__
#define ImageList_AddIcon(himl,hicon) ImageList_ReplaceIcon(himl,-1,hicon)
#endif
#define ImageList_ExtractIcon(hi,himl,i) ImageList_GetIcon(himl,i,0)
#define ImageList_LoadBitmap(hi,lpbmp,cx,cGrow,crMask) \
ImageList_LoadImage(hi,lpbmp,cx,cGrow,crMask,IMAGE_BITMAP,0)
...
...
include/d3d8types.h
View file @
b4a4c05a
...
...
@@ -988,13 +988,7 @@ typedef struct _D3DADAPTER_IDENTIFIER8 {
char
Driver
[
MAX_DEVICE_IDENTIFIER_STRING
];
char
Description
[
MAX_DEVICE_IDENTIFIER_STRING
];
#if defined(_WIN32) || defined(__WINE__)
LARGE_INTEGER
DriverVersion
;
/* Defined for 32-bit components */
#else
DWORD
DriverVersionLowPart
;
/* Defined for 16-bit driver components */
DWORD
DriverVersionHighPart
;
#endif
LARGE_INTEGER
DriverVersion
;
DWORD
VendorId
;
DWORD
DeviceId
;
DWORD
SubSysId
;
...
...
include/msvcrt/eh.h
View file @
b4a4c05a
...
...
@@ -21,7 +21,7 @@
#define __WINE_EH_H
#define __WINE_USE_MSVCRT
#if !defined(__cplusplus) && !defined(
__WINE__
)
#if !defined(__cplusplus) && !defined(
USE_MSVCRT_PREFIX
)
#error "eh.h is meant only for C++ applications"
#endif
...
...
include/msvcrt/stdio.h
View file @
b4a4c05a
...
...
@@ -140,11 +140,7 @@ MSVCRT(FILE)* MSVCRT(__p__iob)(void);
#define stdin (_iob+STDIN_FILENO)
#define stdout (_iob+STDOUT_FILENO)
#define stderr (_iob+STDERR_FILENO)
#elif !defined(__WINE__)
#define MSVCRT_stdin (_iob+STDIN_FILENO)
#define MSVCRT_stdout (_iob+STDOUT_FILENO)
#define MSVCRT_stderr (_iob+STDERR_FILENO)
#endif
/* USE_MSVCRT_PREFIX, __WINE__ */
#endif
/* USE_MSVCRT_PREFIX */
#ifndef MSVCRT_STDIO_DEFINED
#define MSVCRT_STDIO_DEFINED
...
...
include/msvcrt/stdlib.h
View file @
b4a4c05a
...
...
@@ -118,16 +118,7 @@ extern unsigned int* __p__fmode(void);
#define __mb_cur_max (*__p___mb_cur_max())
#define _doserrno (*__doserrno())
#define _fmode (*_fmode)
#elif !defined(__WINE__)
#define MSVCRT___argc (*__p___argc())
#define MSVCRT___argv (*__p___argv())
#define MSVCRT___wargv (*__p___wargv())
#define MSVCRT__environ (*__p__environ())
#define MSVCRT__wenviron (*__p__wenviron())
#define MSVCRT___mb_cur_max (*__p___mb_cur_max())
#define MSVCRT__doserrno (*__doserrno())
#define MSVCRT__fmode (*_fmode())
#endif
/* USE_MSVCRT_PREFIX, __WINE__ */
#endif
/* USE_MSVCRT_PREFIX */
extern
int
*
MSVCRT
(
_errno
)(
void
);
...
...
include/winbase.h
View file @
b4a4c05a
...
...
@@ -25,9 +25,7 @@
#include "basetsd.h"
#include "windef.h"
#ifndef __WINE__
#include "winerror.h"
#endif
#ifdef __cplusplus
extern
"C"
{
...
...
include/wine/exception.h
View file @
b4a4c05a
...
...
@@ -192,8 +192,4 @@ static inline EXCEPTION_FRAME * WINE_UNUSED __wine_pop_frame( EXCEPTION_FRAME *f
extern
void
__wine_enter_vm86
(
CONTEXT
*
context
);
#ifdef __WINE__
extern
void
WINAPI
EXC_RtlRaiseException
(
PEXCEPTION_RECORD
,
PCONTEXT
);
#endif
#endif
/* __WINE_WINE_EXCEPTION_H */
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