From: Jim Fehlig Date: Fri, 15 Jan 2010 17:45:18 +0000 (-0700) Subject: Minor fixes for API extension doc X-Git-Tag: v0.7.6~179 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8d6af63a8a398997694967170b8832522d071b87;p=thirdparty%2Flibvirt.git Minor fixes for API extension doc Update the API Extensions doc to reflect new source directory layout. --- diff --git a/docs/api_extension.html.in b/docs/api_extension.html.in index 59d3414a5b..de6eedc877 100644 --- a/docs/api_extension.html.in +++ b/docs/api_extension.html.in @@ -178,7 +178,7 @@ involves making two additions to:

-

qemud/remote_protocol.x

+

src/remote/remote_protocol.x

First, create two new structs for each new function that you're adding @@ -198,7 +198,7 @@

Once these changes are in place, it's necessary to run 'make rpcgen' - in the qemud directory to create the .c and .h files required by the + in the src directory to create the .c and .h files required by the remote protocol code. This must be done on a Linux host using the GLibC rpcgen program. Other rpcgen versions may generate code which results in bogus compile time warnings @@ -213,7 +213,7 @@ the rpcgen generated .h files. The remote method calls go in:

-

src/remote_internal.c

+

src/remote/remote_internal.c

Each remote method invocation does the following:

@@ -243,7 +243,7 @@ The server side dispatchers are implemented in:

-

qemud/remote.c

+

daemon/remote.c

Again, this step uses the .h files generated by make rpcgen.