ReactOS 0.4.15-dev-7924-g5949c20
secur32_priv.h
Go to the documentation of this file.
1/*
2 * secur32 private definitions.
3 *
4 * Copyright (C) 2004 Juan Lang
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 */
20
21#ifndef __SECUR32_PRIV_H__
22#define __SECUR32_PRIV_H__
23
24#include <wine/list.h>
25
26typedef struct _SecureProvider
27{
28 struct list entry;
35
36typedef struct _SecurePackage
37{
38 struct list entry;
42
43/* Allocates space for and initializes a new provider. If fnTableA or fnTableW
44 * is non-NULL, assumes the provider is built-in, and if moduleName is non-NULL,
45 * means must load the LSA/user mode functions tables from external SSP/AP module.
46 * Otherwise moduleName must not be NULL.
47 * Returns a pointer to the stored provider entry, for use adding packages.
48 */
50 const SecurityFunctionTableW *fnTableW, PCWSTR moduleName) DECLSPEC_HIDDEN;
51
52/* Allocates space for and adds toAdd packages with the given provider.
53 * provider must not be NULL, and either infoA or infoW may be NULL, but not
54 * both.
55 */
56void SECUR32_addPackages(SecureProvider *provider, ULONG toAdd,
58
59#include "wine/wine_supp.h"
60
61/* Tries to find the package named packageName. If it finds it, implicitly
62 * loads the package if it isn't already loaded.
63 */
65
66/* Tries to find the package named packageName. (Thunks to _findPackageW)
67 */
69
70/* A few string helpers; will return NULL if str is NULL. Free return with
71 * HeapFree */
74
75#endif /* ndef __SECUR32_PRIV_H__ */
Definition: list.h:37
#define DECLSPEC_HIDDEN
Definition: precomp.h:8
unsigned int BOOL
Definition: ntddk_ex.h:94
static const SecPkgInfoW infoW
Definition: kerberos.c:293
static const SecPkgInfoA infoA
Definition: kerberos.c:302
const WCHAR * str
SecurePackage * SECUR32_findPackageW(PCWSTR packageName) DECLSPEC_HIDDEN
Definition: sspi.c:577
struct _SecurePackage SecurePackage
PSTR SECUR32_AllocMultiByteFromWide(PCWSTR str) DECLSPEC_HIDDEN
Definition: secur32_wine.c:268
PWSTR SECUR32_AllocWideFromMultiByte(PCSTR str) DECLSPEC_HIDDEN
Definition: secur32_wine.c:246
SecurePackage * SECUR32_findPackageA(PCSTR packageName) DECLSPEC_HIDDEN
Definition: sspi.c:631
struct _SecureProvider SecureProvider
SecureProvider * SECUR32_addProvider(const SecurityFunctionTableA *fnTableA, const SecurityFunctionTableW *fnTableW, PCWSTR moduleName) DECLSPEC_HIDDEN
Definition: secur32_wine.c:314
void SECUR32_addPackages(SecureProvider *provider, ULONG toAdd, const SecPkgInfoA *infoA, const SecPkgInfoW *infoW) DECLSPEC_HIDDEN
Definition: secur32_wine.c:362
SecPkgInfoW infoW
Definition: schannel_priv.h:35
struct list entry
Definition: schannel_priv.h:34
SecureProvider * provider
Definition: schannel_priv.h:36
SecurityFunctionTableA fnTableA
Definition: secur32_priv.h:32
SecurityFunctionTableW fnTableW
Definition: secur32_priv.h:33
struct list entry
Definition: schannel_priv.h:26
uint16_t * PWSTR
Definition: typedefs.h:56
char * PSTR
Definition: typedefs.h:51
const uint16_t * PCWSTR
Definition: typedefs.h:57
const char * PCSTR
Definition: typedefs.h:52
uint32_t ULONG
Definition: typedefs.h:59