00001 /* 00002 * png2sprt.c 00003 * Copyright (C) 2000 A.J. van Os; Released under GPL 00004 * 00005 * Description: 00006 * Functions to translate png pictures into sprites 00007 */ 00008 00009 #include <stdio.h> 00010 #include "antiword.h" 00011 00012 00013 /* 00014 * bTranslatePNG - translate a PNG picture 00015 * 00016 * This function translates a picture from png to sprite 00017 * 00018 * return TRUE when sucessful, otherwise FALSE 00019 */ 00020 #ifndef SYMBIAN 00021 BOOL 00022 bTranslatePNG(diagram_type *pDiag, FILE *pFile, 00023 ULONG ulFileOffset, size_t tPictureLen, const imagedata_type *pImg) 00024 { 00025 /* PNG is not supported yet */ 00026 return bAddDummyImage(pDiag, pImg); 00027 } /* end of bTranslatePNG */ 00028 #endif