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
7392162e
Commit
7392162e
authored
Jan 28, 2009
by
Aric Stewart
Committed by
Alexandre Julliard
Jan 29, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
setupapi: Implement pSetupInstallCatalog.
parent
648094f1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
2 deletions
+21
-2
misc.c
dlls/setupapi/misc.c
+21
-2
No files found.
dlls/setupapi/misc.c
View file @
7392162e
...
...
@@ -1127,8 +1127,27 @@ DWORD WINAPI InstallCatalog( LPCSTR catalog, LPCSTR basename, LPSTR fullname )
*/
DWORD
WINAPI
pSetupInstallCatalog
(
LPCWSTR
catalog
,
LPCWSTR
basename
,
LPWSTR
fullname
)
{
FIXME
(
"%s, %s, %p
\n
"
,
debugstr_w
(
catalog
),
debugstr_w
(
basename
),
fullname
);
return
0
;
HCATADMIN
admin
;
HCATINFO
cat
;
TRACE
(
"%s, %s, %p
\n
"
,
debugstr_w
(
catalog
),
debugstr_w
(
basename
),
fullname
);
if
(
!
CryptCATAdminAcquireContext
(
&
admin
,
NULL
,
0
))
return
GetLastError
();
if
(
!
(
cat
=
CryptCATAdminAddCatalog
(
admin
,
(
PWSTR
)
catalog
,
(
PWSTR
)
basename
,
0
)))
{
DWORD
rc
=
GetLastError
();
CryptCATAdminReleaseContext
(
admin
,
0
);
return
rc
;
}
CryptCATAdminReleaseCatalogContext
(
admin
,
cat
,
0
);
CryptCATAdminReleaseContext
(
admin
,
0
);
if
(
fullname
)
FIXME
(
"not returning full installed catalog path
\n
"
);
return
NO_ERROR
;
}
static
UINT
detect_compression_type
(
LPCWSTR
file
)
...
...
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