ReactOS 0.4.15-dev-7934-g1dc8d80
schannel_main.c File Reference
#include <stdarg.h>
#include "windef.h"
#include "winbase.h"
#include "wine/debug.h"
Include dependency graph for schannel_main.c:

Go to the source code of this file.

Functions

 WINE_DEFAULT_DEBUG_CHANNEL (schannel)
 
BOOL WINAPI DllMain (HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
 
BOOL WINAPI SslEmptyCacheA (LPSTR target, DWORD flags)
 
BOOL WINAPI SslEmptyCacheW (LPWSTR target, DWORD flags)
 

Function Documentation

◆ DllMain()

BOOL WINAPI DllMain ( HINSTANCE  hinstDLL,
DWORD  fdwReason,
LPVOID  lpvReserved 
)

Definition at line 37 of file schannel_main.c.

38{
39 TRACE("(0x%p, %d, %p)\n",hinstDLL,fdwReason,lpvReserved);
40
41 if (fdwReason == DLL_WINE_PREATTACH) return FALSE; /* prefer native version */
42
43 if (fdwReason == DLL_PROCESS_ATTACH)
44#ifdef __REACTOS__
45 {
46#endif
48#ifdef __REACTOS__
50 }
51#endif
52 return TRUE;
53}
#define TRUE
Definition: types.h:120
#define FALSE
Definition: types.h:117
#define DLL_PROCESS_ATTACH
Definition: compat.h:131
BOOL WINAPI DisableThreadLibraryCalls(IN HMODULE hLibModule)
Definition: loader.c:85
static IN DWORD IN LPVOID lpvReserved
void SECUR32_initSchannelSP(void) DECLSPEC_HIDDEN
#define TRACE(s)
Definition: solgame.cpp:4

◆ SslEmptyCacheA()

BOOL WINAPI SslEmptyCacheA ( LPSTR  target,
DWORD  flags 
)

Definition at line 55 of file schannel_main.c.

56{
57 FIXME("%s %x\n", debugstr_a(target), flags);
58 return TRUE;
59}
#define FIXME(fmt,...)
Definition: debug.h:111
GLbitfield flags
Definition: glext.h:7161
GLenum target
Definition: glext.h:7315
#define debugstr_a
Definition: kernel32.h:31

◆ SslEmptyCacheW()

BOOL WINAPI SslEmptyCacheW ( LPWSTR  target,
DWORD  flags 
)

Definition at line 61 of file schannel_main.c.

62{
63 FIXME("%s %x\n", debugstr_w(target), flags);
64 return TRUE;
65}
#define debugstr_w
Definition: kernel32.h:32

◆ WINE_DEFAULT_DEBUG_CHANNEL()

WINE_DEFAULT_DEBUG_CHANNEL ( schannel  )