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
3143f67b
Commit
3143f67b
authored
Oct 15, 1998
by
Marcus Meissner
Committed by
Alexandre Julliard
Oct 15, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added missing WINAPIs.
parent
2c205915
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
14 deletions
+14
-14
pidl.c
dlls/shell32/pidl.c
+14
-14
No files found.
dlls/shell32/pidl.c
View file @
3143f67b
...
@@ -801,13 +801,13 @@ LPSTR WINAPI _ILGetTextPointer(PIDLTYPE type, LPPIDLDATA pidldata)
...
@@ -801,13 +801,13 @@ LPSTR WINAPI _ILGetTextPointer(PIDLTYPE type, LPPIDLDATA pidldata)
* IDLList "Item ID List List"
* IDLList "Item ID List List"
*
*
*/
*/
static
UINT32
IDLList_GetState
(
LPIDLLIST
this
);
static
UINT32
WINAPI
IDLList_GetState
(
LPIDLLIST
this
);
static
LPITEMIDLIST
IDLList_GetElement
(
LPIDLLIST
this
,
UINT32
nIndex
);
static
LPITEMIDLIST
WINAPI
IDLList_GetElement
(
LPIDLLIST
this
,
UINT32
nIndex
);
static
UINT32
IDLList_GetCount
(
LPIDLLIST
this
);
static
UINT32
WINAPI
IDLList_GetCount
(
LPIDLLIST
this
);
static
BOOL32
IDLList_StoreItem
(
LPIDLLIST
this
,
LPITEMIDLIST
pidl
);
static
BOOL32
WINAPI
IDLList_StoreItem
(
LPIDLLIST
this
,
LPITEMIDLIST
pidl
);
static
BOOL32
IDLList_AddItems
(
LPIDLLIST
this
,
LPITEMIDLIST
*
apidl
,
UINT32
cidl
);
static
BOOL32
WINAPI
IDLList_AddItems
(
LPIDLLIST
this
,
LPITEMIDLIST
*
apidl
,
UINT32
cidl
);
static
BOOL32
IDLList_InitList
(
LPIDLLIST
this
);
static
BOOL32
WINAPI
IDLList_InitList
(
LPIDLLIST
this
);
static
void
IDLList_CleanList
(
LPIDLLIST
this
);
static
void
WINAPI
IDLList_CleanList
(
LPIDLLIST
this
);
static
IDLList_VTable
idllvt
=
static
IDLList_VTable
idllvt
=
{
IDLList_GetState
,
{
IDLList_GetState
,
...
@@ -836,7 +836,7 @@ void IDLList_Destructor(LPIDLLIST this)
...
@@ -836,7 +836,7 @@ void IDLList_Destructor(LPIDLLIST this)
IDLList_CleanList
(
this
);
IDLList_CleanList
(
this
);
}
}
static
UINT32
IDLList_GetState
(
LPIDLLIST
this
)
static
UINT32
WINAPI
IDLList_GetState
(
LPIDLLIST
this
)
{
TRACE
(
shell
,
"(%p)->(uStep=%u dpa=%p)
\n
"
,
this
,
this
->
uStep
,
this
->
dpa
);
{
TRACE
(
shell
,
"(%p)->(uStep=%u dpa=%p)
\n
"
,
this
,
this
->
uStep
,
this
->
dpa
);
if
(
this
->
uStep
==
0
)
if
(
this
->
uStep
==
0
)
...
@@ -846,15 +846,15 @@ static UINT32 IDLList_GetState(LPIDLLIST this)
...
@@ -846,15 +846,15 @@ static UINT32 IDLList_GetState(LPIDLLIST this)
}
}
return
(
State_UnInit
);
return
(
State_UnInit
);
}
}
static
LPITEMIDLIST
IDLList_GetElement
(
LPIDLLIST
this
,
UINT32
nIndex
)
static
LPITEMIDLIST
WINAPI
IDLList_GetElement
(
LPIDLLIST
this
,
UINT32
nIndex
)
{
TRACE
(
shell
,
"(%p)->(index=%u)
\n
"
,
this
,
nIndex
);
{
TRACE
(
shell
,
"(%p)->(index=%u)
\n
"
,
this
,
nIndex
);
return
((
LPITEMIDLIST
)
DPA_GetPtr
(
this
->
dpa
,
nIndex
));
return
((
LPITEMIDLIST
)
DPA_GetPtr
(
this
->
dpa
,
nIndex
));
}
}
static
UINT32
IDLList_GetCount
(
LPIDLLIST
this
)
static
UINT32
WINAPI
IDLList_GetCount
(
LPIDLLIST
this
)
{
TRACE
(
shell
,
"(%p)
\n
"
,
this
);
{
TRACE
(
shell
,
"(%p)
\n
"
,
this
);
return
(
IDLList_GetState
(
this
)
==
State_Init
?
DPA_GetPtrCount
(
this
->
dpa
)
:
0
);
return
(
IDLList_GetState
(
this
)
==
State_Init
?
DPA_GetPtrCount
(
this
->
dpa
)
:
0
);
}
}
static
BOOL32
IDLList_StoreItem
(
LPIDLLIST
this
,
LPITEMIDLIST
pidl
)
static
BOOL32
WINAPI
IDLList_StoreItem
(
LPIDLLIST
this
,
LPITEMIDLIST
pidl
)
{
TRACE
(
shell
,
"(%p)->(pidl=%p)
\n
"
,
this
,
pidl
);
{
TRACE
(
shell
,
"(%p)->(pidl=%p)
\n
"
,
this
,
pidl
);
if
(
pidl
)
if
(
pidl
)
{
if
(
IDLList_InitList
(
this
)
&&
DPA_InsertPtr
(
this
->
dpa
,
0x7fff
,
(
LPSTR
)
pidl
)
>=
0
)
{
if
(
IDLList_InitList
(
this
)
&&
DPA_InsertPtr
(
this
->
dpa
,
0x7fff
,
(
LPSTR
)
pidl
)
>=
0
)
...
@@ -864,7 +864,7 @@ static BOOL32 IDLList_StoreItem(LPIDLLIST this, LPITEMIDLIST pidl)
...
@@ -864,7 +864,7 @@ static BOOL32 IDLList_StoreItem(LPIDLLIST this, LPITEMIDLIST pidl)
IDLList_CleanList
(
this
);
IDLList_CleanList
(
this
);
return
(
FALSE
);
return
(
FALSE
);
}
}
static
BOOL32
IDLList_AddItems
(
LPIDLLIST
this
,
LPITEMIDLIST
*
apidl
,
UINT32
cidl
)
static
BOOL32
WINAPI
IDLList_AddItems
(
LPIDLLIST
this
,
LPITEMIDLIST
*
apidl
,
UINT32
cidl
)
{
INT32
i
;
{
INT32
i
;
TRACE
(
shell
,
"(%p)->(apidl=%p cidl=%u)
\n
"
,
this
,
apidl
,
cidl
);
TRACE
(
shell
,
"(%p)->(apidl=%p cidl=%u)
\n
"
,
this
,
apidl
,
cidl
);
...
@@ -874,7 +874,7 @@ static BOOL32 IDLList_AddItems(LPIDLLIST this, LPITEMIDLIST *apidl, UINT32 cidl)
...
@@ -874,7 +874,7 @@ static BOOL32 IDLList_AddItems(LPIDLLIST this, LPITEMIDLIST *apidl, UINT32 cidl)
}
}
return
(
TRUE
);
return
(
TRUE
);
}
}
static
BOOL32
IDLList_InitList
(
LPIDLLIST
this
)
static
BOOL32
WINAPI
IDLList_InitList
(
LPIDLLIST
this
)
{
TRACE
(
shell
,
"(%p)
\n
"
,
this
);
{
TRACE
(
shell
,
"(%p)
\n
"
,
this
);
switch
(
IDLList_GetState
(
this
))
switch
(
IDLList_GetState
(
this
))
{
case
State_Init
:
{
case
State_Init
:
...
@@ -890,7 +890,7 @@ static BOOL32 IDLList_InitList(LPIDLLIST this)
...
@@ -890,7 +890,7 @@ static BOOL32 IDLList_InitList(LPIDLLIST this)
return
(
IDLList_InitList
(
this
));
return
(
IDLList_InitList
(
this
));
}
}
}
}
static
void
IDLList_CleanList
(
LPIDLLIST
this
)
static
void
WINAPI
IDLList_CleanList
(
LPIDLLIST
this
)
{
INT32
i
;
{
INT32
i
;
TRACE
(
shell
,
"(%p)
\n
"
,
this
);
TRACE
(
shell
,
"(%p)
\n
"
,
this
);
...
...
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