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
ede761b1
Commit
ede761b1
authored
Nov 01, 2016
by
Donat Enikeev
Committed by
Alexandre Julliard
Nov 03, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
secur32: AddSecurityPackage stub.
Signed-off-by:
Donat Enikeev
<
donat@enikeev.net
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
db003d4a
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
26 additions
and
2 deletions
+26
-2
secur32.c
dlls/secur32/secur32.c
+12
-0
secur32.spec
dlls/secur32/secur32.spec
+2
-2
sspi.h
include/sspi.h
+12
-0
No files found.
dlls/secur32/secur32.c
View file @
ede761b1
...
...
@@ -1057,6 +1057,18 @@ BOOLEAN WINAPI GetComputerObjectNameW(
return
status
;
}
SECURITY_STATUS
WINAPI
AddSecurityPackageA
(
LPSTR
name
,
SECURITY_PACKAGE_OPTIONS
*
options
)
{
FIXME
(
"(%s %p)
\n
"
,
debugstr_a
(
name
),
options
);
return
E_NOTIMPL
;
}
SECURITY_STATUS
WINAPI
AddSecurityPackageW
(
LPWSTR
name
,
SECURITY_PACKAGE_OPTIONS
*
options
)
{
FIXME
(
"(%s %p)
\n
"
,
debugstr_w
(
name
),
options
);
return
E_NOTIMPL
;
}
/***********************************************************************
* GetUserNameExA (SECUR32.@)
*/
...
...
dlls/secur32/secur32.spec
View file @
ede761b1
...
...
@@ -6,8 +6,8 @@
@ stdcall AcquireCredentialsHandleW(wstr wstr long ptr ptr ptr ptr ptr ptr)
@ stdcall AddCredentialsA(ptr str str long ptr ptr ptr ptr)
@ stdcall AddCredentialsW(ptr wstr wstr long ptr ptr ptr ptr)
@ st
ub AddSecurityPackageA
@ st
ub AddSecurityPackageW
@ st
dcall AddSecurityPackageA(str ptr)
@ st
dcall AddSecurityPackageW(wstr ptr)
@ stdcall ApplyControlToken(ptr ptr)
@ stdcall CompleteAuthToken(ptr ptr)
@ stdcall DecryptMessage(ptr ptr long ptr)
...
...
include/sspi.h
View file @
ede761b1
...
...
@@ -130,6 +130,18 @@ typedef struct _SecPkgInfoW
SEC_WCHAR
*
Comment
;
}
SecPkgInfoW
,
*
PSecPkgInfoW
;
typedef
struct
_SECURITY_PACKAGE_OPTIONS
{
ULONG
Size
;
ULONG
Type
;
ULONG
Flags
;
ULONG
SignatureSize
;
void
*
Signature
;
}
SECURITY_PACKAGE_OPTIONS
,
*
PSECURITY_PACKAGE_OPTIONS
;
SECURITY_STATUS
WINAPI
AddSecurityPackageA
(
LPSTR
,
SECURITY_PACKAGE_OPTIONS
*
);
SECURITY_STATUS
WINAPI
AddSecurityPackageW
(
LPWSTR
,
SECURITY_PACKAGE_OPTIONS
*
);
#define AddSecurityPackage WINELIB_NAME_AW(AddSecurityPackage)
#define SecPkgInfo WINELIB_NAME_AW(SecPkgInfo)
#define PSecPkgInfo WINELIB_NAME_AW(PSecPkgInfo)
...
...
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