Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
352cddae
Commit
352cddae
authored
Apr 07, 2004
by
Kevin Koltzau
Committed by
Alexandre Julliard
Apr 07, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implement CheckThemeSignature.
parent
ffca0d61
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
1 deletion
+21
-1
system.c
dlls/uxtheme/system.c
+20
-0
uxtheme.spec
dlls/uxtheme/uxtheme.spec
+1
-1
No files found.
dlls/uxtheme/system.c
View file @
352cddae
...
...
@@ -780,3 +780,23 @@ HRESULT WINAPI ParseThemeIniFile(LPCWSTR pszIniFileName, LPWSTR pszUnknown,
FIXME
(
"%s %s: stub
\n
"
,
debugstr_w
(
pszIniFileName
),
debugstr_w
(
pszUnknown
));
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
/**********************************************************************
* CheckThemeSignature (UXTHEME.29)
*
* Validates the signature of a theme file
*
* PARAMS
* pszIniFileName Path to a theme file
*/
HRESULT
WINAPI
CheckThemeSignature
(
LPCWSTR
pszThemeFileName
)
{
PTHEME_FILE
pt
;
HRESULT
hr
;
TRACE
(
"(%s)
\n
"
,
debugstr_w
(
pszThemeFileName
));
hr
=
MSSTYLES_OpenThemeFile
(
pszThemeFileName
,
NULL
,
NULL
,
&
pt
);
if
(
FAILED
(
hr
))
return
hr
;
MSSTYLES_CloseThemeFile
(
pt
);
return
S_OK
;
}
dlls/uxtheme/uxtheme.spec
View file @
352cddae
...
...
@@ -24,7 +24,7 @@
26 stub -noname GetNewChangeNumber
27 stub -noname SetGlobalTheme
28 stub -noname GetGlobalTheme
29 st
ub -noname CheckThemeSignature
29 st
dcall -noname CheckThemeSignature(wstr)
30 stub -noname LoadTheme
31 stub -noname InitUserTheme
32 stub -noname InitUserRegistry
...
...
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