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
9e6784c2
Commit
9e6784c2
authored
Sep 02, 2008
by
Dan Hipschman
Committed by
Alexandre Julliard
Sep 02, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32: Add a widl-generated proxy file for ocidl.idl.
parent
a41de877
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
209 additions
and
3 deletions
+209
-3
.gitignore
.gitignore
+2
-0
Makefile.in
dlls/oleaut32/Makefile.in
+2
-1
oleaut.c
dlls/oleaut32/oleaut.c
+1
-2
oleaut32_ocidl.idl
dlls/oleaut32/oleaut32_ocidl.idl
+20
-0
usrmarshal.c
dlls/oleaut32/usrmarshal.c
+184
-0
No files found.
.gitignore
View file @
9e6784c2
...
...
@@ -81,6 +81,8 @@ dlls/ole32/ole32_unknwn.h
dlls/ole32/ole32_unknwn_p.c
dlls/oleaut32/oleaut32_oaidl.h
dlls/oleaut32/oleaut32_oaidl_p.c
dlls/oleaut32/oleaut32_ocidl.h
dlls/oleaut32/oleaut32_ocidl_p.c
dlls/oleaut32/tests/test_tlb.tlb
dlls/oleaut32/tests/tmarshal.h
dlls/oleaut32/tests/tmarshal.tlb
...
...
dlls/oleaut32/Makefile.in
View file @
9e6784c2
...
...
@@ -39,7 +39,8 @@ SPEC_SRCS16 = \
RC_SRCS
=
oleaut32.rc
IDL_P_SRCS
=
\
oleaut32_oaidl.idl
oleaut32_oaidl.idl
\
oleaut32_ocidl.idl
@MAKE_DLL_RULES@
...
...
dlls/oleaut32/oleaut.c
View file @
9e6784c2
...
...
@@ -807,8 +807,7 @@ HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID iid, LPVOID *ppv)
return
S_OK
;
/*FALLTHROUGH*/
}
FIXME
(
"
\n\t
CLSID:
\t
%s,
\n\t
IID:
\t
%s
\n
"
,
debugstr_guid
(
rclsid
),
debugstr_guid
(
iid
));
return
CLASS_E_CLASSNOTAVAILABLE
;
return
OLEAUTPS_DllGetClassObject
(
rclsid
,
iid
,
ppv
);
}
/***********************************************************************
...
...
dlls/oleaut32/oleaut32_ocidl.idl
0 → 100644
View file @
9e6784c2
/*
*
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
*/
cpp_quote
(
"#include <winuser.h>"
)
#
include
"ocidl.idl"
dlls/oleaut32/usrmarshal.c
View file @
9e6784c2
...
...
@@ -36,6 +36,7 @@
#include "oleauto.h"
#include "rpcproxy.h"
#include "typelib.h"
#include "ocidl.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
ole
);
...
...
@@ -50,9 +51,11 @@ static CStdPSFactoryBuffer PSFactoryBuffer;
CSTDSTUBBUFFERRELEASE
(
&
PSFactoryBuffer
)
extern
const
ExtendedProxyFileInfo
oleaut32_oaidl_ProxyFileInfo
;
extern
const
ExtendedProxyFileInfo
oleaut32_ocidl_ProxyFileInfo
;
static
const
ProxyFileInfo
*
OLEAUT32_ProxyFileList
[]
=
{
&
oleaut32_oaidl_ProxyFileInfo
,
&
oleaut32_ocidl_ProxyFileInfo
,
NULL
};
...
...
@@ -1128,6 +1131,32 @@ void WINAPI LPSAFEARRAY_UserFree(ULONG *pFlags, LPSAFEARRAY *ppsa)
SafeArrayDestroy
(
*
ppsa
);
}
ULONG
WINAPI
HFONT_UserSize
(
ULONG
*
pFlags
,
ULONG
Start
,
HFONT
*
phfont
)
{
FIXME
(
":stub
\n
"
);
return
0
;
}
unsigned
char
*
WINAPI
HFONT_UserMarshal
(
ULONG
*
pFlags
,
unsigned
char
*
Buffer
,
HFONT
*
phfont
)
{
FIXME
(
":stub
\n
"
);
return
NULL
;
}
unsigned
char
*
WINAPI
HFONT_UserUnmarshal
(
ULONG
*
pFlags
,
unsigned
char
*
Buffer
,
HFONT
*
phfont
)
{
FIXME
(
":stub
\n
"
);
return
NULL
;
}
void
WINAPI
HFONT_UserFree
(
ULONG
*
pFlags
,
HFONT
*
phfont
)
{
FIXME
(
":stub
\n
"
);
return
;
}
/* IDispatch */
/* exactly how Invoke is marshalled is not very clear to me yet,
* but the way I've done it seems to work for me */
...
...
@@ -2029,3 +2058,158 @@ HRESULT __RPC_STUB IPropertyBag_Read_Stub(
FIXME
(
"not implemented
\n
"
);
return
E_FAIL
;
}
/* call_as/local stubs for ocidl.idl */
HRESULT
CALLBACK
IClassFactory2_CreateInstanceLic_Proxy
(
IClassFactory2
*
This
,
IUnknown
*
pUnkOuter
,
IUnknown
*
pUnkReserved
,
REFIID
riid
,
BSTR
bstrKey
,
PVOID
*
ppvObj
)
{
FIXME
(
"not implemented
\n
"
);
return
E_NOTIMPL
;
}
HRESULT
__RPC_STUB
IClassFactory2_CreateInstanceLic_Stub
(
IClassFactory2
*
This
,
REFIID
riid
,
BSTR
bstrKey
,
IUnknown
**
ppvObj
)
{
FIXME
(
"not implemented
\n
"
);
return
E_NOTIMPL
;
}
HRESULT
CALLBACK
IEnumConnections_Next_Proxy
(
IEnumConnections
*
This
,
ULONG
cConnections
,
LPCONNECTDATA
rgcd
,
ULONG
*
pcFetched
)
{
FIXME
(
"not implemented
\n
"
);
return
E_NOTIMPL
;
}
HRESULT
__RPC_STUB
IEnumConnections_Next_Stub
(
IEnumConnections
*
This
,
ULONG
cConnections
,
LPCONNECTDATA
rgcd
,
ULONG
*
pcFetched
)
{
FIXME
(
"not implemented
\n
"
);
return
E_NOTIMPL
;
}
HRESULT
CALLBACK
IEnumConnectionPoints_Next_Proxy
(
IEnumConnectionPoints
*
This
,
ULONG
cConnections
,
LPCONNECTIONPOINT
*
ppCP
,
ULONG
*
pcFetched
)
{
FIXME
(
"not implemented
\n
"
);
return
E_NOTIMPL
;
}
HRESULT
__RPC_STUB
IEnumConnectionPoints_Next_Stub
(
IEnumConnectionPoints
*
This
,
ULONG
cConnections
,
LPCONNECTIONPOINT
*
ppCP
,
ULONG
*
pcFetched
)
{
FIXME
(
"not implemented
\n
"
);
return
E_NOTIMPL
;
}
HRESULT
CALLBACK
IPersistMemory_Load_Proxy
(
IPersistMemory
*
This
,
LPVOID
pMem
,
ULONG
cbSize
)
{
FIXME
(
"not implemented
\n
"
);
return
E_NOTIMPL
;
}
HRESULT
__RPC_STUB
IPersistMemory_Load_Stub
(
IPersistMemory
*
This
,
BYTE
*
pMem
,
ULONG
cbSize
)
{
FIXME
(
"not implemented
\n
"
);
return
E_NOTIMPL
;
}
HRESULT
CALLBACK
IPersistMemory_Save_Proxy
(
IPersistMemory
*
This
,
LPVOID
pMem
,
BOOL
fClearDirty
,
ULONG
cbSize
)
{
FIXME
(
"not implemented
\n
"
);
return
E_NOTIMPL
;
}
HRESULT
__RPC_STUB
IPersistMemory_Save_Stub
(
IPersistMemory
*
This
,
BYTE
*
pMem
,
BOOL
fClearDirty
,
ULONG
cbSize
)
{
FIXME
(
"not implemented
\n
"
);
return
E_NOTIMPL
;
}
void
CALLBACK
IAdviseSinkEx_OnViewStatusChange_Proxy
(
IAdviseSinkEx
*
This
,
DWORD
dwViewStatus
)
{
FIXME
(
"not implemented
\n
"
);
}
HRESULT
__RPC_STUB
IAdviseSinkEx_OnViewStatusChange_Stub
(
IAdviseSinkEx
*
This
,
DWORD
dwViewStatus
)
{
FIXME
(
"not implemented
\n
"
);
return
E_NOTIMPL
;
}
HRESULT
CALLBACK
IEnumOleUndoUnits_Next_Proxy
(
IEnumOleUndoUnits
*
This
,
ULONG
cElt
,
IOleUndoUnit
**
rgElt
,
ULONG
*
pcEltFetched
)
{
FIXME
(
"not implemented
\n
"
);
return
E_NOTIMPL
;
}
HRESULT
__RPC_STUB
IEnumOleUndoUnits_Next_Stub
(
IEnumOleUndoUnits
*
This
,
ULONG
cElt
,
IOleUndoUnit
**
rgElt
,
ULONG
*
pcEltFetched
)
{
FIXME
(
"not implemented
\n
"
);
return
E_NOTIMPL
;
}
HRESULT
CALLBACK
IQuickActivate_QuickActivate_Proxy
(
IQuickActivate
*
This
,
QACONTAINER
*
pQaContainer
,
QACONTROL
*
pQaControl
)
{
FIXME
(
"not implemented
\n
"
);
return
E_NOTIMPL
;
}
HRESULT
__RPC_STUB
IQuickActivate_QuickActivate_Stub
(
IQuickActivate
*
This
,
QACONTAINER
*
pQaContainer
,
QACONTROL
*
pQaControl
)
{
FIXME
(
"not implemented
\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