diff options
author | SVN Migration <svn@php.net> | 2003-02-27 17:43:39 +0000 |
---|---|---|
committer | SVN Migration <svn@php.net> | 2003-02-27 17:43:39 +0000 |
commit | 078bcec0997ad0e07b720c43cc9e6d0e046a75ab (patch) | |
tree | 36cb0f6be2ef078fe3374de8c087b93ecf82f812 /ext/qtdom/qtdom_qt.h | |
parent | fd61f69077f6156ca71dde60ecfd9ed9765a02db (diff) | |
download | php-git-PHP-5.tar.gz |
This commit was manufactured by cvs2svn to create branch 'PHP_5'.PHP-5
Diffstat (limited to 'ext/qtdom/qtdom_qt.h')
-rw-r--r-- | ext/qtdom/qtdom_qt.h | 67 |
1 files changed, 0 insertions, 67 deletions
diff --git a/ext/qtdom/qtdom_qt.h b/ext/qtdom/qtdom_qt.h deleted file mode 100644 index 97d83acea1..0000000000 --- a/ext/qtdom/qtdom_qt.h +++ /dev/null @@ -1,67 +0,0 @@ -// -*- Mode: C++ -*- -// -// $Id$ -// -// Created on: <09-Nov-2000 12:00:24 root> -// - -#ifndef QDOM_QT_H -#define QDOM_QT_H - -struct qdom_node -{ - int Type; - char *Name; - char *Content; - void *Q_Node; -}; - -struct qdom_attribute -{ - int Count; - void *Q_Node; -}; - -struct qdom_doc -{ - void *Document; - void *CurrentNode; - struct qdom_node *Children; -}; - -struct qdom_message -{ - char *Log; - void *OldHandler; -}; - -void qdom_init(); -void qdom_shutdown(); - -void qdom_do_install_message_handler(); -void qdom_do_free_message_handler(); - -char *qdom_error_log(); - -void qdom_do_version( char **ver ); - -struct qdom_node *qdom_do_next_node( struct qdom_node *node ); -struct qdom_node *qdom_do_first_child( struct qdom_node *node ); - -struct qdom_attribute *qdom_do_node_attributes( struct qdom_node *node ); -struct qdom_node *qdom_do_attribute_at( struct qdom_attribute *attr, int index ); -void qdom_do_attributes_free( struct qdom_attribute *node ); - -int qdom_do_node_children_count( struct qdom_node *node ); -int qdom_do_node_attribute_count( struct qdom_node *node ); - -struct qdom_node *qdom_do_copy_node( struct qdom_node *node ); -void qdom_do_node_free( struct qdom_node *node ); - -void qdom_do_doc_type( struct qdom_doc *doc, char **name ); -struct qdom_doc *qdom_do_init( const char *arg ); -void qdom_do_free( struct qdom_doc *doc ); - -struct qdom_message *g_qdom_message_log; - -#endif // QDOM_QT_H |