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
2fa7055c
Commit
2fa7055c
authored
Jul 22, 2003
by
Jon Griffiths
Committed by
Alexandre Julliard
Jul 22, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix MSVC warnings.
parent
12e701c3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
5 deletions
+3
-5
clist.c
dlls/shlwapi/clist.c
+3
-5
No files found.
dlls/shlwapi/clist.c
View file @
2fa7055c
...
...
@@ -19,9 +19,7 @@
*/
#include <string.h>
#include "windef.h"
#include "winbase.h"
#include "winuser.h"
#include "objbase.h"
#include "wine/debug.h"
...
...
@@ -31,14 +29,14 @@ WINE_DEFAULT_DEBUG_CHANNEL(shell);
typedef
struct
tagSHLWAPI_CLIST
{
ULONG
ulSize
;
/* Size of this list element and its data */
ULONG
ulId
;
/* If
-1
, The real element follows */
ULONG
ulId
;
/* If
0xFFFFFFFF
, The real element follows */
/* Item data (or a contained SHLWAPI_CLIST) follows... */
}
SHLWAPI_CLIST
,
*
LPSHLWAPI_CLIST
;
typedef
const
SHLWAPI_CLIST
*
LPCSHLWAPI_CLIST
;
/* ulId for contained SHLWAPI_CLIST items */
static
const
ULONG
CLIST_ID_CONTAINER
=
-
1u
;
#define CLIST_ID_CONTAINER (~0UL)
HRESULT
WINAPI
SHLWAPI_20
(
LPSHLWAPI_CLIST
*
,
LPCSHLWAPI_CLIST
);
...
...
@@ -91,7 +89,7 @@ inline static LPSHLWAPI_CLIST NextItem(LPCSHLWAPI_CLIST lpList)
*
* Elements are aligned on DWORD boundaries. If an elements data size is not
* a DWORD size multiple, the element is wrapped by inserting a surrounding
* element with an Id of
-1
, and size sufficient to pad to a DWORD boundary.
* element with an Id of
0xFFFFFFFF
, and size sufficient to pad to a DWORD boundary.
*
* These functions are slow for large objects and long lists.
*/
...
...
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