ReactOS 0.4.15-dev-7834-g00c4b3d
wlnotify.c
Go to the documentation of this file.
1/*
2 * PROJECT: ReactOS system libraries
3 * LICENSE: GPL - See COPYING in the top level directory
4 * FILE: dll/win32/wlnotify/wlnotify.c
5 * PURPOSE: Winlogon notifications
6 * PROGRAMMER: Eric Kohl
7 */
8
9#include "precomp.h"
10
12
13
14BOOL
19 LPVOID lpReserved)
20{
21 switch (dwReason)
22 {
25 break;
26 }
27
28 return TRUE;
29}
30
31/* EOF */
#define WINE_DEFAULT_DEBUG_CHANNEL(t)
Definition: precomp.h:23
DWORD dwReason
Definition: misc.cpp:154
HINSTANCE hInstance
Definition: charmap.c:19
#define TRUE
Definition: types.h:120
#define DLL_PROCESS_ATTACH
Definition: compat.h:131
BOOL WINAPI DisableThreadLibraryCalls(IN HMODULE hLibModule)
Definition: loader.c:85
unsigned int BOOL
Definition: ntddk_ex.h:94
unsigned long DWORD
Definition: ntddk_ex.h:95
#define WINAPI
Definition: msvc.h:6
BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID lpReserved)
Definition: wlnotify.c:16