"Fossies" - the Fresh Open Source Software Archive

Member "dbg-2.15.5/dbg_ser.h" (20 Apr 2007, 1219 Bytes) of package /linux/www/old/dbg-2.15.5.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting (style: standard) with prefixed line numbers and code folding option. Alternatively you can here view or download the uninterpreted source code file. For more information about "dbg_ser.h" see the Fossies "Dox" file reference documentation.

    1 /***************************************************************************
    2                           dbg_ser.h  -  description
    3                              -------------------
    4     begin                : Sun Sep 24 2000
    5     copyright            : (C) 2001 by Dmitri Dmitrienko
    6                          : (C) 2002, 2007 NuSphere Corp.
    7     www                  : http://dd.cron.ru
    8                          : http://www.nusphere.com/
    9     author               : written by Dmitri Dmitrienko
   10     license              : This source file is subject to version 1.01 of 
   11                            the License,  that is bundled with this package 
   12                            in the file LICENSE, and is available at through 
   13                            the world-wide-web at http://dd.cron.ru/license
   14  ***************************************************************************/
   15 
   16 
   17 #ifndef _DBG_SER_H_
   18 #define _DBG_SER_H_
   19 
   20 #include "zend.h"
   21 
   22 #define DSER_CORR_REF  0x001
   23 #define DSER_ADD_DSIGN 0x002
   24 #define DSER_DEMANGLE  0x004
   25 
   26 
   27 void dbg_serialize_zval(zval *data, zval *buf, unsigned int Flags TSRMLS_DC2(DBG, E));
   28 void dbg_serialize_hash(HashTable *ht, zval *zthis, zval *buf, unsigned int Flags TSRMLS_DC2(DBG, E));
   29 
   30 
   31 #endif