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
bea617be
Commit
bea617be
authored
Aug 03, 2000
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moved GUID definitions to their respective dll.
parent
08aad6ac
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
39 additions
and
28 deletions
+39
-28
avifile.c
dlls/avifil32/avifile.c
+3
-1
main.c
dlls/ddraw/main.c
+4
-2
dinput_main.c
dlls/dinput/dinput_main.c
+4
-2
dplayx_main.c
dlls/dplayx/dplayx_main.c
+5
-1
dsound_main.c
dlls/dsound/dsound_main.c
+5
-3
oleobj.c
dlls/ole32/oleobj.c
+4
-2
oleaut.c
dlls/oleaut32/oleaut.c
+5
-3
shellguid.c
dlls/shell32/shellguid.c
+4
-14
shlwapi_main.c
dlls/shlwapi/shlwapi_main.c
+3
-0
guid.c
ole/guid.c
+2
-0
No files found.
dlls/avifil32/avifile.c
View file @
bea617be
...
...
@@ -6,12 +6,14 @@
#include <assert.h>
#include "winbase.h"
#include "vfw.h"
#include "wine/winestring.h"
#include "mmsystem.h"
#include "winerror.h"
#include "debugtools.h"
#include "initguid.h"
#include "vfw.h"
DEFAULT_DEBUG_CHANNEL
(
avifile
);
static
HRESULT
WINAPI
IAVIFile_fnQueryInterface
(
IAVIFile
*
iface
,
REFIID
refiid
,
LPVOID
*
obj
);
...
...
dlls/ddraw/main.c
View file @
bea617be
...
...
@@ -18,11 +18,13 @@
#include "dc.h"
#include "win.h"
#include "wine/exception.h"
#include "ddraw.h"
#include "d3d.h"
#include "debugtools.h"
#include "message.h"
#include "initguid.h"
#include "ddraw.h"
#include "d3d.h"
/* This for all the enumeration and creation of D3D-related objects */
#include "ddraw_private.h"
...
...
dlls/dinput/dinput_main.c
View file @
bea617be
...
...
@@ -38,9 +38,8 @@
# include <linux/joystick.h>
# define JOYDEV "/dev/js0"
#endif
#include "wine/obj_base.h"
#include "debugtools.h"
#include "dinput.h"
#include "input.h"
#include "user.h"
#include "message.h"
...
...
@@ -51,6 +50,9 @@
#include "wingdi.h"
#include "winuser.h"
#include "initguid.h"
#include "dinput.h"
DEFAULT_DEBUG_CHANNEL
(
dinput
);
/* Wine mouse driver object instances */
...
...
dlls/dplayx/dplayx_main.c
View file @
bea617be
...
...
@@ -8,9 +8,13 @@
#include "winbase.h"
#include "debugtools.h"
#include "initguid.h"
#include "dplay.h"
#include "dplobby.h"
#include "dplayx_global.h"
DEFAULT_DEBUG_CHANNEL
(
dplay
)
DEFAULT_DEBUG_CHANNEL
(
dplay
)
;
static
DWORD
DPLAYX_dwProcessesAttached
=
0
;
...
...
dlls/dsound/dsound_main.c
View file @
bea617be
...
...
@@ -34,17 +34,19 @@
#include <stdlib.h>
#include <string.h>
#include <math.h>
/* Insomnia - pow() function */
#include "dsound.h"
#include "dsdriver.h"
#include "windef.h"
#include "wingdi.h"
#include "winuser.h"
#include "winerror.h"
#include "mmsystem.h"
#include "wine/obj_base.h"
#include "thread.h"
#include "debugtools.h"
#include "initguid.h"
#include "dsound.h"
#include "dsdriver.h"
DEFAULT_DEBUG_CHANNEL
(
dsound
);
/* these are eligible for tuning... they must be high on slow machines... */
...
...
dlls/ole32/oleobj.c
View file @
bea617be
...
...
@@ -9,10 +9,12 @@
#include <string.h>
#include "winbase.h"
#include "winerror.h"
#include "oleidl.h"
#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL
(
ole
)
#include "initguid.h"
#include "oleidl.h"
DEFAULT_DEBUG_CHANNEL
(
ole
);
#define INITIAL_SINKS 10
...
...
dlls/oleaut32/oleaut.c
View file @
bea617be
...
...
@@ -8,13 +8,15 @@
#include "winuser.h"
#include "winerror.h"
#include "winversion.h"
#include "oleauto.h"
#include "wine/obj_base.h"
#include "wine/obj_moniker.h"
#include "heap.h"
#include "ldt.h"
#include "debugtools.h"
#include "initguid.h"
#include "oleauto.h"
#include "olectl.h"
DEFAULT_DEBUG_CHANNEL
(
ole
);
static
WCHAR
_delimiter
[
2
]
=
{
'!'
,
0
};
/* default delimiter apparently */
...
...
dlls/shell32/shellguid.c
View file @
bea617be
...
...
@@ -6,19 +6,9 @@
* this in in a single file due to interfering definitions
*
*/
#
define INITGUID
#
include "initguid.h"
#include "shlwapi.h"
/* #include "shlguid.h" */
/*
* Francis Beaudet <francis@macadamian.com>
*
* I moved the contents of this file to the ole/guid.c file.
*
* I know that the purpose of this file being here is that it would
* separate the definitions reserved to the shell DLL into one place. *
However, until the shell DLL is a real DLL, as long as it is *
statically linked with the rest of wine, the initializer of it's * GUIDs
will have to be in the same place as everybody else. This is * the same
problem as with "real" Windows programs. */
#include "shlguid.h"
#include "shlobj.h"
#include "docobj.h"
dlls/shlwapi/shlwapi_main.c
View file @
bea617be
...
...
@@ -9,6 +9,9 @@
#include "winerror.h"
#include "debugtools.h"
#include "initguid.h"
#include "wine/obj_storage.h"
DEFAULT_DEBUG_CHANNEL
(
shell
);
HINSTANCE
shlwapi_hInstance
=
0
;
...
...
ole/guid.c
View file @
bea617be
...
...
@@ -9,6 +9,7 @@
*/
#include "initguid.h"
#if 0
#include "shlguid.h"
#include "docobj.h"
#include "olectl.h"
...
...
@@ -25,6 +26,7 @@
#include "dplobby.h"
#include "vfw.h"
#include "shlobj.h"
#endif
/* and now for the one assumed GUID... */
DEFINE_GUID
(
GUID_NULL
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
);
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