- Sync gdiplusflat.h with Wine HEAD.
[reactos.git] / reactos / dll / win32 / cryptui / cryptui.c
1 /* $Id: dllmain.c 21873 2006-05-10 08:41:27Z cwittich $
2 *
3 * COPYRIGHT: See COPYING in the top level directory
4 * PROJECT: ReactOS system libraries
5 * FILE: dll/win32/crypui/cryptui.c
6 * PURPOSE: Library main function
7 * PROGRAMMER: Christoph von Wittich
8 * UPDATE HISTORY:
9 *
10 */
11
12 #include <windows.h>
13 #include <cryptuiapi.h>
14
15 #define NDEBUG
16 #include <debug.h>
17
18 INT STDCALL
19 DllMain(PVOID hinstDll,
20 ULONG dwReason,
21 PVOID reserved)
22 {
23 switch (dwReason)
24 {
25 case DLL_PROCESS_ATTACH:
26 break;
27
28 case DLL_PROCESS_DETACH:
29 break;
30 }
31 return TRUE;
32 }
33
34 BOOL
35 WINAPI
36 CryptUIDlgCertMgr(PCCRYPTUI_CERT_MGR_STRUCT pCryptUICertMgr)
37 {
38 UNIMPLEMENTED
39 return FALSE;
40 }
41
42
43 /* EOF */