blob: 96d6ff82a733fced77cfd74c366487a50ddf6582 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/* windows/cns/tktlist.h */
/*
* Copyright 1994 by the Massachusetts Institute of Technology.
*
* For copying and distribution information, please see the file
* <mit-copyright.h>.
*/
/* Handle all actions of the Kerberos ticket list. */
/* Only one time, please */
#ifndef TKTLIST_DEFS
#define TKTLIST_DEFS
/*
* Prototypes
*/
BOOL ticket_init_list(HWND);
void ticket_destroy(HWND);
void ticket_measureitem(HWND, MEASUREITEMSTRUCT *);
void ticket_drawitem(HWND, const DRAWITEMSTRUCT *);
#endif
|