ReactOS 0.4.15-dev-7934-g1dc8d80
content.c
Go to the documentation of this file.
1/*
2 * Internet control panel applet: content propsheet
3 *
4 * Copyright 2010 Detlef Riekenberg
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
22#include <stdarg.h>
23#include <windef.h>
24#include <winbase.h>
25#include <winuser.h>
26#include <cryptuiapi.h>
27
28#include "inetcpl.h"
29#include "wine/debug.h"
30
32
33/*********************************************************************
34 * display_cert_manager (internal)
35 *
36 * call cryptui to display a specific certificate manager dialog
37 *
38 */
40{
42
43 TRACE("(%p, 0x%x)\n", parent, flags);
44
46 dlg.dwSize = sizeof(CRYPTUI_CERT_MGR_STRUCT);
47 dlg.hwndParent = parent;
48 dlg.dwFlags = flags;
49
50 return CryptUIDlgCertMgr(&dlg);
51}
52
53/*********************************************************************
54 * LaunchSiteCertDialog (inetcpl.@)
55 *
56 * Launch a dialog to manage personal certificates
57 *
58 * PARAMS
59 * parent [I] Handle for the parent window
60 *
61 * RETURNS
62 * Failure: FALSE
63 * Success: TRUE
64 *
65 * NOTES
66 * rundll32 callable function: rundll32 inetcpl.cpl,LaunchSiteCertDialog
67 *
68 */
70{
72}
73
74/*********************************************************************
75 * content_dlgproc [internal]
76 *
77 */
79{
80 if ((msg != WM_SETCURSOR) && (msg != WM_NCHITTEST) && (msg != WM_MOUSEMOVE))
81 TRACE("(%p, 0x%08x/%d, 0x%lx, 0x%lx)\n", hwnd, msg, msg, wparam, lparam);
82
83 if (msg == WM_COMMAND)
84 {
85 switch (LOWORD(wparam))
86 {
87 case IDC_CERT:
89 break;
90
93 break;
94 }
95 }
96 return FALSE;
97}
@ lparam
Definition: SystemMenu.c:31
@ wparam
Definition: SystemMenu.c:30
#define msg(x)
Definition: auth_time.c:54
#define WINE_DEFAULT_DEBUG_CHANNEL(t)
Definition: precomp.h:23
INT_PTR CALLBACK content_dlgproc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
Definition: content.c:78
BOOL WINAPI LaunchSiteCertDialog(HWND parent)
Definition: content.c:69
static BOOL display_cert_manager(HWND parent, DWORD flags)
Definition: content.c:39
#define CRYPTUI_CERT_MGR_PUBLISHER_TAB
Definition: cryptuiapi.h:47
struct _CRYPTUI_CERT_MGR_STRUCT CRYPTUI_CERT_MGR_STRUCT
#define FALSE
Definition: types.h:117
BOOL WINAPI CryptUIDlgCertMgr(PCCRYPTUI_CERT_MGR_STRUCT pCryptUICertMgr)
Definition: main.c:1311
#define CALLBACK
Definition: compat.h:35
r parent
Definition: btrfs.c:3010
unsigned int BOOL
Definition: ntddk_ex.h:94
unsigned long DWORD
Definition: ntddk_ex.h:95
GLbitfield flags
Definition: glext.h:7161
#define IDC_CERT_PUBLISHER
Definition: inetcpl.h:93
#define IDC_CERT
Definition: inetcpl.h:92
unsigned int UINT
Definition: ndis.h:50
#define LOWORD(l)
Definition: pedump.c:82
#define TRACE(s)
Definition: solgame.cpp:4
int32_t INT_PTR
Definition: typedefs.h:64
#define ZeroMemory
Definition: winbase.h:1712
_In_ LONG _In_ HWND hwnd
Definition: winddi.h:4023
LONG_PTR LPARAM
Definition: windef.h:208
UINT_PTR WPARAM
Definition: windef.h:207
#define WINAPI
Definition: msvc.h:6
#define WM_COMMAND
Definition: winuser.h:1740
#define WM_NCHITTEST
Definition: winuser.h:1686
#define WM_MOUSEMOVE
Definition: winuser.h:1775
#define WM_SETCURSOR
Definition: winuser.h:1636