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
4afc3266
Commit
4afc3266
authored
Sep 02, 2008
by
Dan Hipschman
Committed by
Alexandre Julliard
Sep 02, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32: Add widl-generated proxies for unknwn.idl and dcom.idl.
parent
09d0a358
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
76 additions
and
3 deletions
+76
-3
.gitignore
.gitignore
+3
-0
Makefile.in
dlls/ole32/Makefile.in
+4
-3
ole32_unknwn.idl
dlls/ole32/ole32_unknwn.idl
+25
-0
oleproxy.c
dlls/ole32/oleproxy.c
+0
-0
usrmarshal.c
dlls/ole32/usrmarshal.c
+44
-0
No files found.
.gitignore
View file @
4afc3266
...
...
@@ -70,8 +70,11 @@ dlls/ole2nls.dll16
dlls/ole2prox.dll16
dlls/ole2thk.dll16
dlls/ole32/dcom.h
dlls/ole32/dcom_p.c
dlls/ole32/irot.h
dlls/ole32/irot_c.c
dlls/ole32/ole32_unknwn.h
dlls/ole32/ole32_unknwn_p.c
dlls/oleaut32/oleaut32_oaidl.h
dlls/oleaut32/oleaut32_oaidl_p.c
dlls/oleaut32/tests/test_tlb.tlb
...
...
dlls/ole32/Makefile.in
View file @
4afc3266
...
...
@@ -64,12 +64,13 @@ RC_SRCS = ole32res.rc
RC_SRCS16
=
version16.rc
IDL_H_SRCS
=
\
dcom.idl
IDL_C_SRCS
=
\
irot.idl
IDL_P_SRCS
=
\
dcom.idl
\
ole32_unknwn.idl
@MAKE_DLL_RULES@
ole2nls.spec.o
:
ole2nls.spec version16.res
...
...
dlls/ole32/ole32_unknwn.idl
0 → 100644
View file @
4afc3266
/*
*
Copyright
2007
Google
(
Dan
Hipschman
)
*
*
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
.
,
51
Franklin
St
,
Fifth
Floor
,
Boston
,
MA
02110
-
1301
,
USA
*/
/*
The
header
file
generated
from
this
includes
rpc
.
h
,
which
ends
up
including
unknwn
.
h
at
some
point
.
This
will
cause
all
sorts
of
errors
so
the
easiest
thing
to
do
is
just
comment
out
our
entire
header
.
*/
cpp_quote
(
"#if 0 /* oleaut32_unknwn.idl hack */"
)
#
include
"unknwn.idl"
cpp_quote
(
"#endif /* oleaut32_unknwn.idl hack */"
)
dlls/ole32/oleproxy.c
View file @
4afc3266
This diff is collapsed.
Click to expand it.
dlls/ole32/usrmarshal.c
View file @
4afc3266
...
...
@@ -1957,3 +1957,47 @@ void __RPC_USER SNB_UserFree(ULONG *pFlags, SNB *pSnb)
{
FIXME
(
":stub
\n
"
);
}
/* call_as/local stubs for unknwn.idl */
HRESULT
CALLBACK
IClassFactory_CreateInstance_Proxy
(
IClassFactory
*
This
,
IUnknown
*
pUnkOuter
,
REFIID
riid
,
void
**
ppvObject
)
{
TRACE
(
"(%p, %s, %p)
\n
"
,
pUnkOuter
,
debugstr_guid
(
riid
),
ppvObject
);
*
ppvObject
=
NULL
;
if
(
pUnkOuter
)
{
ERR
(
"aggregation is not allowed on remote objects
\n
"
);
return
CLASS_E_NOAGGREGATION
;
}
return
IClassFactory_RemoteCreateInstance_Proxy
(
This
,
riid
,
(
IUnknown
**
)
ppvObject
);
}
HRESULT
__RPC_STUB
IClassFactory_CreateInstance_Stub
(
IClassFactory
*
This
,
REFIID
riid
,
IUnknown
**
ppvObject
)
{
TRACE
(
"(%s, %p)
\n
"
,
debugstr_guid
(
riid
),
ppvObject
);
return
IClassFactory_CreateInstance
(
This
,
NULL
,
riid
,
(
void
**
)
ppvObject
);
}
HRESULT
CALLBACK
IClassFactory_LockServer_Proxy
(
IClassFactory
*
This
,
BOOL
fLock
)
{
FIXME
(
":stub
\n
"
);
return
E_NOTIMPL
;
}
HRESULT
__RPC_STUB
IClassFactory_LockServer_Stub
(
IClassFactory
*
This
,
BOOL
fLock
)
{
FIXME
(
":stub
\n
"
);
return
E_NOTIMPL
;
}
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