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
535679ae
Commit
535679ae
authored
Oct 26, 2004
by
Juan Lang
Committed by
Alexandre Julliard
Oct 26, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix CSIDL_CONTROLS and CSIDL_PRINTERS PIDL types, and update tests now
that they pass.
parent
568a91df
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
18 deletions
+13
-18
debughlp.c
dlls/shell32/debughlp.c
+2
-3
pidl.c
dlls/shell32/pidl.c
+4
-5
pidl.h
dlls/shell32/pidl.h
+4
-3
shellpath.c
dlls/shell32/tests/shellpath.c
+3
-7
No files found.
dlls/shell32/debughlp.c
View file @
535679ae
...
...
@@ -76,6 +76,7 @@ LPSTR _dbg_ILGetTextPointer(LPCITEMIDLIST pidl)
{
case
PT_GUID
:
case
PT_SHELLEXT
:
case
PT_YAGUID
:
return
NULL
;
case
PT_DRIVE
:
...
...
@@ -88,7 +89,6 @@ LPSTR _dbg_ILGetTextPointer(LPCITEMIDLIST pidl)
case
PT_FOLDER1
:
case
PT_VALUE
:
case
PT_IESPECIAL1
:
case
PT_RAS_FOLDER
:
case
PT_IESPECIAL2
:
return
(
LPSTR
)
&
(
pdata
->
u
.
file
.
szNames
);
...
...
@@ -115,7 +115,6 @@ LPSTR _dbg_ILGetSTextPointer(LPCITEMIDLIST pidl)
case
PT_FOLDER
:
case
PT_VALUE
:
case
PT_IESPECIAL1
:
case
PT_RAS_FOLDER
:
case
PT_IESPECIAL2
:
return
(
LPSTR
)(
pdata
->
u
.
file
.
szNames
+
strlen
(
pdata
->
u
.
file
.
szNames
)
+
1
);
...
...
@@ -250,7 +249,7 @@ BOOL pcheck (LPCITEMIDLIST pidl)
case
PT_NETPROVIDER
:
case
PT_NETWORK
:
case
PT_IESPECIAL1
:
case
PT_
RAS_FOLDER
:
case
PT_
YAGUID
:
case
PT_IESPECIAL2
:
case
PT_SHARE
:
break
;
...
...
dlls/shell32/pidl.c
View file @
535679ae
...
...
@@ -1493,7 +1493,7 @@ LPITEMIDLIST _ILCreateControlPanel()
TRACE
(
"()
\n
"
);
if
(
parent
)
{
LPITEMIDLIST
cpl
=
_ILCreateGuid
(
PT_
GUID
,
&
CLSID_ControlPanel
);
LPITEMIDLIST
cpl
=
_ILCreateGuid
(
PT_
SHELLEXT
,
&
CLSID_ControlPanel
);
if
(
cpl
)
{
...
...
@@ -1512,7 +1512,7 @@ LPITEMIDLIST _ILCreatePrinters()
TRACE
(
"()
\n
"
);
if
(
parent
)
{
LPITEMIDLIST
printers
=
_ILCreateGuid
(
PT_GUID
,
&
CLSID_Printers
);
LPITEMIDLIST
printers
=
_ILCreateGuid
(
PT_
YA
GUID
,
&
CLSID_Printers
);
if
(
printers
)
{
...
...
@@ -1538,7 +1538,7 @@ LPITEMIDLIST _ILCreateGuid(PIDLTYPE type, REFIID guid)
{
LPITEMIDLIST
pidlOut
;
if
(
type
==
PT_SHELLEXT
||
type
==
PT_GUID
)
if
(
type
==
PT_SHELLEXT
||
type
==
PT_GUID
||
type
==
PT_YAGUID
)
{
pidlOut
=
_ILAlloc
(
type
,
sizeof
(
GUIDStruct
));
if
(
pidlOut
)
...
...
@@ -1883,6 +1883,7 @@ LPSTR _ILGetTextPointer(LPCITEMIDLIST pidl)
{
case
PT_GUID
:
case
PT_SHELLEXT
:
case
PT_YAGUID
:
return
NULL
;
case
PT_DRIVE
:
...
...
@@ -1895,7 +1896,6 @@ LPSTR _ILGetTextPointer(LPCITEMIDLIST pidl)
case
PT_FOLDER1
:
case
PT_VALUE
:
case
PT_IESPECIAL1
:
case
PT_RAS_FOLDER
:
case
PT_IESPECIAL2
:
return
(
LPSTR
)
&
(
pdata
->
u
.
file
.
szNames
);
...
...
@@ -1926,7 +1926,6 @@ LPSTR _ILGetSTextPointer(LPCITEMIDLIST pidl)
case
PT_FOLDER
:
case
PT_VALUE
:
case
PT_IESPECIAL1
:
case
PT_RAS_FOLDER
:
case
PT_IESPECIAL2
:
return
(
LPSTR
)(
pdata
->
u
.
file
.
szNames
+
strlen
(
pdata
->
u
.
file
.
szNames
)
+
1
);
...
...
dlls/shell32/pidl.h
View file @
535679ae
...
...
@@ -71,6 +71,7 @@
* net provider 0x46 network
* whole network 0x47 network (5)
* MSITStore 0x61 htmlhlp (7)
* printers/ras connections 0x70 guid
* history/favorites 0xb1 file
* share 0xc3 network (6)
*
...
...
@@ -101,7 +102,7 @@
#define PT_NETPROVIDER 0x46
#define PT_NETWORK 0x47
#define PT_IESPECIAL1 0x61
#define PT_
RAS_FOLDER 0x70
#define PT_
YAGUID 0x70
/* yet another guid.. */
#define PT_IESPECIAL2 0xb1
#define PT_SHARE 0xc3
...
...
@@ -200,8 +201,8 @@ BOOL _ILIsCPanelStruct (LPCITEMIDLIST pidl);
*/
LPITEMIDLIST
_ILAlloc
(
PIDLTYPE
type
,
size_t
size
);
/* Creates a PIDL with guid format and type type, which must be
either PT_GUID
*
or PT_SHELLEXT
.
/* Creates a PIDL with guid format and type type, which must be
one of PT_GUID,
*
PT_SHELLEXT, or PT_YAGUID
.
*/
LPITEMIDLIST
_ILCreateGuid
(
PIDLTYPE
type
,
REFIID
guid
);
...
...
dlls/shell32/tests/shellpath.c
View file @
535679ae
...
...
@@ -53,8 +53,8 @@
#ifndef PT_WORKGRP
#define PT_WORKGRP 0x41
/* no path */
#endif
#ifndef PT_
PRINTERS
#define PT_
PRINTERS
0x70
/* no path */
#ifndef PT_
YAGUID
#define PT_
YAGUID
0x70
/* no path */
#endif
/* FIXME: this is used for history/favorites folders; what's a better name? */
#ifndef PT_IESPECIAL2
...
...
@@ -81,9 +81,7 @@ static DLLVERSIONINFO shellVersion = { 0 };
static
LPMALLOC
pMalloc
;
static
const
struct
shellExpectedValues
requiredShellValues
[]
=
{
{
CSIDL_BITBUCKET
,
PT_GUID
},
/* FIXME: the following fails in Wine, returns type PT_FOLDER
{
CSIDL_CONTROLS
,
PT_SHELLEXT
},
*/
{
CSIDL_COOKIES
,
PT_FOLDER
},
{
CSIDL_DESKTOPDIRECTORY
,
PT_FOLDER
},
{
CSIDL_DRIVES
,
PT_GUID
},
...
...
@@ -95,9 +93,7 @@ static const struct shellExpectedValues requiredShellValues[] = {
{
CSIDL_INTERNET
,
PT_GUID
},
{
CSIDL_NETHOOD
,
PT_FOLDER
},
{
CSIDL_NETWORK
,
PT_GUID
},
/* FIXME: the following fails in Wine, returns type PT_FOLDER
{ CSIDL_PRINTERS, PT_PRINTERS },
*/
{
CSIDL_PRINTERS
,
PT_YAGUID
},
{
CSIDL_PRINTHOOD
,
PT_FOLDER
},
{
CSIDL_PROGRAMS
,
PT_FOLDER
},
{
CSIDL_RECENT
,
PT_FOLDER
},
...
...
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