Windows: Add cm_req_t parameter to buf_Get* functions
[openafs.git] / src / WINNT / afsd / afscpcc.c
1 /*
2  * Copyright 2005,2006 Secure Endpoints Inc.
3  * All Rights Reserved.
4  * 
5  * This software has been released under the terms of the MIT License.  
6  */
7
8 #include <windows.h>
9 #include <afskfw.h>
10
11 int main(int argc, char *argv[])
12 {
13     if ( argc != 2 )
14         return 1;
15
16     KFW_initialize();
17
18     return KFW_AFS_copy_file_cache_to_default_cache(argv[1]);
19 }
20
21