From e2f7c03463ac430123f80304034e7d978293ba5f Mon Sep 17 00:00:00 2001 From: Marc Horowitz Date: Fri, 30 Oct 1998 03:12:12 +0000 Subject: add back mistakenly deleted files git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@11002 dc483132-0cff-0310-8789-dd5450dbe970 --- src/windows/lib/gic.h | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 src/windows/lib/gic.h (limited to 'src/windows/lib/gic.h') diff --git a/src/windows/lib/gic.h b/src/windows/lib/gic.h new file mode 100644 index 000000000..ddea368e4 --- /dev/null +++ b/src/windows/lib/gic.h @@ -0,0 +1,28 @@ +/* + * Copyright (C) 1997 Cygnus Solutions + * + * Author: Michael Graff + */ + +#ifndef _WINDOWS_LIB_GIC_H +#define _WINDOWS_LIB_GIC_H + +#include +#include + +#include "krb5.h" + +typedef struct { + HINSTANCE hinstance; /* application instance */ + HWND hwnd; /* parent window */ + WORD id; /* starting ID */ + WORD width; /* max width of the dialog box */ + const char *banner; /* the banner */ + WORD num_prompts; /* the number of prompts we were passed */ + krb5_prompt *prompts; /* the prompts themselves */ +} gic_data; + +krb5_error_code KRB5_CALLCONV gic_prompter(krb5_context, void *, const char *, + int, krb5_prompt []); + +#endif /* _WINDOWS_LIB_GIC_H */ -- cgit