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
ba25254d
Commit
ba25254d
authored
Jan 09, 2007
by
Rob Shearman
Committed by
Alexandre Julliard
Jan 10, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32: Remove some unneeded inclusions of headers.
Change some incorrect usages of SEEK_SET to the intended STREAM_SEEK_SET instead.
parent
d02b27c0
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
4 additions
and
25 deletions
+4
-25
compobj.c
dlls/ole32/compobj.c
+1
-2
git.c
dlls/ole32/git.c
+1
-9
marshal.c
dlls/ole32/marshal.c
+1
-8
rpc.c
dlls/ole32/rpc.c
+0
-4
stubmanager.c
dlls/ole32/stubmanager.c
+1
-2
No files found.
dlls/ole32/compobj.c
View file @
ba25254d
...
...
@@ -41,7 +41,6 @@
#include "config.h"
#include <stdlib.h>
#include <stdarg.h>
#include <stdio.h>
#include <string.h>
...
...
@@ -1677,7 +1676,7 @@ HRESULT WINAPI CoRevokeClassObject(
LARGE_INTEGER
zero
;
memset
(
&
zero
,
0
,
sizeof
(
zero
));
/* FIXME: stop local server thread */
IStream_Seek
(
curClass
->
pMarshaledData
,
zero
,
SEEK_SET
,
NULL
);
IStream_Seek
(
curClass
->
pMarshaledData
,
zero
,
S
TREAM_S
EEK_SET
,
NULL
);
CoReleaseMarshalData
(
curClass
->
pMarshaledData
);
}
...
...
dlls/ole32/git.c
View file @
ba25254d
...
...
@@ -24,13 +24,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include <assert.h>
#include <stdlib.h>
#include <stdarg.h>
#include <stdio.h>
#include <string.h>
#define COBJMACROS
#define NONAMELESSUNION
...
...
@@ -42,8 +36,6 @@
#include "objbase.h"
#include "ole2.h"
#include "winerror.h"
#include "winreg.h"
#include "winternl.h"
#include "compobj_private.h"
...
...
@@ -208,7 +200,7 @@ StdGlobalInterfaceTable_RegisterInterfaceInGlobal(
}
zero
.
QuadPart
=
0
;
IStream_Seek
(
stream
,
zero
,
SEEK_SET
,
NULL
);
IStream_Seek
(
stream
,
zero
,
S
TREAM_S
EEK_SET
,
NULL
);
entry
=
HeapAlloc
(
GetProcessHeap
(),
0
,
sizeof
(
StdGITEntry
));
if
(
entry
==
NULL
)
return
E_OUTOFMEMORY
;
...
...
dlls/ole32/marshal.c
View file @
ba25254d
...
...
@@ -20,11 +20,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include <stdlib.h>
#include <stdarg.h>
#include <stdio.h>
#include <string.h>
#include <assert.h>
...
...
@@ -35,10 +31,7 @@
#include "winuser.h"
#include "objbase.h"
#include "ole2.h"
#include "rpc.h"
#include "winerror.h"
#include "winreg.h"
#include "wtypes.h"
#include "wine/unicode.h"
#include "compobj_private.h"
...
...
@@ -1780,7 +1773,7 @@ HRESULT WINAPI CoMarshalInterThreadInterfaceInStream(
if
(
SUCCEEDED
(
hres
))
{
memset
(
&
seekto
,
0
,
sizeof
(
seekto
));
IStream_Seek
(
*
ppStm
,
seekto
,
SEEK_SET
,
&
xpos
);
IStream_Seek
(
*
ppStm
,
seekto
,
S
TREAM_S
EEK_SET
,
&
xpos
);
}
else
{
...
...
dlls/ole32/rpc.c
View file @
ba25254d
...
...
@@ -23,11 +23,8 @@
#include "config.h"
#include "wine/port.h"
#include <stdlib.h>
#include <stdarg.h>
#include <stdio.h>
#include <string.h>
#include <assert.h>
#define COBJMACROS
#define NONAMELESSUNION
...
...
@@ -42,7 +39,6 @@
#include "rpc.h"
#include "winerror.h"
#include "winreg.h"
#include "wtypes.h"
#include "wine/unicode.h"
#include "compobj_private.h"
...
...
dlls/ole32/stubmanager.c
View file @
ba25254d
...
...
@@ -35,9 +35,8 @@
#include "winbase.h"
#include "winuser.h"
#include "objbase.h"
#include "ole2.h"
#include "ole2ver.h"
#include "rpc.h"
#include "wine/debug.h"
#include "compobj_private.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