Main Page | Modules | Data Structures | Directories | File List | Data Fields | Globals

uc.h

00001 /*
00002  * Copyright (c) 2005, 2006, 2007 by KoanLogic s.r.l. <http://www.koanlogic.com>
00003  * All rights reserved.
00004  *
00005  * This file is part of KLone, and as such it is subject to the license stated
00006  * in the LICENSE file which you have received as part of this distribution.
00007  *
00008  * $Id: uc.h,v 1.1 2007/08/07 17:13:09 tat Exp $
00009  */
00010 
00011 #ifndef _KLONE_UC_H_
00012 #define _KLONE_UC_H_
00013 
00014 #ifdef __cplusplus
00015 extern "C" {
00016 #endif 
00017 
00018 /* user-provided startup/term functions (--enable_uc configure arg is needed) */
00019 void uc_init(void);
00020 void uc_term(void);
00021 
00022 #ifdef __cplusplus
00023 }
00024 #endif 
00025 
00026 #endif
00027