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
1a7efafb
Commit
1a7efafb
authored
Dec 06, 2022
by
Alex Henrie
Committed by
Alexandre Julliard
Dec 07, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Annotate ILC* functions with __WINE_(DEALLOC|MALLOC).
parent
dfb025c3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
shlobj.h
include/shlobj.h
+7
-7
No files found.
include/shlobj.h
View file @
1a7efafb
...
...
@@ -1914,17 +1914,17 @@ WINSHELLAPI HRESULT WINAPI SHDoDragDrop(HWND,IDataObject*,IDropSource*,DWOR
#define PID_IS_DESCRIPTION 12
#define PID_IS_COMMENT 13
WINSHELLAPI
void
WINAPI
ILFree
(
ITEMIDLIST
*
);
WINSHELLAPI
ITEMIDLIST
*
WINAPI
ILClone
(
const
ITEMIDLIST
*
)
__WINE_DEALLOC
(
ILFree
)
__WINE_MALLOC
;
WINSHELLAPI
ITEMIDLIST
*
WINAPI
ILCloneFirst
(
const
ITEMIDLIST
*
)
__WINE_DEALLOC
(
ILFree
)
__WINE_MALLOC
;
WINSHELLAPI
ITEMIDLIST
*
WINAPI
ILCreateFromPathA
(
const
char
*
)
__WINE_DEALLOC
(
ILFree
)
__WINE_MALLOC
;
WINSHELLAPI
ITEMIDLIST
*
WINAPI
ILCreateFromPathW
(
const
WCHAR
*
)
__WINE_DEALLOC
(
ILFree
)
__WINE_MALLOC
;
#define ILCreateFromPath WINELIB_NAME_AW(ILCreateFromPath)
WINSHELLAPI
ITEMIDLIST
*
WINAPI
ILCombine
(
const
ITEMIDLIST
*
,
const
ITEMIDLIST
*
)
__WINE_DEALLOC
(
ILFree
)
__WINE_MALLOC
;
WINSHELLAPI
LPITEMIDLIST
WINAPI
ILAppendID
(
LPITEMIDLIST
,
LPCSHITEMID
,
BOOL
);
WINSHELLAPI
LPITEMIDLIST
WINAPI
ILClone
(
LPCITEMIDLIST
);
WINSHELLAPI
LPITEMIDLIST
WINAPI
ILCloneFirst
(
LPCITEMIDLIST
);
WINSHELLAPI
LPITEMIDLIST
WINAPI
ILCreateFromPathA
(
LPCSTR
);
WINSHELLAPI
LPITEMIDLIST
WINAPI
ILCreateFromPathW
(
LPCWSTR
);
#define ILCreateFromPath WINELIB_NAME_AW(ILCreateFromPath)
WINSHELLAPI
LPITEMIDLIST
WINAPI
ILCombine
(
LPCITEMIDLIST
,
LPCITEMIDLIST
);
WINSHELLAPI
LPITEMIDLIST
WINAPI
ILFindChild
(
LPCITEMIDLIST
,
LPCITEMIDLIST
);
WINSHELLAPI
LPITEMIDLIST
WINAPI
ILFindLastID
(
LPCITEMIDLIST
);
WINSHELLAPI
void
WINAPI
ILFree
(
LPITEMIDLIST
);
WINSHELLAPI
LPITEMIDLIST
WINAPI
ILGetNext
(
LPCITEMIDLIST
);
WINSHELLAPI
UINT
WINAPI
ILGetSize
(
LPCITEMIDLIST
);
WINSHELLAPI
BOOL
WINAPI
ILIsEqual
(
LPCITEMIDLIST
,
LPCITEMIDLIST
);
...
...
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