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
60b59bef
Commit
60b59bef
authored
Oct 02, 2001
by
Guy Albertelli
Committed by
Alexandre Julliard
Oct 02, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implemented dummy stub for SHChangeNotifyUpdateEntryList and
functional CIDLData_CreateFromIDArray.
parent
71406615
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
51 additions
and
2 deletions
+51
-2
changenotify.c
dlls/shell32/changenotify.c
+13
-0
shell32.spec
dlls/shell32/shell32.spec
+2
-2
shellord.c
dlls/shell32/shellord.c
+36
-0
No files found.
dlls/shell32/changenotify.c
View file @
60b59bef
...
...
@@ -179,6 +179,19 @@ SHChangeNotifyDeregister(
}
/*************************************************************************
* SHChangeNotifyUpdateEntryList [SHELL32.5]
*/
BOOL
WINAPI
SHChangeNotifyUpdateEntryList
(
DWORD
unknown1
,
DWORD
unknown2
,
DWORD
unknown3
,
DWORD
unknown4
)
{
FIXME
(
"(0x%08lx, 0x%08lx, 0x%08lx, 0x%08lx)
\n
"
,
unknown1
,
unknown2
,
unknown3
,
unknown4
);
return
-
1
;
}
/*************************************************************************
* SHChangeNotify [SHELL32.@]
*/
void
WINAPI
SHChangeNotifyW
(
LONG
wEventId
,
UINT
uFlags
,
LPCVOID
dwItem1
,
LPCVOID
dwItem2
)
...
...
dlls/shell32/shell32.spec
View file @
60b59bef
...
...
@@ -23,7 +23,7 @@ debug_channels (exec pidl shell shlctrl)
2 stdcall SHChangeNotifyRegister(long long long long long long) SHChangeNotifyRegister
4 stdcall SHChangeNotifyDeregister (long) SHChangeNotifyDeregister
5 st
ub SHChangeNotifyUpdateEntryList@16
5 st
dcall SHChangeNotifyUpdateEntryList (long long long long) SHChangeNotifyUpdateEntryList
9 stub PifMgr_OpenProperties@16
10 stub PifMgr_GetProperties@20
11 stub PifMgr_SetProperties@20
...
...
@@ -92,7 +92,7 @@ debug_channels (exec pidl shell shlctrl)
80 stdcall DragFinish(long) DragFinish
81 stdcall DragQueryFile(long long ptr long) DragQueryFileA
82 stdcall DragQueryFileA(long long ptr long) DragQueryFileA
83 st
ub
CIDLData_CreateFromIDArray
83 st
dcall CIDLData_CreateFromIDArray(ptr long ptr ptr)
CIDLData_CreateFromIDArray
84 stub SHIsBadInterfacePtr
85 forward OpenRegStream shlwapi.SHOpenRegStreamA
86 stdcall SHRegisterDragDrop(long ptr) SHRegisterDragDrop
...
...
dlls/shell32/shellord.c
View file @
60b59bef
...
...
@@ -19,8 +19,10 @@
#include "shlobj.h"
#include "shell32_main.h"
#include "undocshell.h"
#include "pidl.h"
DEFAULT_DEBUG_CHANNEL
(
shell
);
DECLARE_DEBUG_CHANNEL
(
pidl
);
/*************************************************************************
* ParseFieldA [internal]
...
...
@@ -1441,3 +1443,37 @@ DWORD WINAPI SHDestroyPropSheetExtArray(DWORD a)
FIXME
(
"(%08lx)stub
\n
"
,
a
);
return
0
;
}
/*************************************************************************
* CIDLData_CreateFromIDArray [SHELL32.83]
*
* Create IDataObject from PIDLs??
*/
HRESULT
WINAPI
CIDLData_CreateFromIDArray
(
LPCITEMIDLIST
pidlFolder
,
DWORD
cpidlFiles
,
LPCITEMIDLIST
*
lppidlFiles
,
LPDATAOBJECT
*
ppdataObject
)
{
INT
i
;
HWND
hwnd
=
0
;
/*FIXME: who should be hwnd of owner? set to desktop */
BOOL
boldpidl
;
if
(
TRACE_ON
(
shell
))
{
TRACE
(
"(%p, %ld, %p, %p)
\n
"
,
pidlFolder
,
cpidlFiles
,
lppidlFiles
,
ppdataObject
);
boldpidl
=
TRACE_ON
(
pidl
);
__SET_DEBUGGING
(
__DBCL_TRACE
,
__wine_dbch_shell
,
FALSE
);
__SET_DEBUGGING
(
__DBCL_TRACE
,
__wine_dbch_pidl
,
TRUE
);
pdump
(
pidlFolder
);
for
(
i
=
0
;
i
<
cpidlFiles
;
i
++
){
pdump
(
lppidlFiles
[
i
]);
}
__SET_DEBUGGING
(
__DBCL_TRACE
,
__wine_dbch_shell
,
TRUE
);
__SET_DEBUGGING
(
__DBCL_TRACE
,
__wine_dbch_pidl
,
boldpidl
);
}
*
ppdataObject
=
IDataObject_Constructor
(
hwnd
,
pidlFolder
,
lppidlFiles
,
cpidlFiles
);
if
(
*
ppdataObject
)
return
S_OK
;
return
E_OUTOFMEMORY
;
}
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