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
194bd052
Commit
194bd052
authored
Feb 29, 2000
by
Patrik Stridvall
Committed by
Alexandre Julliard
Feb 29, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moved some stubs and added forwards in order to make both winapi_check
and checklink happy.
parent
1deeeef1
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
87 additions
and
71 deletions
+87
-71
Makefile.in
dlls/oleaut32/Makefile.in
+1
-0
oleaut32.spec
dlls/oleaut32/oleaut32.spec
+5
-5
stubs.c
dlls/oleaut32/stubs.c
+69
-0
olepro32.spec
dlls/olepro32/olepro32.spec
+9
-7
olepro32stubs.c
dlls/olepro32/olepro32stubs.c
+3
-59
No files found.
dlls/oleaut32/Makefile.in
View file @
194bd052
...
...
@@ -16,6 +16,7 @@ C_SRCS = \
olefont.c
\
parsedt.c
\
safearray.c
\
stubs.c
\
typelib.c
\
variant.c
...
...
dlls/oleaut32/oleaut32.spec
View file @
194bd052
...
...
@@ -280,11 +280,11 @@ type win32
412 stdcall SafeArrayCopyData(ptr ptr) SafeArrayCopyData
413 stub VectorFromBstr
414 stub BstrFromVector
415 st
ub
OleIconToCursor
416 st
ub
OleCreatePropertyFrameIndirect
417 st
ub
OleCreatePropertyFrame
418 st
ub
OleLoadPicture
419 st
ub
OleCreatePictureIndirect
415 st
dcall OleIconToCursor(long long)
OleIconToCursor
416 st
dcall OleCreatePropertyFrameIndirect(ptr)
OleCreatePropertyFrameIndirect
417 st
dcall OleCreatePropertyFrame(ptr long long ptr long ptr long ptr ptr long ptr)
OleCreatePropertyFrame
418 st
dcall OleLoadPicture(ptr long long ptr ptr)
OleLoadPicture
419 st
dcall OleCreatePictureIndirect(ptr ptr long ptr)
OleCreatePictureIndirect
420 stdcall OleCreateFontIndirect(ptr ptr ptr) OleCreateFontIndirect
421 stdcall OleTranslateColor(long long long) OleTranslateColor
422 stub OleLoadPictureFile
...
...
dlls/oleaut32/stubs.c
0 → 100644
View file @
194bd052
/*
* OlePro32 Stubs
*
* Copyright 1999 Corel Corporation
*
* Sean Langley
*/
#include "windef.h"
#include "debugtools.h"
#include "olectl.h"
DEFAULT_DEBUG_CHANNEL
(
ole
);
/*****************************************************
* OleIconToCursor
*/
HCURSOR
WINAPI
OleIconToCursor
(
HINSTANCE
hinstExe
,
HICON
hicon
)
{
FIXME
(
"(%x,%x), not implemented (olepro32.dll)
\n
"
,
hinstExe
,
hicon
);
return
S_OK
;
}
/*****************************************************
* OleCreatePropertyFrameIndirect
*/
HRESULT
WINAPI
OleCreatePropertyFrameIndirect
(
LPOCPFIPARAMS
lpParams
)
{
FIXME
(
"(%p), not implemented (olepro32.dll)
\n
"
,
lpParams
);
return
S_OK
;
}
/*****************************************************
* OleCreatePropertyFrame
*/
HRESULT
WINAPI
OleCreatePropertyFrame
(
HWND
hwndOwner
,
UINT
x
,
UINT
y
,
LPCOLESTR
lpszCaption
,
ULONG
cObjects
,
LPUNKNOWN
*
ppUnk
,
ULONG
cPages
,
LPCLSID
pPageClsID
,
LCID
lcid
,
DWORD
dwReserved
,
LPVOID
pvReserved
)
{
FIXME
(
"(%x,%d,%d,%p,%ld,%p,%ld,%p,%x,%ld,%p), not implemented (olepro32.dll)
\n
"
,
hwndOwner
,
x
,
y
,
lpszCaption
,
cObjects
,
ppUnk
,
cPages
,
pPageClsID
,
(
int
)
lcid
,
dwReserved
,
pvReserved
);
return
S_OK
;
}
/*****************************************************
* OleLoadPicture
*/
HRESULT
WINAPI
OleLoadPicture
(
LPSTREAM
lpstream
,
LONG
lSize
,
BOOL
fRunmode
,
REFIID
reed
,
LPVOID
*
lplpvObj
)
{
FIXME
(
"(%p,%ld,%d,%p,%p), not implemented (olepro32.dll)
\n
"
,
lpstream
,
lSize
,
fRunmode
,
reed
,
lplpvObj
);
return
S_OK
;
}
/*****************************************************
* OleCreatePictureIndirect
*/
HRESULT
WINAPI
OleCreatePictureIndirect
(
LPPICTDESC
lpPictDesc
,
REFIID
riid
,
BOOL
fOwn
,
LPVOID
*
lplpvObj
)
{
FIXME
(
"(%p,%p,%d,%p), not implemented (olepro32.dll)
\n
"
,
lpPictDesc
,
riid
,
fOwn
,
lplpvObj
);
return
S_OK
;
}
dlls/olepro32/olepro32.spec
View file @
194bd052
name olepro32
type win32
@ stdcall OleIconToCursor( ptr ptr) OleIconToCursor
@ stdcall OleCreatePropertyFrameIndirect( ptr ) OleCreatePropertyFrameIndirect
@ stdcall OleCreatePropertyFrame( ptr long long ptr long ptr long ptr ptr long ptr ) OleCreatePropertyFrame
@ stdcall OleLoadPicture( ptr long long ptr ptr ) OleLoadPicture
@ stdcall OleCreatePictureIndirect( ptr ptr long ptr ) OleCreatePictureIndirect
@ stdcall OleCreateFontIndirect( ptr ptr ptr ) OleCreateFontIndirect
@ stdcall OleTranslateColor( long ptr ptr ) OleTranslateColor
import oleaut32.dll
@ forward OleIconToCursor OLEAUT32.OleIconToCursor
@ forward OleCreatePropertyFrameIndirect OLEAUT32.OleCreatePropertyFrameIndirect
@ forward OleCreatePropertyFrame OLEAUT32.OleCreatePropertyFrame
@ forward OleLoadPicture OLEAUT32.OleLoadPicture
@ forward OleCreatePictureIndirect OLEAUT32.OleCreatePictureIndirect
@ forward OleCreateFontIndirect OLEAUT32.OleCreateFontIndirect
@ forward OleTranslateColor OLEAUT32.OleTranslateColor
@ stdcall DllCanUnloadNow() OLEPRO32_DllCanUnloadNow
@ stdcall DllGetClassObjecti( ptr ptr ptr ) OLEPRO32_DllGetClassObject
@ stdcall DllRegisterServer() OLEPRO32_DllRegisterServer
...
...
dlls/olepro32/olepro32stubs.c
View file @
194bd052
...
...
@@ -6,67 +6,11 @@
* Sean Langley
*/
#include "windef.h"
#include "debugtools.h"
#include "olectl.h"
DEFAULT_DEBUG_CHANNEL
(
ole
)
/*****************************************************
* OleIconToCursor
*/
HCURSOR
WINAPI
OleIconToCursor
(
HINSTANCE
hinstExe
,
HICON
hicon
)
{
FIXME
(
"(%x,%x), not implemented (olepro32.dll)
\n
"
,
hinstExe
,
hicon
);
return
S_OK
;
}
#include "ole2.h"
#include "windef.h"
/*****************************************************
* OleCreatePropertyFrameIndirect
*/
HRESULT
WINAPI
OleCreatePropertyFrameIndirect
(
LPOCPFIPARAMS
lpParams
)
{
FIXME
(
"(%p), not implemented (olepro32.dll)
\n
"
,
lpParams
);
return
S_OK
;
}
/*****************************************************
* OleCreatePropertyFrame
*/
HRESULT
WINAPI
OleCreatePropertyFrame
(
HWND
hwndOwner
,
UINT
x
,
UINT
y
,
LPCOLESTR
lpszCaption
,
ULONG
cObjects
,
LPUNKNOWN
*
ppUnk
,
ULONG
cPages
,
LPCLSID
pPageClsID
,
LCID
lcid
,
DWORD
dwReserved
,
LPVOID
pvReserved
)
{
FIXME
(
"(%x,%d,%d,%p,%ld,%p,%ld,%p,%x,%ld,%p), not implemented (olepro32.dll)
\n
"
,
hwndOwner
,
x
,
y
,
lpszCaption
,
cObjects
,
ppUnk
,
cPages
,
pPageClsID
,
(
int
)
lcid
,
dwReserved
,
pvReserved
);
return
S_OK
;
}
/*****************************************************
* OleLoadPicture
*/
HRESULT
WINAPI
OleLoadPicture
(
LPSTREAM
lpstream
,
LONG
lSize
,
BOOL
fRunmode
,
REFIID
reed
,
LPVOID
*
lplpvObj
)
{
FIXME
(
"(%p,%ld,%d,%p,%p), not implemented (olepro32.dll)
\n
"
,
lpstream
,
lSize
,
fRunmode
,
reed
,
lplpvObj
);
return
S_OK
;
}
/*****************************************************
* OleCreatePictureIndirect
*/
HRESULT
WINAPI
OleCreatePictureIndirect
(
LPPICTDESC
lpPictDesc
,
REFIID
riid
,
BOOL
fOwn
,
LPVOID
*
lplpvObj
)
{
FIXME
(
"(%p,%p,%d,%p), not implemented (olepro32.dll)
\n
"
,
lpPictDesc
,
riid
,
fOwn
,
lplpvObj
);
return
S_OK
;
}
DEFAULT_DEBUG_CHANNEL
(
ole
);
HRESULT
WINAPI
OLEPRO32_DllUnregisterServer
()
{
...
...
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