kfw-changes-20040307
[openafs.git] / src / WINNT / client_creds / afskfw.h
1 /*
2  * Copyright (c) 2003 SkyRope, LLC
3  * All rights reserved.
4  * 
5  * Redistribution and use in source and binary forms, with or without 
6  * modification, are permitted provided that the following conditions are met:
7  * 
8  * - Redistributions of source code must retain the above copyright notice, 
9  *   this list of conditions and the following disclaimer.
10  * - Redistributions in binary form must reproduce the above copyright notice, 
11  *   this list of conditions and the following disclaimer in the documentation 
12  *   and/or other materials provided with the distribution.
13  * - Neither the name of Skyrope, LLC nor the names of its contributors may be 
14  *   used to endorse or promote products derived from this software without 
15  *   specific prior written permission from Skyrope, LLC.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 
18  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
19  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
20  * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
21  * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
22  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
23  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
24  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
25  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
26  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  *
29  */
30
31 #ifndef AFSKFW_H
32 #define AFSKFW_H
33 #ifdef  __cplusplus
34 extern "C" {
35 #endif
36 void KFW_initialize(void);
37 void KFW_cleanup(void);
38 int  KFW_is_available(void);
39 int  KFW_AFS_destroy_tickets_for_cell(char *);
40 int  KFW_AFS_renew_expiring_tokens(void);
41 int  KFW_AFS_get_cred( char * username, 
42                         char * instance, 
43                         char * cell,
44                         char * password,
45                         int lifetime,
46                         char ** reasonP );
47 int  KFW_AFS_renew_token_for_cell(char * cell);
48 int  KFW_AFS_renew_tokens_for_all_cells(void);
49 BOOL KFW_AFS_wait_for_service_start(void);
50
51 #define WM_OBTAIN_TOKENS (WM_USER+77)
52 #define WM_START_SERVICE (WM_USER+78)
53 void  ObtainTokensFromUserIfNeeded(HWND hWnd);
54 DWORD IpAddrChangeMonitorInit(HWND hWnd);
55
56 #ifdef  __cplusplus
57 }
58 #endif
59 #endif /* AFSKFW_H */