/*
 * PI.h : interfaces of the PI interface as defined by
 *       Document Object Model (Core) Level 1
 *       http://www.w3.org/TR/WD-DOM/level-one-core.html
 * 
 * Daniel.Veillard@w3.org
 *
 * $Id: PI.h,v 1.1 1998/06/15 03:15:36 daniel Exp $
 */

#ifndef __DOM_PI_H__
#define __DOM_PI_H__

#include "Node.h"

/*
 * Structure: a PI IS a Node!
 */
typedef domNode domPI;
typedef domNodePtr domPIPtr;

/*
 * Functions
 * Strange : no API to change PIs seems to be provided !
 * The Creation function is defined at the Document level.
 */

extern void domPIDestroy(domPIPtr comment);

#endif /* __DOM_PI_H__ */


