00001 #ifndef SCBPATH_H_ 00002 #define SCBPATH_H_ 00003 00004 /* 00005 * File Name : scbpath.h 00006 * 00007 * Description: Scribble library path definition 00008 */ 00009 00010 /* 00011 * This file is part of liberscribble. 00012 * 00013 * liberscribble is free software: you can redistribute it and/or modify 00014 * it under the terms of the GNU General Public License as published by 00015 * the Free Software Foundation, either version 2 of the License, or 00016 * (at your option) any later version. 00017 * 00018 * liberscribble is distributed in the hope that it will be useful, 00019 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00020 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00021 * GNU General Public License for more details. 00022 * 00023 * You should have received a copy of the GNU General Public License 00024 * along with this program. If not, see <http://www.gnu.org/licenses/>. 00025 */ 00026 00027 /** 00028 * Copyright (C) 2008 iRex Technologies B.V. 00029 * All rights reserved. 00030 */ 00031 00032 00033 //---------------------------------------------------------------------------- 00034 // Include Files 00035 //---------------------------------------------------------------------------- 00036 00037 // system include files, between < > 00038 #include <glib.h> 00039 00040 // ereader include files, between < > 00041 00042 // local include files, between " " 00043 #include "scbconfig.h" 00044 00045 G_BEGIN_DECLS 00046 00047 00048 //---------------------------------------------------------------------------- 00049 // Definitions 00050 //---------------------------------------------------------------------------- 00051 00052 00053 //---------------------------------------------------------------------------- 00054 // Forward Declarations 00055 //---------------------------------------------------------------------------- 00056 00057 00058 //---------------------------------------------------------------------------- 00059 // Type Declarations 00060 //---------------------------------------------------------------------------- 00061 00062 typedef struct _ScbPath 00063 { 00064 char document_path[ERSCRIBBLE_MAX_PATH]; /**< path of the target document, such as a PDF document */ 00065 } ScbPath; 00066 00067 typedef ScbPath* ScbPathPtr; 00068 00069 00070 //---------------------------------------------------------------------------- 00071 // Global Constants 00072 //---------------------------------------------------------------------------- 00073 00074 00075 //============================================================================ 00076 // Public Functions 00077 //============================================================================ 00078 00079 // Initialize a path instance 00080 // @param ptr the pointer of path instance 00081 void erscribble_path_init(ScbPathPtr ptr); 00082 00083 // Estimate whether the file by which path indicates exists 00084 // @param pathName the path of the document 00085 // @return return TRUE if file exist, otherwise return FALSE 00086 gboolean erscribble_path_file_exist(const char *pathName); 00087 00088 00089 G_END_DECLS 00090 00091 #endif 00092