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
7b33e2b9
Commit
7b33e2b9
authored
Jan 23, 1999
by
Juergen Schmied
Committed by
Alexandre Julliard
Jan 23, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moved the instance creation of GUID's to a new file.
Size of compobj.o goes down to 1/3; should prevent more sig11's.
parent
f072fc97
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
16 deletions
+21
-16
Makefile.in
ole/Makefile.in
+1
-0
compobj.c
ole/compobj.c
+1
-16
guid.c
ole/guid.c
+19
-0
No files found.
ole/Makefile.in
View file @
7b33e2b9
...
@@ -7,6 +7,7 @@ MODULE = ole
...
@@ -7,6 +7,7 @@ MODULE = ole
C_SRCS
=
\
C_SRCS
=
\
compobj.c
\
compobj.c
\
guid.c
\
ifs.c
\
ifs.c
\
moniker.c
\
moniker.c
\
ole2.c
\
ole2.c
\
...
...
ole/compobj.c
View file @
7b33e2b9
...
@@ -27,12 +27,12 @@
...
@@ -27,12 +27,12 @@
#ifdef HAVE_NETINET_IN_H
#ifdef HAVE_NETINET_IN_H
# include <netinet/in.h>
# include <netinet/in.h>
#endif
#endif
#include <ctype.h>
#include <stdlib.h>
#include <stdlib.h>
#include <string.h>
#include <string.h>
#include <time.h>
#include <time.h>
#include "windows.h"
#include "windows.h"
#include "winerror.h"
#include "winerror.h"
#include "ole.h"
#include "ole2.h"
#include "ole2.h"
#include "debug.h"
#include "debug.h"
#include "file.h"
#include "file.h"
...
@@ -40,21 +40,6 @@
...
@@ -40,21 +40,6 @@
#include "ldt.h"
#include "ldt.h"
#include "winreg.h"
#include "winreg.h"
#define INITGUID
/* FIXME: we include all the header files containing GUIDs
* so that the corresponding variables get defined. But they
* don't even all belong to the same DLL !!!
*/
#include "objbase.h"
#include "servprov.h"
#include "shlobj.h"
#include "ddraw.h"
#include "d3d.h"
#include "dinput.h"
#include "dsound.h"
#include "dplay.h"
#include "objbase.h"
#include "objbase.h"
LPMALLOC16
currentMalloc16
=
NULL
;
LPMALLOC16
currentMalloc16
=
NULL
;
...
...
ole/guid.c
0 → 100644
View file @
7b33e2b9
#ifndef __guid_h_
#define __guid_h_
#define INITGUID
/* FIXME: we include all the header files containing GUIDs
* so that the corresponding variables get defined. But they
* don't even all belong to the same DLL !!!
*/
#include "oleobj.h"
#include "objbase.h"
#include "servprov.h"
#include "ddraw.h"
#include "d3d.h"
#include "dinput.h"
#include "dsound.h"
#include "dplay.h"
#endif
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