summaryrefslogtreecommitdiffstats
path: root/src/windows/cns/cns.h
diff options
context:
space:
mode:
authorKeith Vetter <keithv@fusion.com>1995-03-22 20:17:41 +0000
committerKeith Vetter <keithv@fusion.com>1995-03-22 20:17:41 +0000
commitc3f88158d5a194b7e3fe1c655d45799521895847 (patch)
treeb17a500398c28db0436e7962c1e1c23685d4bac6 /src/windows/cns/cns.h
parent43e4214cf96717848a5b68b970eaab83f80591da (diff)
downloadkrb5-c3f88158d5a194b7e3fe1c655d45799521895847.tar.gz
krb5-c3f88158d5a194b7e3fe1c655d45799521895847.tar.xz
krb5-c3f88158d5a194b7e3fe1c655d45799521895847.zip
Added files to the windows/cns directory
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5189 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/windows/cns/cns.h')
-rw-r--r--src/windows/cns/cns.h136
1 files changed, 136 insertions, 0 deletions
diff --git a/src/windows/cns/cns.h b/src/windows/cns/cns.h
new file mode 100644
index 0000000000..006804d12c
--- /dev/null
+++ b/src/windows/cns/cns.h
@@ -0,0 +1,136 @@
+/*
+ * cns.h
+ *
+ * Public Domain -- written by Cygnus Support.
+ */
+
+/* Only one time, please */
+#ifndef KWIN_DEFS
+#define KWIN_DEFS
+
+/*
+ * Menu items
+ */
+#define FILE_MENU_ITEMS 3
+#define FILE_MENU_MAX_LOGINS 5
+#define IDM_KWIN 1000
+ #define IDM_OPTIONS 1001
+ #define IDM_EXIT 1002
+ #define IDM_FIRST_LOGIN 1003
+
+ #define IDM_HELP_INDEX 1020
+ #define IDM_ABOUT 1021
+
+/*
+ * Accelerator
+ */
+#define IDA_KWIN 2000
+
+/*
+ * Dialog and dialog item ids
+ */
+#define KWIN_DIALOG_CLASS "KERBEROS" /* class for kerberos dialog */
+#define KWIN_DIALOG_NAME "Kerberos" /* name for kerberos dialog */
+
+#define ID_KWIN 100 /* the main kerberos dialog */
+ #define IDD_KWIN_FIRST 101
+ #define IDD_TICKET_LIST_TITLE 101
+ #define IDD_TICKET_LIST 102
+
+ #define IDD_MIN_TITLE 103
+ #define IDD_LOGIN_NAME_TITLE 103
+ #define IDD_LOGIN_INSTANCE_TITLE 104
+ #define IDD_LOGIN_REALM_TITLE 105
+ #define IDD_LOGIN_PASSWORD_TITLE 106
+ #define IDD_MAX_TITLE 106
+
+ #define IDD_MIN_EDIT 107
+ #define IDD_LOGIN_NAME 107
+ #define IDD_LOGIN_INSTANCE 108
+ #define IDD_LOGIN_REALM 109
+ #define IDD_LOGIN_PASSWORD 110
+ #define IDD_MAX_EDIT 110
+
+ #define IDD_MIN_BUTTON 111
+ #define IDD_CHANGE_PASSWORD 111
+ #define IDD_TICKET_DELETE 112
+ #define IDD_LOGIN 113
+ #define IDD_MAX_BUTTON 113
+
+ #define IDD_KWIN_LAST 113
+
+
+#define ID_PASSWORD 200
+ #define IDD_PASSWORD_NAME 204
+ #define IDD_PASSWORD_INSTANCE 205
+ #define IDD_PASSWORD_REALM 206
+ #define IDD_OLD_PASSWORD 207
+ #define IDD_NEW_PASSWORD1 208
+ #define IDD_NEW_PASSWORD2 209
+ #define IDD_PASSWORD_CR 210
+
+
+#define ID_OPTS 300
+ #define IDD_CONF 301
+ #define IDD_REALMS 302
+ #define IDD_LIFETIME 303
+ #define IDD_BEEP 304
+ #define IDD_ALERT 305
+
+/*
+ * Dialog dimensions
+ */
+#define KWIN_MIN_WIDTH 180
+#define KWIN_MIN_HEIGHT 110
+
+/*
+ * Icons
+ */
+#define IDI_KWIN 1 /* The program icon */
+
+#define ICON_WIDTH 30 /* Width used with icons */
+#define ICON_HEIGHT 20 /* Height used with icons */
+
+#define IDI_FIRST_CLOCK 2
+#define IDI_0_MIN 2 /* < 5 minutes left */
+#define IDI_5_MIN 3
+#define IDI_10_MIN 4
+#define IDI_15_MIN 5
+#define IDI_20_MIN 6
+#define IDI_25_MIN 7
+#define IDI_30_MIN 8
+#define IDI_35_MIN 9
+#define IDI_40_MIN 10
+#define IDI_45_MIN 11
+#define IDI_50_MIN 12
+#define IDI_55_MIN 13
+#define IDI_60_MIN 14
+#define IDI_EXPIRED 15
+#define IDI_TICKET 16
+#define IDI_LAST_CLOCK 16
+#define MAX_ICONS (IDI_LAST_CLOCK - IDI_FIRST_CLOCK + 1)
+
+#ifndef RC_INVOKED
+
+#ifdef KRB5
+ extern krb5_context k5_context;
+ extern krb5_ccache k5_ccache;
+#endif
+
+/*
+ * Prototypes
+ */
+
+time_t kwin_get_epoch(void);
+#ifdef KRB5
+ static krb5_error_code k5_dest_tkt (void);
+ static int k5_get_num_cred (void);
+ static int k5_kname_parse (char *name, char *realm, char *fullname);
+ static int k5_get_lrealm (char *realm);
+#endif
+
+HICON kwin_get_icon(time_t expiration);
+
+#endif /* RC_INVOKED */
+
+#endif