~ubuntu-branches/ubuntu/oneiric/likewise-open/oneiric

« back to all changes in this revision

Viewing changes to krb5/src/windows/identity/ui/configwnd.h

  • Committer: Bazaar Package Importer
  • Author(s): Scott Salley
  • Date: 2010-11-22 12:06:00 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20101122120600-8lba1fpceot71wlb
Tags: 6.0.0.53010-1
Likewise Open 6.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (c) 2005 Massachusetts Institute of Technology
 
3
 *
 
4
 * Permission is hereby granted, free of charge, to any person
 
5
 * obtaining a copy of this software and associated documentation
 
6
 * files (the "Software"), to deal in the Software without
 
7
 * restriction, including without limitation the rights to use, copy,
 
8
 * modify, merge, publish, distribute, sublicense, and/or sell copies
 
9
 * of the Software, and to permit persons to whom the Software is
 
10
 * furnished to do so, subject to the following conditions:
 
11
 *
 
12
 * The above copyright notice and this permission notice shall be
 
13
 * included in all copies or substantial portions of the Software.
 
14
 *
 
15
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 
16
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 
17
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 
18
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
 
19
 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
 
20
 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 
21
 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 
22
 * SOFTWARE.
 
23
 */
 
24
 
 
25
/* $Id$ */
 
26
 
 
27
#ifndef __KHIMAIRA_CONFIGWND_H
 
28
#define __KHIMAIRA_CONFIGWND_H
 
29
 
 
30
#define CFGACTION_MAGIC 0x38f8
 
31
 
 
32
void 
 
33
khm_show_config_pane(khui_config_node node);
 
34
 
 
35
void khm_init_config(void);
 
36
void khm_exit_config(void);
 
37
 
 
38
void khm_refresh_config(void);
 
39
 
 
40
/* window procedures for other configuration windows */
 
41
INT_PTR CALLBACK
 
42
khm_cfg_general_proc(HWND hwnd,
 
43
                     UINT uMsg,
 
44
                     WPARAM wParam,
 
45
                     LPARAM lParam);
 
46
 
 
47
INT_PTR CALLBACK
 
48
khm_cfg_identities_proc(HWND hwnd,
 
49
                        UINT uMsg,
 
50
                        WPARAM wParam,
 
51
                        LPARAM lParam);
 
52
 
 
53
INT_PTR CALLBACK
 
54
khm_cfg_identity_proc(HWND hwnd,
 
55
                      UINT uMsg,
 
56
                      WPARAM wParam,
 
57
                      LPARAM lParam);
 
58
 
 
59
INT_PTR CALLBACK
 
60
khm_cfg_id_tab_proc(HWND hwnd,
 
61
                    UINT uMsg,
 
62
                    WPARAM wParam,
 
63
                    LPARAM lParam);
 
64
 
 
65
INT_PTR CALLBACK
 
66
khm_cfg_ids_tab_proc(HWND hwnd,
 
67
                     UINT uMsg,
 
68
                     WPARAM wParam,
 
69
                     LPARAM lParam);
 
70
 
 
71
INT_PTR CALLBACK
 
72
khm_cfg_notifications_proc(HWND hwnd,
 
73
                           UINT uMsg,
 
74
                           WPARAM wParam,
 
75
                           LPARAM lParam);
 
76
 
 
77
INT_PTR CALLBACK
 
78
khm_cfg_plugins_proc(HWND hwnd,
 
79
                     UINT uMsg,
 
80
                     WPARAM wParam,
 
81
                     LPARAM lParam);
 
82
 
 
83
INT_PTR CALLBACK
 
84
khm_cfg_appearance_proc(HWND hwnd,
 
85
                        UINT uMsg,
 
86
                        WPARAM wParam,
 
87
                        LPARAM lParam);
 
88
#endif