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
6e775f89
Commit
6e775f89
authored
Jan 18, 2004
by
Martin Fuchs
Committed by
Alexandre Julliard
Jan 18, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- declare PT_RAS_FOLDER for the "RAS Connections" folder
- handle PT_RAS_FOLDER and PT_NETPROVIDER in debugging functions and _ILGetTextPointer() / _ILGetSTextPointer()
parent
ebdc1f46
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
0 deletions
+7
-0
debughlp.c
dlls/shell32/debughlp.c
+4
-0
pidl.c
dlls/shell32/pidl.c
+2
-0
pidl.h
dlls/shell32/pidl.h
+1
-0
No files found.
dlls/shell32/debughlp.c
View file @
6e775f89
...
...
@@ -83,6 +83,7 @@ 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
);
...
...
@@ -108,6 +109,7 @@ 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
);
...
...
@@ -239,8 +241,10 @@ BOOL pcheck (LPCITEMIDLIST pidl)
case
PT_FOLDER1
:
case
PT_WORKGRP
:
case
PT_COMP
:
case
PT_NETPROVIDER
:
case
PT_NETWORK
:
case
PT_IESPECIAL1
:
case
PT_RAS_FOLDER
:
case
PT_IESPECIAL2
:
case
PT_SHARE
:
break
;
...
...
dlls/shell32/pidl.c
View file @
6e775f89
...
...
@@ -1826,6 +1826,7 @@ 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
);
...
...
@@ -1856,6 +1857,7 @@ 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 @
6e775f89
...
...
@@ -100,6 +100,7 @@
#define PT_NETPROVIDER 0x46
#define PT_NETWORK 0x47
#define PT_IESPECIAL1 0x61
#define PT_RAS_FOLDER 0x70
#define PT_IESPECIAL2 0xb1
#define PT_SHARE 0xc3
...
...
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