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
603f20fc
Commit
603f20fc
authored
Dec 11, 2001
by
Jon Griffiths
Committed by
Alexandre Julliard
Dec 11, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add exclusion defs & remaining funcs, remove internal types &
obj_base.h (sync with win version), fixed a number of function prototypes.
parent
31b8b646
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
17 changed files
with
64 additions
and
29 deletions
+64
-29
commctrl.c
dlls/comctl32/commctrl.c
+2
-0
filedlgbrowser.c
dlls/commdlg/filedlgbrowser.c
+1
-0
richedit.c
dlls/richedit/richedit.c
+1
-0
clipboard.c
dlls/shell32/clipboard.c
+1
-1
shellord.c
dlls/shell32/shellord.c
+2
-1
shellpath.c
dlls/shell32/shellpath.c
+2
-2
undocshell.h
dlls/shell32/undocshell.h
+0
-4
ordinal.c
dlls/shlwapi/ordinal.c
+24
-0
ordinal.h
dlls/shlwapi/ordinal.h
+4
-3
path.c
dlls/shlwapi/path.c
+6
-4
reg.c
dlls/shlwapi/reg.c
+15
-14
shlwapi_main.c
dlls/shlwapi/shlwapi_main.c
+1
-0
string.c
dlls/shlwapi/string.c
+1
-0
url.c
dlls/shlwapi/url.c
+2
-0
http.c
dlls/wininet/http.c
+1
-0
internet.c
dlls/wininet/internet.c
+1
-0
shlwapi.h
include/shlwapi.h
+0
-0
No files found.
dlls/comctl32/commctrl.c
View file @
603f20fc
...
...
@@ -7,12 +7,14 @@
*/
#include <string.h>
#include <stdlib.h>
#include "winbase.h"
#include "heap.h"
#include "commctrl.h"
#include "winerror.h"
#include "winreg.h"
#define NO_SHLWAPI_STREAM
#include "shlwapi.h"
#include "comctl32.h"
#include "debugtools.h"
...
...
dlls/commdlg/filedlgbrowser.c
View file @
603f20fc
...
...
@@ -14,6 +14,7 @@
#include "winuser.h"
#include "winreg.h"
#define NO_SHLWAPI_STREAM
#include "shlwapi.h"
#include "filedlgbrowser.h"
#include "cdlg.h"
...
...
dlls/richedit/richedit.c
View file @
603f20fc
...
...
@@ -18,6 +18,7 @@
#include "riched32.h"
#include "richedit.h"
#include "charlist.h"
#define NO_SHLWAPI_STREAM
#include "shlwapi.h"
#include "rtf.h"
...
...
dlls/shell32/clipboard.c
View file @
603f20fc
...
...
@@ -22,10 +22,10 @@
#include <string.h>
#include "winreg.h"
#include "shlwapi.h"
#include "pidl.h"
#include "undocshell.h"
#include "shell32_main.h"
#include "shlwapi.h"
#include "debugtools.h"
...
...
dlls/shell32/shellord.c
View file @
603f20fc
...
...
@@ -13,13 +13,14 @@
#include "winnls.h"
#include "heap.h"
#include "
shlwapi
.h"
#include "
wine/obj_base
.h"
#include "shellapi.h"
#include "shlguid.h"
#include "shlobj.h"
#include "shell32_main.h"
#include "undocshell.h"
#include "pidl.h"
#include "shlwapi.h"
DEFAULT_DEBUG_CHANNEL
(
shell
);
DECLARE_DEBUG_CHANNEL
(
pidl
);
...
...
dlls/shell32/shellpath.c
View file @
603f20fc
...
...
@@ -485,8 +485,8 @@ BOOL WINAPI PathYetAnotherMakeUniqueNameA(
BOOL
WINAPI
PathFindOnPathAW
(
LPVOID
sFile
,
LPCVOID
sOtherDirs
)
{
if
(
SHELL_OsIsUnicode
())
return
PathFindOnPathW
(
sFile
,
sOtherDirs
);
return
PathFindOnPathA
(
sFile
,
sOtherDirs
);
return
PathFindOnPathW
(
sFile
,
(
LPCWSTR
*
)
sOtherDirs
);
return
PathFindOnPathA
(
sFile
,
(
LPCSTR
*
)
sOtherDirs
);
}
/*************************************************************************
...
...
dlls/shell32/undocshell.h
View file @
603f20fc
...
...
@@ -584,10 +584,6 @@ BOOL WINAPI PathYetAnotherMakeUniqueNameA(
LPCSTR
lpszShortName
,
LPCSTR
lpszLongName
);
BOOL
WINAPI
PathFindOnPathAW
(
LPVOID
lpszFile
,
LPCVOID
alpszPaths
);
/* PathCleanupSpec return values */
#define PCS_REPLACEDCHARS 0x00000001
#define PCS_REMOVEDCHARS 0x00000002
...
...
dlls/shlwapi/ordinal.c
View file @
603f20fc
...
...
@@ -44,6 +44,30 @@ static DWORD id2[4] = {0x79eac9ee, 0x11cebaf9, 0xaa00828c, 0x0ba94b00};
/* The following schemes were identified in the native version of
* SHLWAPI.DLL version 5.50
*/
typedef
enum
{
URL_SCHEME_INVALID
=
-
1
,
URL_SCHEME_UNKNOWN
=
0
,
URL_SCHEME_FTP
,
URL_SCHEME_HTTP
,
URL_SCHEME_GOPHER
,
URL_SCHEME_MAILTO
,
URL_SCHEME_NEWS
,
URL_SCHEME_NNTP
,
URL_SCHEME_TELNET
,
URL_SCHEME_WAIS
,
URL_SCHEME_FILE
,
URL_SCHEME_MK
,
URL_SCHEME_HTTPS
,
URL_SCHEME_SHELL
,
URL_SCHEME_SNEWS
,
URL_SCHEME_LOCAL
,
URL_SCHEME_JAVASCRIPT
,
URL_SCHEME_VBSCRIPT
,
URL_SCHEME_ABOUT
,
URL_SCHEME_RES
,
URL_SCHEME_MAXVALUE
}
URL_SCHEME
;
typedef
struct
{
URL_SCHEME
scheme_number
;
LPCSTR
scheme_name
;
...
...
dlls/shlwapi/ordinal.h
View file @
603f20fc
/*
* Internal structures (read "undocumented") used by the
* Internal structures (read "undocumented") used by the
* ordinal entry points.
*
* Determined by experimentation.
...
...
@@ -11,7 +11,7 @@ typedef struct {
INT
sizep1
;
/* [out] size of scheme (until colon) */
LPCSTR
ap2
;
/* [out] pointer following first colon */
INT
sizep2
;
/* [out] size of remainder */
INT
fcncde
;
/* [out] function match of p1 (0 if unknown) */
INT
fcncde
;
/* [out] function match of p1 (0 if unknown) */
}
UNKNOWN_SHLWAPI_1
;
DWORD
WINAPI
SHLWAPI_1
(
LPCSTR
x
,
UNKNOWN_SHLWAPI_1
*
y
);
...
...
@@ -22,7 +22,8 @@ typedef struct {
INT
sizep1
;
/* [out] size of scheme (until colon) */
LPCWSTR
ap2
;
/* [out] pointer following first colon */
INT
sizep2
;
/* [out] size of remainder */
INT
fcncde
;
/* [out] function match of p1 (0 if unknown) */
INT
fcncde
;
/* [out] function match of p1 (0 if unknown) */
}
UNKNOWN_SHLWAPI_2
;
DWORD
WINAPI
SHLWAPI_2
(
LPCWSTR
x
,
UNKNOWN_SHLWAPI_2
*
y
);
dlls/shlwapi/path.c
View file @
603f20fc
...
...
@@ -4,6 +4,7 @@
#include <ctype.h>
#include <string.h>
#include <stdlib.h>
#include "winerror.h"
#include "wine/unicode.h"
...
...
@@ -11,6 +12,7 @@
#include "wingdi.h"
#include "winuser.h"
#include "winreg.h"
#define NO_SHLWAPI_STREAM
#include "shlwapi.h"
#include "debugtools.h"
#include "ordinal.h"
...
...
@@ -775,18 +777,18 @@ int WINAPI PathParseIconLocationW(LPWSTR lpszPath)
/*************************************************************************
* PathFindOnPathA [SHLWAPI.@]
*/
BOOL
WINAPI
PathFindOnPathA
(
LPSTR
sFile
,
LPCSTR
sOtherDirs
)
BOOL
WINAPI
PathFindOnPathA
(
LPSTR
sFile
,
LPCSTR
*
sOtherDirs
)
{
FIXME
(
"%s %
s
\n
"
,
sFile
,
sOtherDirs
);
FIXME
(
"%s %
p
\n
"
,
sFile
,
sOtherDirs
);
return
FALSE
;
}
/*************************************************************************
* PathFindOnPathW [SHLWAPI.@]
*/
BOOL
WINAPI
PathFindOnPathW
(
LPWSTR
sFile
,
LPCWSTR
sOtherDirs
)
BOOL
WINAPI
PathFindOnPathW
(
LPWSTR
sFile
,
LPCWSTR
*
sOtherDirs
)
{
FIXME
(
"%s %
s
\n
"
,
debugstr_w
(
sFile
),
debugstr_w
(
sOtherDirs
)
);
FIXME
(
"%s %
p
\n
"
,
debugstr_w
(
sFile
),
sOtherDirs
);
return
FALSE
;
}
...
...
dlls/shlwapi/reg.c
View file @
603f20fc
...
...
@@ -11,6 +11,7 @@
#include "winnls.h"
#include "winreg.h"
#include "debugtools.h"
#define NO_SHLWAPI_STREAM
#include "shlwapi.h"
#include "wine/unicode.h"
...
...
@@ -483,7 +484,7 @@ BOOL WINAPI SHRegGetBoolUSValueW(
/*************************************************************************
* SHRegQueryInfoUSKeyA [SHLWAPI.@]
*/
DWORD
WINAPI
SHRegQueryInfoUSKeyA
(
LONG
WINAPI
SHRegQueryInfoUSKeyA
(
HUSKEY
hUSKey
,
/* [in] */
LPDWORD
pcSubKeys
,
LPDWORD
pcchMaxSubKeyLen
,
...
...
@@ -522,7 +523,7 @@ DWORD WINAPI SHRegQueryInfoUSKeyA(
/*************************************************************************
* SHRegQueryInfoUSKeyW [SHLWAPI.@]
*/
DWORD
WINAPI
SHRegQueryInfoUSKeyW
(
LONG
WINAPI
SHRegQueryInfoUSKeyW
(
HUSKEY
hUSKey
,
/* [in] */
LPDWORD
pcSubKeys
,
LPDWORD
pcchMaxSubKeyLen
,
...
...
@@ -727,7 +728,7 @@ DWORD WINAPI SHGetValueW(
/*************************************************************************
* SHSetValueA [SHLWAPI.@]
*/
HRESULT
WINAPI
SHSetValueA
(
DWORD
WINAPI
SHSetValueA
(
HKEY
hkey
,
LPCSTR
pszSubKey
,
LPCSTR
pszValue
,
...
...
@@ -749,7 +750,7 @@ HRESULT WINAPI SHSetValueA(
/*************************************************************************
* SHSetValueW [SHLWAPI.@]
*/
HRESULT
WINAPI
SHSetValueW
(
DWORD
WINAPI
SHSetValueW
(
HKEY
hkey
,
LPCWSTR
pszSubKey
,
LPCWSTR
pszValue
,
...
...
@@ -772,9 +773,9 @@ HRESULT WINAPI SHSetValueW(
* SHQueryValueExA [SHLWAPI.@]
*
*/
HRESULT
WINAPI
SHQueryValueExA
(
DWORD
WINAPI
SHQueryValueExA
(
HKEY
hkey
,
LPSTR
lpValueName
,
LP
C
STR
lpValueName
,
LPDWORD
lpReserved
,
LPDWORD
lpType
,
LPBYTE
lpData
,
...
...
@@ -792,9 +793,9 @@ HRESULT WINAPI SHQueryValueExA(
* if the datatype REG_EXPAND_SZ then expand the string and change
* *pdwType to REG_SZ.
*/
HRESULT
WINAPI
SHQueryValueExW
(
DWORD
WINAPI
SHQueryValueExW
(
HKEY
hkey
,
LPWSTR
pszValue
,
LP
C
WSTR
pszValue
,
LPDWORD
pdwReserved
,
LPDWORD
pdwType
,
LPVOID
pvData
,
...
...
@@ -814,7 +815,7 @@ HRESULT WINAPI SHQueryValueExW (
* According to docs, Win9x RegDeleteKeyA will delete all subkeys, whereas
* WinNt/2k will only delete the key if empty.
*/
HRESULT
WINAPI
SHDeleteKeyA
(
DWORD
WINAPI
SHDeleteKeyA
(
HKEY
hKey
,
LPCSTR
lpszSubKey
)
{
...
...
@@ -880,7 +881,7 @@ HRESULT WINAPI SHDeleteKeyA(
* According to docs, Win9x RegDeleteKeyA will delete all subkeys, whereas
* WinNt/2k will only delete the key if empty.
*/
HRESULT
WINAPI
SHDeleteKeyW
(
DWORD
WINAPI
SHDeleteKeyW
(
HKEY
hkey
,
LPCWSTR
pszSubKey
)
{
...
...
@@ -893,9 +894,9 @@ HRESULT WINAPI SHDeleteKeyW(
*
* Function opens the key, get/set/delete the value, then close the key.
*/
HRESULT
WINAPI
SHDeleteValueA
(
HKEY
hkey
,
LPCSTR
pszSubKey
,
LPCSTR
pszValue
)
{
DWORD
WINAPI
SHDeleteValueA
(
HKEY
hkey
,
LPCSTR
pszSubKey
,
LPCSTR
pszValue
)
{
HKEY
subkey
;
HRESULT
hres
;
DWORD
hres
;
hres
=
RegOpenKeyA
(
hkey
,
pszSubKey
,
&
subkey
);
if
(
hres
)
...
...
@@ -910,9 +911,9 @@ HRESULT WINAPI SHDeleteValueA(HKEY hkey, LPCSTR pszSubKey, LPCSTR pszValue) {
*
* Function opens the key, get/set/delete the value, then close the key.
*/
HRESULT
WINAPI
SHDeleteValueW
(
HKEY
hkey
,
LPCWSTR
pszSubKey
,
LPCWSTR
pszValue
)
{
DWORD
WINAPI
SHDeleteValueW
(
HKEY
hkey
,
LPCWSTR
pszSubKey
,
LPCWSTR
pszValue
)
{
HKEY
subkey
;
HRESULT
hres
;
DWORD
hres
;
hres
=
RegOpenKeyW
(
hkey
,
pszSubKey
,
&
subkey
);
if
(
hres
)
...
...
dlls/shlwapi/shlwapi_main.c
View file @
603f20fc
...
...
@@ -9,6 +9,7 @@
#include "winerror.h"
#include "winreg.h"
#include "debugtools.h"
#define NO_SHLWAPI_STREAM
#include "shlwapi.h"
DEFAULT_DEBUG_CHANNEL
(
shell
);
...
...
dlls/shlwapi/string.c
View file @
603f20fc
...
...
@@ -9,6 +9,7 @@
#include "wingdi.h"
#include "winuser.h"
#include "winreg.h"
#define NO_SHLWAPI_STREAM
#include "shlwapi.h"
#include "shlobj.h"
#include "wine/unicode.h"
...
...
dlls/shlwapi/url.c
View file @
603f20fc
...
...
@@ -5,6 +5,7 @@
*/
#include <string.h>
#include <stdlib.h>
#include "windef.h"
#include "winnls.h"
#include "winbase.h"
...
...
@@ -12,6 +13,7 @@
#include "wine/unicode.h"
#include "wininet.h"
#include "winreg.h"
#define NO_SHLWAPI_STREAM
#include "shlwapi.h"
#include "debugtools.h"
#include "ordinal.h"
...
...
dlls/wininet/http.c
View file @
603f20fc
...
...
@@ -25,6 +25,7 @@
#include "wininet.h"
#include "winreg.h"
#include "winerror.h"
#define NO_SHLWAPI_STREAM
#include "shlwapi.h"
#include "internet.h"
...
...
dlls/wininet/internet.c
View file @
603f20fc
...
...
@@ -25,6 +25,7 @@
#include "wininet.h"
#include "debugtools.h"
#include "winerror.h"
#define NO_SHLWAPI_STREAM
#include "shlwapi.h"
#include "internet.h"
...
...
include/shlwapi.h
View file @
603f20fc
This diff is collapsed.
Click to expand it.
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