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
2eaefbd1
Commit
2eaefbd1
authored
Dec 08, 2003
by
Dimitrie O. Paun
Committed by
Alexandre Julliard
Dec 08, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move content of global.h into the appropriate private headers.
parent
ed37b7a8
Hide whitespace changes
Inline
Side-by-side
Showing
23 changed files
with
20 additions
and
56 deletions
+20
-56
atom.c
dlls/kernel/atom.c
+0
-1
console.c
dlls/kernel/console.c
+1
-0
dosmem.c
dlls/kernel/dosmem.c
+1
-1
file.c
dlls/kernel/file.c
+1
-0
global16.c
dlls/kernel/global16.c
+0
-1
kernel_main.c
dlls/kernel/kernel_main.c
+0
-1
kernel_private.h
dlls/kernel/kernel_private.h
+6
-0
local16.c
dlls/kernel/local16.c
+0
-1
ne_module.c
dlls/kernel/ne_module.c
+1
-1
ne_segment.c
dlls/kernel/ne_segment.c
+1
-1
snoop16.c
dlls/kernel/snoop16.c
+1
-1
sync.c
dlls/kernel/sync.c
+1
-0
task.c
dlls/kernel/task.c
+0
-1
vxd.c
dlls/kernel/vxd.c
+1
-0
ntdll_misc.h
dlls/ntdll/ntdll_misc.h
+5
-0
signal_i386.c
dlls/ntdll/signal_i386.c
+0
-1
signal_powerpc.c
dlls/ntdll/signal_powerpc.c
+0
-1
signal_sparc.c
dlls/ntdll/signal_sparc.c
+0
-1
virtual.c
dlls/ntdll/virtual.c
+0
-1
user_main.c
dlls/user/user_main.c
+0
-1
dib.c
dlls/x11drv/dib.c
+1
-1
global.h
include/global.h
+0
-40
metafile.c
objects/metafile.c
+0
-1
No files found.
dlls/kernel/atom.c
View file @
2eaefbd1
...
...
@@ -41,7 +41,6 @@
#include "wine/server.h"
#include "wine/unicode.h"
#include "wine/winbase16.h"
#include "global.h"
#include "kernel_private.h"
#include "stackframe.h"
...
...
dlls/kernel/console.c
View file @
2eaefbd1
...
...
@@ -44,6 +44,7 @@
#include "winnls.h"
#include "winerror.h"
#include "wincon.h"
#include "wine/winbase16.h"
#include "wine/server.h"
#include "wine/exception.h"
#include "wine/unicode.h"
...
...
dlls/kernel/dosmem.c
View file @
2eaefbd1
...
...
@@ -40,7 +40,7 @@
#include "winbase.h"
#include "wine/winbase16.h"
#include "
global
.h"
#include "
kernel_private
.h"
#include "miscemu.h"
#include "wine/debug.h"
...
...
dlls/kernel/file.c
View file @
2eaefbd1
...
...
@@ -37,6 +37,7 @@
#include "winreg.h"
#include "winternl.h"
#include "wincon.h"
#include "wine/winbase16.h"
#include "kernel_private.h"
#include "wine/unicode.h"
...
...
dlls/kernel/global16.c
View file @
2eaefbd1
...
...
@@ -39,7 +39,6 @@
#include "wine/winbase16.h"
#include "ntstatus.h"
#include "global.h"
#include "toolhelp.h"
#include "miscemu.h"
#include "stackframe.h"
...
...
dlls/kernel/kernel_main.c
View file @
2eaefbd1
...
...
@@ -37,7 +37,6 @@
#include "wine/winbase16.h"
#include "wine/library.h"
#include "file.h"
#include "global.h"
#include "miscemu.h"
#include "module.h"
#include "thread.h"
...
...
dlls/kernel/kernel_private.h
View file @
2eaefbd1
...
...
@@ -64,6 +64,12 @@ extern void SELECTOR_FreeBlock( WORD sel );
#define IS_SELECTOR_32BIT(sel) \
(wine_ldt_is_system(sel) || (wine_ldt_copy.flags[LOWORD(sel) >> 3] & WINE_LDT_FLAGS_32BIT))
extern
HGLOBAL16
GLOBAL_CreateBlock
(
UINT16
flags
,
const
void
*
ptr
,
DWORD
size
,
HGLOBAL16
hOwner
,
unsigned
char
selflags
);
extern
BOOL16
GLOBAL_FreeBlock
(
HGLOBAL16
handle
);
extern
BOOL16
GLOBAL_MoveBlock
(
HGLOBAL16
handle
,
const
void
*
ptr
,
DWORD
size
);
extern
HGLOBAL16
GLOBAL_Alloc
(
WORD
flags
,
DWORD
size
,
HGLOBAL16
hOwner
,
unsigned
char
selflags
);
/* this structure is always located at offset 0 of the DGROUP segment */
#include "pshpack1.h"
typedef
struct
...
...
dlls/kernel/local16.c
View file @
2eaefbd1
...
...
@@ -36,7 +36,6 @@
#include "wine/winbase16.h"
#include "wownt32.h"
#include "local.h"
#include "global.h"
#include "module.h"
#include "stackframe.h"
#include "toolhelp.h"
...
...
dlls/kernel/ne_module.c
View file @
2eaefbd1
...
...
@@ -41,11 +41,11 @@
#include "wine/library.h"
#include "module.h"
#include "toolhelp.h"
#include "global.h"
#include "file.h"
#include "builtin16.h"
#include "stackframe.h"
#include "excpt.h"
#include "kernel_private.h"
#include "wine/unicode.h"
#include "wine/exception.h"
#include "wine/debug.h"
...
...
dlls/kernel/ne_segment.c
View file @
2eaefbd1
...
...
@@ -36,7 +36,7 @@
#include "wine/winbase16.h"
#include "wownt32.h"
#include "wine/library.h"
#include "
global
.h"
#include "
kernel_private
.h"
#include "file.h"
#include "module.h"
#include "stackframe.h"
...
...
dlls/kernel/snoop16.c
View file @
2eaefbd1
...
...
@@ -30,7 +30,7 @@
#include "winnt.h"
#include "wine/winbase16.h"
#include "wine/library.h"
#include "
global
.h"
#include "
kernel_private
.h"
#include "module.h"
#include "stackframe.h"
#include "builtin16.h"
...
...
dlls/kernel/sync.c
View file @
2eaefbd1
...
...
@@ -43,6 +43,7 @@
#include "wine/server.h"
#include "wine/unicode.h"
#include "wine/winbase16.h"
#include "kernel_private.h"
#include "file.h"
...
...
dlls/kernel/task.c
View file @
2eaefbd1
...
...
@@ -39,7 +39,6 @@
#include "wine/winbase16.h"
#include "drive.h"
#include "file.h"
#include "global.h"
#include "module.h"
#include "winternl.h"
#include "wine/server.h"
...
...
dlls/kernel/vxd.c
View file @
2eaefbd1
...
...
@@ -39,6 +39,7 @@
#include "ntstatus.h"
#include "winnt.h"
#include "winternl.h"
#include "wine/winbase16.h"
#include "kernel_private.h"
#include "wine/debug.h"
...
...
dlls/ntdll/ntdll_misc.h
View file @
2eaefbd1
...
...
@@ -95,4 +95,9 @@ extern NTSTATUS CDROM_DeviceIoControl(DWORD clientID, HANDLE hDevice,
LPVOID
lpInBuffer
,
DWORD
nInBufferSize
,
LPVOID
lpOutBuffer
,
DWORD
nOutBufferSize
);
/* memory/virtual.c */
typedef
BOOL
(
*
HANDLERPROC
)(
LPVOID
,
LPCVOID
);
extern
BOOL
VIRTUAL_SetFaultHandler
(
LPCVOID
addr
,
HANDLERPROC
proc
,
LPVOID
arg
);
extern
DWORD
VIRTUAL_HandleFault
(
LPCVOID
addr
);
#endif
dlls/ntdll/signal_i386.c
View file @
2eaefbd1
...
...
@@ -405,7 +405,6 @@ typedef struct
#define T_UNKNOWN (-1)
/* Unknown fault (TRAP_sig not defined) */
#include "wine/exception.h"
#include "global.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
seh
);
...
...
dlls/ntdll/signal_powerpc.c
View file @
2eaefbd1
...
...
@@ -56,7 +56,6 @@
#include "winternl.h"
#include "wine/library.h"
#include "wine/exception.h"
#include "global.h"
#include "ntdll_misc.h"
#include "wine/debug.h"
...
...
dlls/ntdll/signal_sparc.c
View file @
2eaefbd1
...
...
@@ -38,7 +38,6 @@
#include "winnt.h"
#include "wine/exception.h"
#include "global.h"
#include "ntdll_misc.h"
#include "wine/debug.h"
...
...
dlls/ntdll/virtual.c
View file @
2eaefbd1
...
...
@@ -43,7 +43,6 @@
#include "ntstatus.h"
#include "thread.h"
#include "winternl.h"
#include "global.h"
#include "wine/library.h"
#include "wine/server.h"
#include "wine/debug.h"
...
...
dlls/user/user_main.c
View file @
2eaefbd1
...
...
@@ -30,7 +30,6 @@
#include "controls.h"
#include "cursoricon.h"
#include "global.h"
#include "message.h"
#include "user.h"
#include "win.h"
...
...
dlls/x11drv/dib.c
View file @
2eaefbd1
...
...
@@ -41,7 +41,6 @@
#include "wine/debug.h"
#include "gdi.h"
#include "palette.h"
#include "global.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
bitmap
);
WINE_DECLARE_DEBUG_CHANNEL
(
x11drv
);
...
...
@@ -4611,6 +4610,7 @@ HBITMAP X11DRV_DIB_CreateDIBSection(
}
else
if
(
bm
.
bmBits
)
{
extern
BOOL
VIRTUAL_SetFaultHandler
(
LPCVOID
addr
,
BOOL
(
*
proc
)(
LPVOID
,
LPCVOID
),
LPVOID
arg
);
/* Install fault handler, if possible */
InitializeCriticalSection
(
&
(
dib
->
lock
));
if
(
VIRTUAL_SetFaultHandler
(
bm
.
bmBits
,
X11DRV_DIB_FaultHandler
,
(
LPVOID
)
res
))
...
...
include/global.h
deleted
100644 → 0
View file @
ed37b7a8
/*
* Global heap declarations
*
* Copyright 1995 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef __WINE_GLOBAL_H
#define __WINE_GLOBAL_H
#include <windef.h>
#include <wine/windef16.h>
#include <wine/library.h>
/* memory/global.c */
extern
HGLOBAL16
GLOBAL_CreateBlock
(
UINT16
flags
,
const
void
*
ptr
,
DWORD
size
,
HGLOBAL16
hOwner
,
unsigned
char
selflags
);
extern
BOOL16
GLOBAL_FreeBlock
(
HGLOBAL16
handle
);
extern
BOOL16
GLOBAL_MoveBlock
(
HGLOBAL16
handle
,
const
void
*
ptr
,
DWORD
size
);
extern
HGLOBAL16
GLOBAL_Alloc
(
WORD
flags
,
DWORD
size
,
HGLOBAL16
hOwner
,
unsigned
char
selflags
);
/* memory/virtual.c */
typedef
BOOL
(
*
HANDLERPROC
)(
LPVOID
,
LPCVOID
);
extern
BOOL
VIRTUAL_SetFaultHandler
(
LPCVOID
addr
,
HANDLERPROC
proc
,
LPVOID
arg
);
extern
DWORD
VIRTUAL_HandleFault
(
LPCVOID
addr
);
#endif
/* __WINE_GLOBAL_H */
objects/metafile.c
View file @
2eaefbd1
...
...
@@ -51,7 +51,6 @@
#include "wine/winbase16.h"
#include "wine/wingdi16.h"
#include "bitmap.h"
#include "global.h"
#include "wownt32.h"
#include "wine/debug.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