Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-fonts
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
Aleksandr Isakov
wine-fonts
Commits
bce5f731
Commit
bce5f731
authored
May 15, 2009
by
Francois Gouget
Committed by
Alexandre Julliard
May 15, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
setupapi: VcpFlush() and vsmString{Compare,Find}() are unused so remove them.
parent
b7295455
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
33 deletions
+0
-33
setupx16.h
dlls/setupapi/setupx16.h
+0
-1
virtcopy.c
dlls/setupapi/virtcopy.c
+0
-32
No files found.
dlls/setupapi/setupx16.h
View file @
bce5f731
...
...
@@ -382,7 +382,6 @@ RETERR16 WINAPI VcpQueueCopy16(
LPEXPANDVTBL
lpExpandVtbl
,
WORD
fl
,
LPARAM
lParam
);
RETERR16
VcpFlush16
(
WORD
fl
,
LPCSTR
lpszBackupDest
);
RETERR16
WINAPI
VcpClose16
(
WORD
fl
,
LPCSTR
lpszBackupDest
);
/* VcpExplain flags */
...
...
dlls/setupapi/virtcopy.c
View file @
bce5f731
...
...
@@ -161,18 +161,6 @@ INT16 WINAPI vsmStringDelete16(VHSTR vhstr)
return
VCPN_FAIL
;
}
/*
* vsmStringFind() - not exported from a standard SETUPX.DLL, it seems
*/
VHSTR
WINAPI
vsmStringFind16
(
LPCSTR
lpszName
)
{
WORD
n
;
for
(
n
=
0
;
n
<
vhstr_alloc
;
n
++
)
if
((
vhstrlist
[
n
])
&&
(
vhstrlist
[
n
]
->
refcount
)
&&
(
!
strcmp
(
vhstrlist
[
n
]
->
pStr
,
lpszName
)))
return
n
;
return
0xffff
;
}
/***********************************************************************
* vsmGetStringName (SETUPX.205)
*
...
...
@@ -194,16 +182,6 @@ INT16 WINAPI vsmGetStringName16(VHSTR vhstr, LPSTR lpszBuffer, int cbBuffer)
}
/***********************************************************************
* vsmStringCompare (not exported from a standard SETUPX.DLL, it seems)
*/
INT16
WINAPI
vsmStringCompare16
(
VHSTR
vhstrA
,
VHSTR
vhstrB
)
{
if
((
!
VALID_VHSTR
(
vhstrA
))
||
(
!
VALID_VHSTR
(
vhstrB
)))
return
VCPN_FAIL
;
/* correct ? */
return
strcmp
(
vhstrlist
[
vhstrA
]
->
pStr
,
vhstrlist
[
vhstrB
]
->
pStr
);
}
/***********************************************************************
* vsmGetStringRawName (SETUPX.208)
*/
LPCSTR
WINAPI
vsmGetStringRawName16
(
VHSTR
vhstr
)
...
...
@@ -485,16 +463,6 @@ static RETERR16 VCP_CopyFiles(void)
}
/***********************************************************************
* VcpFlush - internal (not exported), but documented
*
* VNFL_NOW is used for VcpFlush.
*/
RETERR16
VcpFlush16
(
WORD
fl
,
LPCSTR
lpszBackupDest
)
{
return
OK
;
}
/***********************************************************************
* VcpClose (SETUPX.201)
*
* Does callbacks (-> vifproc) with VCPM_VSTATCLOSESTART,
...
...
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