Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Felix Münchhalfen
wine
Commits
18aacf15
Commit
18aacf15
authored
26 years ago
by
Sylvain St-Germain
Committed by
Alexandre Julliard
26 years ago
Browse files
Options
Downloads
Patches
Plain Diff
DoDragDrop and OleIsCurrentClipboard stub implementation.
parent
4f85ca44
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
include/winerror.h
+4
-0
4 additions, 0 deletions
include/winerror.h
ole/ole2.c
+15
-0
15 additions, 0 deletions
ole/ole2.c
ole/olecli.c
+15
-0
15 additions, 0 deletions
ole/olecli.c
relay32/ole32.spec
+2
-2
2 additions, 2 deletions
relay32/ole32.spec
with
36 additions
and
2 deletions
include/winerror.h
+
4
−
0
View file @
18aacf15
...
...
@@ -154,6 +154,10 @@ extern int WIN32_LastError;
#define DISP_E_TYPEMISMATCH 0x80020005L
/* Drag and Drop */
#define DRAGDROP_S_DROP 0x00040100L
#define DRAGDROP_S_CANCEL 0x00040101L
#define E_UNEXPECTED 0x8000FFFF
#define E_NOTIMPL 0x80004001
...
...
This diff is collapsed.
Click to expand it.
ole/ole2.c
+
15
−
0
View file @
18aacf15
...
...
@@ -9,6 +9,7 @@
#include
"ole2.h"
#include
"process.h"
#include
"debug.h"
#include
"objidl.h"
#include
"wine/obj_base.h"
#include
"wine/obj_clientserver.h"
#include
"wine/obj_storage.h"
...
...
@@ -170,3 +171,17 @@ HRESULT WINAPI CreateBindCtx32 (DWORD reserved, LPVOID *ppbc)
/* return S_OK; */
return
E_OUTOFMEMORY
;
}
/***********************************************************************
* DoDragDrop32 [OLE32.65]
*/
HRESULT
WINAPI
DoDragDrop32
(
IDataObject
*
pDataObject
,
/* ptr to the data obj */
IDataObject
*
pDropSource
,
/* ptr to the source obj */
DWORD
dwOKEffect
,
/* effects allowed by the source */
DWORD
*
pdwEffect
)
/* ptr to effects of the source */
{
FIXME
(
ole
,
"(DataObject %p, DropSource %p): stub!
\n
"
,
pDataObject
,
pDropSource
);
return
DRAGDROP_S_DROP
;
}
This diff is collapsed.
Click to expand it.
ole/olecli.c
+
15
−
0
View file @
18aacf15
...
...
@@ -8,9 +8,13 @@
*/
#include
"windows.h"
#include
"winerror.h"
#include
"ole.h"
#include
"gdi.h"
#include
"debug.h"
#include
"ole2.h"
#include
"objidl.h"
extern
LONG
OLE_current_handle
;
...
...
@@ -160,3 +164,14 @@ OLESTATUS WINAPI OleCreateFromClip32(
/* clipb type, object kreieren entsprechend etc. */
return
OLE_OK
;
}
/***********************************************************************
* OleIsCurrentClipboard32 [OLE32.110]
*/
HRESULT
WINAPI
OleIsCurrentClipboard32
(
IDataObject
*
pDataObject
)
/* ptr to the data obj previously copied or cut */
{
FIXME
(
ole
,
"(DataObject %p): stub!
\n
"
,
pDataObject
);
return
S_FALSE
;
}
This diff is collapsed.
Click to expand it.
relay32/ole32.spec
+
2
−
2
View file @
18aacf15
...
...
@@ -65,7 +65,7 @@ type win32
62 stub DllDebugObjectRPCHook
63 stub DllGetClassObject
64 stub DllGetClassObjectWOW
65 st
ub
DoDragDrop
65 st
dcall
DoDragDrop
(ptr ptr long ptr) DoDragDrop32
66 stub EnableHookObject
67 stub GetClassFile
68 stub GetConvertStg
...
...
@@ -110,7 +110,7 @@ type win32
107 stub OleGetIconOfFile
108 stdcall OleInitialize(ptr) OleInitialize
109 stdcall OleInitializeWOW(long) OleInitializeWOW
110 st
ub
OleIsCurrentClipboard
110 st
dcall OleIsCurrentClipboard(ptr)
OleIsCurrentClipboard
32
111 stub OleIsRunning
112 stub OleLoad
113 stub OleLoadFromStream
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment