1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-28 01:35:32 +00:00

DOM: Rename src/dom/dom.h src/dom/code.h

Additionally, add API doc mark.
This commit is contained in:
Jonas Fonseca 2006-01-31 22:38:06 +01:00 committed by Jonas Fonseca
parent 4de26051b9
commit a983603863
4 changed files with 7 additions and 5 deletions

View File

@ -1,5 +1,7 @@
#ifndef EL_DOM_DOM_H
#define EL_DOM_DOM_H
#ifndef EL_DOM_CODE_H
#define EL_DOM_CODE_H
/* API Doc :: dom-code */
/** DOM status/error/exception codes
*

View File

@ -7,7 +7,7 @@
#include "elinks.h"
#include "dom/css/scanner.h"
#include "dom/dom.h"
#include "dom/code.h"
#include "dom/node.h"
#include "dom/scanner.h"
#include "dom/select.h"

View File

@ -2,7 +2,7 @@
#ifndef EL_DOM_SGML_PARSER_H
#define EL_DOM_SGML_PARSER_H
#include "dom/dom.h"
#include "dom/code.h"
#include "dom/node.h"
#include "dom/stack.h"
#include "dom/sgml/sgml.h"

View File

@ -1,7 +1,7 @@
#ifndef EL_DOM_STACK_H
#define EL_DOM_STACK_H
#include "dom/dom.h"
#include "dom/code.h"
#include "dom/node.h"
#include "util/error.h"
#include "util/hash.h"