aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'docs/apibuild.py')
-rwxr-xr-xdocs/apibuild.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/apibuild.py b/docs/apibuild.py
index 2dda4df1b..62b75575b 100755
--- a/docs/apibuild.py
+++ b/docs/apibuild.py
@@ -22,6 +22,7 @@ included_files = {
"virterror.h": "header with error specific API definitions",
"libvirt.c": "Main interfaces for the libvirt library",
"virterror.c": "implements error handling and reporting code for libvirt",
+ "event.c": "event loop for monitoring file handles",
}
ignored_words = {
@@ -43,6 +44,12 @@ ignored_functions = {
"virDomainMigratePrepareTunnel": "private function for tunnelled migration",
"virDrvSupportsFeature": "private function for remote access",
"DllMain": "specific function for Win32",
+ "virEventAddHandle": "internal function in event.c",
+ "virEventUpdateHandle": "internal function in event.c",
+ "virEventRemoveHandle": "internal function in event.c",
+ "virEventAddTimeout": "internal function in event.c",
+ "virEventUpdateTimeout": "internal function in event.c",
+ "virEventRemoveTimeout": "internal function in event.c",
}
def escape(raw):