ReactOS 0.4.15-dev-7953-g1f49173
i_cryptasn1tls.h File Reference
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Typedefs

typedef voidASN1decoding_t
 
typedef voidASN1encoding_t
 
typedef voidASN1module_t
 
typedef DWORD HCRYPTASN1MODULE
 

Functions

ASN1decoding_t WINAPI I_CryptGetAsn1Decoder (HCRYPTASN1MODULE)
 
ASN1encoding_t WINAPI I_CryptGetAsn1Encoder (HCRYPTASN1MODULE)
 
BOOL WINAPI I_CryptInstallAsn1Module (ASN1module_t, DWORD, void *)
 
BOOL WINAPI I_CryptUninstallAsn1Module (HCRYPTASN1MODULE)
 

Typedef Documentation

◆ ASN1decoding_t

typedef void* ASN1decoding_t

Definition at line 22 of file i_cryptasn1tls.h.

◆ ASN1encoding_t

typedef void* ASN1encoding_t

Definition at line 23 of file i_cryptasn1tls.h.

◆ ASN1module_t

typedef void* ASN1module_t

Definition at line 24 of file i_cryptasn1tls.h.

◆ HCRYPTASN1MODULE

Definition at line 25 of file i_cryptasn1tls.h.

Function Documentation

◆ I_CryptGetAsn1Decoder()

ASN1decoding_t WINAPI I_CryptGetAsn1Decoder ( HCRYPTASN1MODULE  x)

Definition at line 300 of file main.c.

301{
302 FIXME("(%08x): stub\n", x);
303 return NULL;
304}
#define FIXME(fmt,...)
Definition: debug.h:111
#define NULL
Definition: types.h:112
GLint GLint GLint GLint GLint x
Definition: gl.h:1548

◆ I_CryptGetAsn1Encoder()

ASN1encoding_t WINAPI I_CryptGetAsn1Encoder ( HCRYPTASN1MODULE  x)

Definition at line 306 of file main.c.

307{
308 FIXME("(%08x): stub\n", x);
309 return NULL;
310}

◆ I_CryptInstallAsn1Module()

BOOL WINAPI I_CryptInstallAsn1Module ( ASN1module_t  x,
DWORD  y,
void z 
)

Definition at line 288 of file main.c.

289{
290 FIXME("(%p %08x %p): stub\n", x, y, z);
291 return TRUE;
292}
#define TRUE
Definition: types.h:120
GLint GLint GLint GLint GLint GLint y
Definition: gl.h:1548
GLdouble GLdouble z
Definition: glext.h:5874

◆ I_CryptUninstallAsn1Module()

BOOL WINAPI I_CryptUninstallAsn1Module ( HCRYPTASN1MODULE  x)

Definition at line 294 of file main.c.

295{
296 FIXME("(%08x): stub\n", x);
297 return TRUE;
298}