Skip to content
Snippets Groups Projects
Select Git revision
  • 4603f70ddcf14b534ed7feb51006019477e4b68c
  • master default protected
  • develop protected
  • feat_remove_attr
  • python2.7
  • python3.8
6 results

version.in

Blame
  • dict.h 1.31 KiB
    /*
     * This file is part of the Poliqarp suite.
     * 
     * Copyright (C) 2009 by Instytut Podstaw Informatyki Polskiej
     * Akademii Nauk (IPI PAN; Institute of Computer Science, Polish
     * Academy of Sciences; cf. www.ipipan.waw.pl).  All rights reserved.
     * 
     * This file may be distributed and/or modified under the terms of the
     * GNU General Public License version 2 as published by the Free Software
     * Foundation and appearing in the file gpl.txt included in the packaging
     * of this file.  (See http://www.gnu.org/licenses/translations.html for
     * unofficial translations.)
     * 
     * A commercial license is available from IPI PAN (contact
     * Michal.Ciesiolka@ipipan.waw.pl or ipi@ipipan.waw.pl for more
     * information).  Licensees holding a valid commercial license from IPI
     * PAN may use this file in accordance with that license.
     * 
     * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING
     * THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     * PURPOSE.
     */
    
    #ifndef POLIQARP_DICT_H
    #define POLIQARP_DICT_H 1
    
    #include <sakura/exception.h>
    #include <sakura/common/newdict.h>
    
    int poliqarp_newdict_open(struct newdict *dict,
       const char *base_name, bool want_index,
       const char *image_path_format, const char *offset_path_format,
       const char *error_message, struct poliqarp_error *error);
    
    #endif