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
213f645a
Commit
213f645a
authored
Mar 13, 2007
by
Rob Shearman
Committed by
Alexandre Julliard
Mar 13, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Add credential serialisation APIs to wincred.h.
parent
13a04ac0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
97 additions
and
0 deletions
+97
-0
wincred.h
include/wincred.h
+97
-0
No files found.
include/wincred.h
View file @
213f645a
...
...
@@ -35,6 +35,60 @@ typedef struct _SecHandle
typedef
SecHandle
CtxtHandle
;
typedef
PSecHandle
PCtxtHandle
;
typedef
struct
_CREDENTIAL_ATTRIBUTEA
{
LPSTR
Keyword
;
DWORD
Flags
;
DWORD
ValueSize
;
LPBYTE
Value
;
}
CREDENTIAL_ATTRIBUTEA
,
*
PCREDENTIAL_ATTRIBUTEA
;
typedef
struct
_CREDENTIAL_ATTRIBUTEW
{
LPWSTR
Keyword
;
DWORD
Flags
;
DWORD
ValueSize
;
LPBYTE
Value
;
}
CREDENTIAL_ATTRIBUTEW
,
*
PCREDENTIAL_ATTRIBUTEW
;
DECL_WINELIB_TYPE_AW
(
CREDENTIAL_ATTRIBUTE
)
DECL_WINELIB_TYPE_AW
(
PCREDENTIAL_ATTRIBUTE
)
typedef
struct
_CREDENTIALA
{
DWORD
Flags
;
DWORD
Type
;
LPSTR
TargetName
;
LPSTR
Comment
;
FILETIME
LastWritten
;
DWORD
CredentialBlobSize
;
LPBYTE
CredentialBlob
;
DWORD
Persist
;
DWORD
AttributeCount
;
PCREDENTIAL_ATTRIBUTEA
Attribute
;
LPSTR
TargetAlias
;
LPSTR
UserName
;
}
CREDENTIALA
,
*
PCREDENTIALA
;
typedef
struct
_CREDENTIALW
{
DWORD
Flags
;
DWORD
Type
;
LPWSTR
TargetName
;
LPWSTR
Comment
;
FILETIME
LastWritten
;
DWORD
CredentialBlobSize
;
LPBYTE
CredentialBlob
;
DWORD
Persist
;
DWORD
AttributeCount
;
PCREDENTIAL_ATTRIBUTEW
Attribute
;
LPWSTR
TargetAlias
;
LPWSTR
UserName
;
}
CREDENTIALW
,
*
PCREDENTIALW
;
DECL_WINELIB_TYPE_AW
(
CREDENTIAL
)
DECL_WINELIB_TYPE_AW
(
PCREDENTIAL
)
typedef
struct
_CREDUI_INFOA
{
DWORD
cbSize
;
...
...
@@ -53,6 +107,9 @@ typedef struct _CREDUI_INFOW
HBITMAP
hbmBanner
;
}
CREDUI_INFOW
,
*
PCREDUI_INFOW
;
DECL_WINELIB_TYPE_AW
(
CREDUI_INFO
)
DECL_WINELIB_TYPE_AW
(
PCREDUI_INFO
)
#define CRED_MAX_STRING_LENGTH 256
#define CRED_MAX_USERNAME_LENGTH 513
#define CRED_MAX_GENERIC_TARGET_NAME_LENGTH 32767
...
...
@@ -69,6 +126,26 @@ typedef struct _CREDUI_INFOW
#define CREDUI_MAX_USERNAME_LENGTH CRED_MAX_USERNAME_LENGTH
#define CREDUI_MAX_PASSWORD_LENGTH (CRED_MAX_CREDENTIAL_BLOB_SIZE / 2)
/* flags for CREDENTIAL::Flags */
#define CRED_FLAGS_PASSWORD_FOR_CERT 0x0001
#define CRED_FLAGS_PROMPT_NOW 0x0002
#define CRED_FLAGS_USERNAME_TARGET 0x0004
#define CRED_FLAGS_OWF_CRED_BLOB 0x0008
#define CRED_FLAGS_VALID_FLAGS 0x000f
/* values for CREDENTIAL::Type */
#define CRED_TYPE_GENERIC 1
#define CRED_TYPE_DOMAIN_PASSWORD 2
#define CRED_TYPE_DOMAIN_CERTIFICATE 3
#define CRED_TYPE_DOMAIN_VISIBLE_PASSWORD 4
#define CRED_TYPE_MAXIMUM 5
/* values for CREDENTIAL::Persist */
#define CRED_PERSIST_NONE 0
#define CRED_PERSIST_SESSION 1
#define CRED_PERSIST_LOCAL_MACHINE 2
#define CRED_PERSIST_ENTERPRISE 3
#define CREDUI_FLAGS_INCORRECT_PASSWORD 0x00000001
#define CREDUI_FLAGS_DO_NOT_PERSIST 0x00000002
#define CREDUI_FLAGS_REQUEST_ADMINISTRATOR 0x00000004
...
...
@@ -87,6 +164,26 @@ typedef struct _CREDUI_INFOW
#define CREDUI_FLAGS_USERNAME_TARGET_CREDENTIALS 0x00080000
#define CREDUI_FLAGS_KEEP_USERNAME 0x00100000
/* flags for CredWrite and CredWriteDomainCredentials */
#define CRED_PRESERVE_CREDENTIAL_BLOB 0x00000001
BOOL
WINAPI
CredDeleteA
(
LPCSTR
,
DWORD
,
DWORD
);
BOOL
WINAPI
CredDeleteW
(
LPCWSTR
,
DWORD
,
DWORD
);
#define CredDelete WINELIB_NAME_AW(CredDelete)
BOOL
WINAPI
CredEnumerateA
(
LPCSTR
,
DWORD
,
DWORD
*
,
PCREDENTIALA
**
);
BOOL
WINAPI
CredEnumerateW
(
LPCWSTR
,
DWORD
,
DWORD
*
,
PCREDENTIALW
**
);
#define CredEnumerate WINELIB_NAME_AW(CredEnumerate)
VOID
WINAPI
CredFree
(
PVOID
);
BOOL
WINAPI
CredReadA
(
LPCSTR
,
DWORD
,
DWORD
,
PCREDENTIALA
*
);
BOOL
WINAPI
CredReadW
(
LPCWSTR
,
DWORD
,
DWORD
,
PCREDENTIALW
*
);
#define CredRead WINELIB_NAME_AW(CredRead)
BOOL
WINAPI
CredRenameA
(
LPCSTR
,
LPCSTR
,
DWORD
,
DWORD
);
BOOL
WINAPI
CredRenameW
(
LPCWSTR
,
LPCWSTR
,
DWORD
,
DWORD
);
#define CredRename WINELIB_NAME_AW(CredRename)
BOOL
WINAPI
CredWriteA
(
PCREDENTIALA
,
DWORD
);
BOOL
WINAPI
CredWriteW
(
PCREDENTIALW
,
DWORD
);
#define CredWrite WINELIB_NAME_AW(CredWrite)
DWORD
WINAPI
CredUICmdLinePromptForCredentialsW
(
PCWSTR
,
PCtxtHandle
,
DWORD
,
PWSTR
,
ULONG
,
PWSTR
,
ULONG
,
PBOOL
,
DWORD
);
DWORD
WINAPI
CredUICmdLinePromptForCredentialsA
(
PCSTR
,
PCtxtHandle
,
DWORD
,
PSTR
,
ULONG
,
PSTR
,
ULONG
,
PBOOL
,
DWORD
);
#define CredUICmdLinePromptForCredentials WINELIB_NAME_AW(CredUICmdLinePromptForCredentials)
...
...
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