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
8838dcb4
Commit
8838dcb4
authored
Jan 24, 2009
by
Andrew Talbot
Committed by
Alexandre Julliard
Jan 26, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Declare some functions static.
parent
f4eb3653
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
6 deletions
+6
-6
pidl.c
dlls/shell32/pidl.c
+5
-2
pidl.h
dlls/shell32/pidl.h
+0
-2
xdg.c
dlls/shell32/xdg.c
+1
-1
xdg.h
dlls/shell32/xdg.h
+0
-1
No files found.
dlls/shell32/pidl.c
View file @
8838dcb4
...
...
@@ -55,6 +55,9 @@ WINE_DECLARE_DEBUG_CHANNEL(shell);
extern
LPVOID
WINAPI
Alloc
(
INT
);
extern
BOOL
WINAPI
Free
(
LPVOID
);
static
LPSTR
_ILGetSTextPointer
(
LPCITEMIDLIST
pidl
);
static
LPWSTR
_ILGetTextPointerW
(
LPCITEMIDLIST
pidl
);
/*************************************************************************
* ILGetDisplayNameEx [SHELL32.186]
*
...
...
@@ -1901,7 +1904,7 @@ LPPIDLDATA _ILGetDataPointer(LPCITEMIDLIST pidl)
* _ILGetTextPointerW()
* gets a pointer to the unicode long filename string stored in the pidl
*/
LPWSTR
_ILGetTextPointerW
(
LPCITEMIDLIST
pidl
)
static
LPWSTR
_ILGetTextPointerW
(
LPCITEMIDLIST
pidl
)
{
/* TRACE(pidl,"(pidl%p)\n", pidl);*/
...
...
@@ -1994,7 +1997,7 @@ LPSTR _ILGetTextPointer(LPCITEMIDLIST pidl)
* _ILGetSTextPointer()
* gets a pointer to the short filename string stored in the pidl
*/
LPSTR
_ILGetSTextPointer
(
LPCITEMIDLIST
pidl
)
static
LPSTR
_ILGetSTextPointer
(
LPCITEMIDLIST
pidl
)
{
/* TRACE(pidl,"(pidl%p)\n", pidl); */
...
...
dlls/shell32/pidl.h
View file @
8838dcb4
...
...
@@ -254,8 +254,6 @@ LPITEMIDLIST _ILCreateEntireNetwork (void);
*/
LPPIDLDATA
_ILGetDataPointer
(
LPCITEMIDLIST
);
LPSTR
_ILGetTextPointer
(
LPCITEMIDLIST
);
LPWSTR
_ILGetTextPointerW
(
LPCITEMIDLIST
);
LPSTR
_ILGetSTextPointer
(
LPCITEMIDLIST
);
IID
*
_ILGetGUIDPointer
(
LPCITEMIDLIST
pidl
);
FileStructW
*
_ILGetFileStructW
(
LPCITEMIDLIST
pidl
);
...
...
dlls/shell32/xdg.c
View file @
8838dcb4
...
...
@@ -159,7 +159,7 @@ static char *load_path(int path_id)
*
* The paths are guaranteed to start with '/'
*/
const
char
*
XDG_GetPath
(
int
path_id
)
static
const
char
*
XDG_GetPath
(
int
path_id
)
{
if
(
path_id
>=
PATHS_COUNT
||
path_id
<
0
)
{
...
...
dlls/shell32/xdg.h
View file @
8838dcb4
...
...
@@ -25,7 +25,6 @@
#define XDG_CONFIG_DIRS 3
#define XDG_CACHE_HOME 4
const
char
*
XDG_GetPath
(
int
path_id
);
char
*
XDG_BuildPath
(
int
root_id
,
const
char
*
subpath
);
int
XDG_MakeDirs
(
const
char
*
path
);
...
...
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