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
0d8776fa
Commit
0d8776fa
authored
Apr 17, 2013
by
Christian Costa
Committed by
Alexandre Julliard
Apr 18, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advapi32: Specify the function is a stub in some FIXME.
parent
1b4f3ca6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
security.c
dlls/advapi32/security.c
+4
-4
No files found.
dlls/advapi32/security.c
View file @
0d8776fa
...
...
@@ -5671,7 +5671,7 @@ DWORD WINAPI GetNamedSecurityInfoExA( LPCSTR object, SE_OBJECT_TYPE type,
*/
BOOL
WINAPI
DecryptFileW
(
LPCWSTR
lpFileName
,
DWORD
dwReserved
)
{
FIXME
(
"
%s %08x
\n
"
,
debugstr_w
(
lpFileName
),
dwReserved
);
FIXME
(
"
(%s, %08x): stub
\n
"
,
debugstr_w
(
lpFileName
),
dwReserved
);
return
TRUE
;
}
...
...
@@ -5680,7 +5680,7 @@ BOOL WINAPI DecryptFileW(LPCWSTR lpFileName, DWORD dwReserved)
*/
BOOL
WINAPI
DecryptFileA
(
LPCSTR
lpFileName
,
DWORD
dwReserved
)
{
FIXME
(
"
%s %08x
\n
"
,
debugstr_a
(
lpFileName
),
dwReserved
);
FIXME
(
"
(%s, %08x): stub
\n
"
,
debugstr_a
(
lpFileName
),
dwReserved
);
return
TRUE
;
}
...
...
@@ -5689,7 +5689,7 @@ BOOL WINAPI DecryptFileA(LPCSTR lpFileName, DWORD dwReserved)
*/
BOOL
WINAPI
EncryptFileW
(
LPCWSTR
lpFileName
)
{
FIXME
(
"
%s
\n
"
,
debugstr_w
(
lpFileName
));
FIXME
(
"
(%s): stub
\n
"
,
debugstr_w
(
lpFileName
));
return
TRUE
;
}
...
...
@@ -5698,7 +5698,7 @@ BOOL WINAPI EncryptFileW(LPCWSTR lpFileName)
*/
BOOL
WINAPI
EncryptFileA
(
LPCSTR
lpFileName
)
{
FIXME
(
"
%s
\n
"
,
debugstr_a
(
lpFileName
));
FIXME
(
"
(%s): stub
\n
"
,
debugstr_a
(
lpFileName
));
return
TRUE
;
}
...
...
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