00001 /* -*- Mode: C; indent-tabs-mode:nil; c-basic-offset: 8-*- */ 00002 00003 /* 00004 * This file is part of The Croco Library 00005 * 00006 * Copyright (C) 2002-2003 Dodji Seketeli <dodji@seketeli.org> 00007 * 00008 * This program is free software; you can redistribute it and/or 00009 * modify it under the terms of version 2.1 of the 00010 * GNU Lesser General Public 00011 * License as published by the Free Software Foundation. 00012 * 00013 * This program is distributed in the hope that it will be useful, 00014 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00015 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00016 * GNU General Public License for more details. 00017 * 00018 * You should have received a copy of the 00019 * GNU Lesser General Public License 00020 * along with this program; if not, write to the Free Software 00021 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 00022 * USA 00023 */ 00024 00025 #ifndef __CR_LAY_ENG_H__ 00026 #define __CR_LAY_ENG_H__ 00027 00028 #include "cr-utils.h" 00029 00030 typedef struct _CRLayEngPriv CRLayEngPriv ; 00031 00032 typedef struct 00033 { 00034 CRLayoutEngPriv *priv ; 00035 } CRLayoutEng ; 00036 00037 00038 CRLayEng * 00039 cr_lay_eng_new (void) ; 00040 00041 void 00042 cr_lay_eng_destroy (CRLayEng *a_this) ; 00043 00044 #endif /*__CR_LAYOUT_ENG_H__*/