Update of /cvsroot/ggi/ggi-libs/libgiigic/doc/man
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6810
Modified Files:
gicActionWrite.3 gicContextAllocate.3 gicControlAllocate.3
gicFeatureActivate.3 gicFeatureAllocate.3
gicFeatureAttachAction.3 gicFeatureAttachRecognizerDriver.3
gicFeatureMapActions.3 gicFeatureWrite.3 gicHeadAllocate.3
gicInit.3 gicInputRegister.3 gicOpen.3
gicRecognizerDriverRegister.3 gicRecognizerTrain.3
gicRecognizerWrite.3 libgiigic.7
Log Message:
regenerate manpages
Index: gicActionWrite.3
===================================================================
RCS file: /cvsroot/ggi/ggi-libs/libgiigic/doc/man/gicActionWrite.3,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- gicActionWrite.3 18 Oct 2004 15:56:33 -0000 1.2
+++ gicActionWrite.3 28 Oct 2004 05:31:13 -0000 1.3
@@ -1,4 +1,4 @@
-.TH "gicActionWrite" 3 "2004-10-17" "libgiigic-current" GGI
+.TH "gicActionWrite" 3 "2004-10-28" "libgiigic-current" GGI
.SH NAME
\fBgicActionWrite\fR, \fBgicActionMapActions\fR : Action handling
.SH SYNOPSIS
Index: gicContextAllocate.3
===================================================================
RCS file: /cvsroot/ggi/ggi-libs/libgiigic/doc/man/gicContextAllocate.3,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- gicContextAllocate.3 19 Oct 2004 14:13:53 -0000 1.3
+++ gicContextAllocate.3 28 Oct 2004 05:31:13 -0000 1.4
@@ -1,4 +1,4 @@
-.TH "gicContextAllocate" 3 "2004-10-17" "libgiigic-current" GGI
+.TH "gicContextAllocate" 3 "2004-10-28" "libgiigic-current" GGI
.SH NAME
\fBgicContextAllocate\fR, \fBgicContextFree\fR, \fBgicContextAttachControl\fR, \fBgicContextDetachControl\fR, \fBgicContextLookupControl\fR, \fBgicContextGetControl\fR, \fBgicContextNumControls\fR, \fBgicContextGetName\fR, \fBgicContextWrite\fR, \fBgicContextRead\fR, \fBgicContextMapActions\fR, \fBgicContextFindConflict\fR, \fBgicContextHandleEvent\fR : Contexts
.SH SYNOPSIS
@@ -40,42 +40,52 @@
It can have multiple subobjects (called features) that can further
break that down (e.g. into up/down/left/right).
-Most applications will not need to handle that themselves. gicHeadRead()
+Most applications will not need to handle that themselves. \fBgicHeadRead()\fR
will provide all they need. For those that want to build up contexts
themselves, the following functions are provided:
-To allocate a new gic_context, call gicContextAllocate(). To free a
-context that is not needed anymore, call gicContextFree().
+To allocate a new gic_context, call \fBgicContextAllocate()\fR. To free a
+context that is not needed anymore, call \fBgicContextFree()\fR.
-gicContextAttachControl() and gicContextDetachControl() are used to
+\fBgicContextAttachControl()\fR and \fBgicContextDetachControl()\fR are used to
attach and detach controls from a context. A control refers to a
collection of features that describe a common motion. Most contexts
will have multiple such controls, like one for sliding and one for
turning a player.
-gicContextLookupControl() and gicContextGetControl() can be used to get
+\fBgicContextLookupControl()\fR and \fBgicContextGetControl()\fR can be used to get
access to controls attached to a context. The former accesses the controls
-by name, the latter by number. You can use gicContextNumControls() to
+by name, the latter by number. You can use \fBgicContextNumControls()\fR to
query for the number of controls.
-gicContextGetName() can be used to query for the name of a context.
+\fBgicContextGetName()\fR can be used to query for the name of a context.
-gicContextWrite() writes a description of the context given to the given
-file. It can be read back with gicContextRead() which will allocate and
-return context if successful. Afterwards gicContextMapActions() should be
+\fBgicContextWrite()\fR writes a description of the context given to the given
+file. It can be read back with \fBgicContextRead()\fR which will allocate and
+return context if successful. Afterwards \fBgicContextMapActions()\fR should be
called to reestablish the mapping between actions and callbacks.
-In learning-mode, gicContextFindConflict() is useful to check, if there are
+In learning-mode, \fBgicContextFindConflict()\fR is useful to check, if there are
conflicting controls.
When the context is active, you feed it with events using
-gicContextHandleEvent() which will cause it to activate the relevant
+\fBgicContextHandleEvent()\fR which will cause it to activate the relevant
callbacks.
When an application is in a context, you should feed the events to
-gicContextHandleEvent() to activate the relevant
+\fBgicContextHandleEvent()\fR to activate the relevant
callbacks.
-
-TODO Write more here
.SH RETURN VALUE
+\fBgicContextRead()\fR and \fBgicContextAllocate()\fR return the read/allocated
+context on return or NULL on failure.
+
+\fBgicContextAttachControl()\fR, \fBgicContextDetachControl()\fR, \fBgicContextWrite()\fR
+and \fBgicContextMapActions()\fR return 0 on success and an error code on failure.
+
+\fBgicContextLookupControl()\fR and \fBgicContextGetControl()\fR return the requested
+control or NULL on failure.
+
+\fBgicContextNumControls()\fR return the number of controls attached to the
+context.
.SH SEE ALSO
+\fBgicHeadRead(3)\fR
Index: gicControlAllocate.3
===================================================================
RCS file: /cvsroot/ggi/ggi-libs/libgiigic/doc/man/gicControlAllocate.3,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- gicControlAllocate.3 19 Oct 2004 14:13:53 -0000 1.3
+++ gicControlAllocate.3 28 Oct 2004 05:31:13 -0000 1.4
@@ -1,4 +1,4 @@
-.TH "gicControlAllocate" 3 "2004-10-17" "libgiigic-current" GGI
+.TH "gicControlAllocate" 3 "2004-10-28" "libgiigic-current" GGI
.SH NAME
\fBgicControlAllocate\fR, \fBgicControlFree\fR, \fBgicControlAttachFeature\fR, \fBgicControlDetachFeature\fR, \fBgicControlLookupFeature\fR, \fBgicControlGetFeature\fR, \fBgicControlNumFeatures\fR, \fBgicControlGetName\fR, \fBgicControlWrite\fR, \fBgicControlRead\fR, \fBgicControlMapActions\fR, \fBgicControlFindConflict\fR, \fBgicControlHandleEvent\fR : Controls
.SH SYNOPSIS
@@ -35,36 +35,46 @@
.fi
.SH DESCRIPTION
-A gic_control is libgiigic's notion of a collection of things that control a
+A gic_control is LIBGIIGIC's notion of a collection of things that control a
motion or similar.
Usually applications do not need to handle this themselves.
-To allocate a new gic_control, call gicControlAllocate(). To free a
-context that is not needed anymore, call gicControlFree().
+To allocate a new gic_control, call \fBgicControlAllocate()\fR. To free a
+context that is not needed anymore, call \fBgicControlFree()\fR.
-gicControlAttachFeature() and gicControlDetachFeature() are used to
+\fBgicControlAttachFeature()\fR and \fBgicControlDetachFeature()\fR are used to
attach and detach features from a control. Multiple features like
up/down/left/right make up a control (like sliding).
-gicControlLookupFeature() and gicControlGetFeature() can be used to get
+\fBgicControlLookupFeature()\fR and \fBgicControlGetFeature()\fR can be used to get
access to features attached to a control. The former accesses the features
-by name, the latter by number. You can use gicControlNumFeatures() to
+by name, the latter by number. You can use \fBgicControlNumFeatures()\fR to
query for the number of controls.
-gicControlGetName() can be used to query for the name of a control.
+\fBgicControlGetName()\fR can be used to query for the name of a control.
-gicControlWrite() writes a description of the control given to the given
-file. It can be read back with gicContextRead() which will allocate and
-return a control if successful. Afterwards gicControlMapActions() should be
+\fBgicControlWrite()\fR writes a description of the control given to the given
+\fBfile\fR. It can be read back with \fBgicContextRead()\fR which will allocate and
+return a control if successful. Afterwards \fBgicControlMapActions()\fR should be
called to reestablish the mapping between actions and callbacks.
-In learning-mode, gicControlFindConflict() is useful to check, if there are
+In learning-mode, \fBgicControlFindConflict()\fR is useful to check, if there are
conflicting controls.
-You can feed events to gicControlHandleEvent() to activate the relevant
-callbacks. However, usually one uses gicContextHandleEvent().
-
-TODO Write something useful here
+You can feed events to \fBgicControlHandleEvent()\fR to activate the relevant
+callbacks. However, usually one uses \fBgicContextHandleEvent()\fR.
.SH RETURN VALUE
+\fBgicControlRead()\fR and \fBgicControlAllocate()\fR return the read/allocated
+context on return or NULL on failure.
+
+\fBgicControlAttachFeature()\fR, \fBgicControlDetachFeature()\fR, \fBgicControlWrite()\fR
+and \fBgicControlMapActions()\fR return \fB0\fR on success and an error code on failure.
+
+\fBgicControlLookupFeature()\fR and \fBgicControlGetFeature()\fR return the requested
+feature or NULL on failure.
+
+\fBgicControlNumFeatures()\fR return the number of features attached to the
+control.
.SH SEE ALSO
+\fBgicContextRead(3)\fR
Index: gicFeatureActivate.3
===================================================================
RCS file: /cvsroot/ggi/ggi-libs/libgiigic/doc/man/gicFeatureActivate.3,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- gicFeatureActivate.3 19 Oct 2004 14:13:54 -0000 1.3
+++ gicFeatureActivate.3 28 Oct 2004 05:31:13 -0000 1.4
@@ -1,4 +1,4 @@
-.TH "gicFeatureActivate" 3 "2004-10-17" "libgiigic-current" GGI
+.TH "gicFeatureActivate" 3 "2004-10-28" "libgiigic-current" GGI
.SH NAME
\fBgicFeatureActivate\fR, \fBgicFeatureHandleEvent\fR : Event handling
.SH SYNOPSIS
@@ -14,12 +14,11 @@
.fi
.SH DESCRIPTION
-To manually activate a feature, call gicFeatureActivate(). This will
+To manually activate a feature, call \fBgicFeatureActivate()\fR. This will
activate the relevant callbacks.
-You can feed events to gicFeatureHandleEvent() to activate the relevant
-callbacks. However, usually one uses gicContextHandleEvent().
-
-TODO Write something useful here
+You can feed events to \fBgicFeatureHandleEvent()\fR to activate the relevant
+callbacks. However, usually one uses \fBgicContextHandleEvent()\fR.
.SH RETURN VALUE
.SH SEE ALSO
+\fBgicContextHandleEvent(3)\fR
Index: gicFeatureAllocate.3
===================================================================
RCS file: /cvsroot/ggi/ggi-libs/libgiigic/doc/man/gicFeatureAllocate.3,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- gicFeatureAllocate.3 18 Oct 2004 15:56:34 -0000 1.2
+++ gicFeatureAllocate.3 28 Oct 2004 05:31:13 -0000 1.3
@@ -1,4 +1,4 @@
-.TH "gicFeatureAllocate" 3 "2004-10-17" "libgiigic-current" GGI
+.TH "gicFeatureAllocate" 3 "2004-10-28" "libgiigic-current" GGI
.SH NAME
\fBgicFeatureAllocate\fR, \fBgicFeatureFree\fR : Allocate Features
.SH SYNOPSIS
Index: gicFeatureAttachAction.3
===================================================================
RCS file: /cvsroot/ggi/ggi-libs/libgiigic/doc/man/gicFeatureAttachAction.3,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- gicFeatureAttachAction.3 18 Oct 2004 15:56:34 -0000 1.2
+++ gicFeatureAttachAction.3 28 Oct 2004 05:31:13 -0000 1.3
@@ -1,4 +1,4 @@
-.TH "gicFeatureAttachAction" 3 "2004-10-17" "libgiigic-current" GGI
+.TH "gicFeatureAttachAction" 3 "2004-10-28" "libgiigic-current" GGI
.SH NAME
\fBgicFeatureAttachAction\fR, \fBgicFeatureDetachAction\fR, \fBgicFeatureWrite\fR, \fBgicFeatureRead\fR : Bind Features and Actions
.SH SYNOPSIS
@@ -22,6 +22,10 @@
.fi
.SH DESCRIPTION
-TODO Write something useful here
+\fBgicFeatureAttachAction()\fR and \fBgicFeatureDetachAction()\fR are used to bind an
+action (i.e. a callback function) to a feature. This is usually handled
+by higher layers, which map whole sets of actions using a gic_actionlist.
.SH RETURN VALUE
+\fBgicFeatureAttachAction()\fR and \fBgicFeatureDetachAction()\fR return 0 on success
+and an errorcode on failure.
.SH SEE ALSO
Index: gicFeatureAttachRecognizerDriver.3
===================================================================
RCS file: /cvsroot/ggi/ggi-libs/libgiigic/doc/man/gicFeatureAttachRecognizerDriver.3,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- gicFeatureAttachRecognizerDriver.3 18 Oct 2004 15:56:34 -0000 1.2
+++ gicFeatureAttachRecognizerDriver.3 28 Oct 2004 05:31:13 -0000 1.3
@@ -1,4 +1,4 @@
-.TH "gicFeatureAttachRecognizerDriver" 3 "2004-10-17" "libgiigic-current" GGI
+.TH "gicFeatureAttachRecognizerDriver" 3 "2004-10-28" "libgiigic-current" GGI
.SH NAME
\fBgicFeatureAttachRecognizerDriver\fR, \fBgicFeatureAttachRecognizer\fR, \fBgicFeatureDetachRecognizer\fR, \fBgicFeatureGetRecognizer\fR, \fBgicFeatureNumRecognizers\fR, \fBgicFeatureGetName\fR : Bind Features with Recognizers
.SH SYNOPSIS
Index: gicFeatureMapActions.3
===================================================================
RCS file: /cvsroot/ggi/ggi-libs/libgiigic/doc/man/gicFeatureMapActions.3,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- gicFeatureMapActions.3 18 Oct 2004 15:56:34 -0000 1.2
+++ gicFeatureMapActions.3 28 Oct 2004 05:31:13 -0000 1.3
@@ -1,4 +1,4 @@
-.TH "gicFeatureMapActions" 3 "2004-10-17" "libgiigic-current" GGI
+.TH "gicFeatureMapActions" 3 "2004-10-28" "libgiigic-current" GGI
.SH NAME
\fBgicFeatureMapActions\fR, \fBgicFeatureFindConflict\fR : Feature mappings
.SH SYNOPSIS
@@ -15,6 +15,10 @@
.fi
.SH DESCRIPTION
-TODO Write something useful here
+\fBgicFeatureMapActions()\fR is called to reestablish the connection between
+the actions and the action callbacks.
+
+In learning-mode, \fBgicFeatureFindConflict()\fR is useful to check, if there are
+conflicting features.
.SH RETURN VALUE
.SH SEE ALSO
Index: gicFeatureWrite.3
===================================================================
RCS file: /cvsroot/ggi/ggi-libs/libgiigic/doc/man/gicFeatureWrite.3,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- gicFeatureWrite.3 18 Oct 2004 15:56:34 -0000 1.2
+++ gicFeatureWrite.3 28 Oct 2004 05:31:13 -0000 1.3
@@ -1,4 +1,4 @@
-.TH "gicFeatureWrite" 3 "2004-10-17" "libgiigic-current" GGI
+.TH "gicFeatureWrite" 3 "2004-10-28" "libgiigic-current" GGI
.SH NAME
\fBgicFeatureWrite\fR, \fBgicFeatureRead\fR : Load and Save Feature
.SH SYNOPSIS
@@ -13,6 +13,10 @@
.fi
.SH DESCRIPTION
-TODO Write something useful here
+\fBgicFeatureWrite()\fR writes a description of the feature given to the given
+file. It can be read back with \fBgicFeatureRead()\fR which will allocate and
+return a feature if successful. Afterwards \fBgicFeatureMapActions()\fR should be
+called to reestablish the mapping between actions and callbacks.
.SH RETURN VALUE
.SH SEE ALSO
+\fBgicFeatureMapActions(3)\fR
Index: gicHeadAllocate.3
===================================================================
RCS file: /cvsroot/ggi/ggi-libs/libgiigic/doc/man/gicHeadAllocate.3,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- gicHeadAllocate.3 19 Oct 2004 14:13:54 -0000 1.3
+++ gicHeadAllocate.3 28 Oct 2004 05:31:13 -0000 1.4
@@ -1,4 +1,4 @@
-.TH "gicHeadAllocate" 3 "2004-10-17" "libgiigic-current" GGI
+.TH "gicHeadAllocate" 3 "2004-10-28" "libgiigic-current" GGI
.SH NAME
\fBgicHeadAllocate\fR, \fBgicHeadFree\fR, \fBgicHeadAttachContext\fR, \fBgicHeadDetachContext\fR, \fBgicHeadLookupContext\fR, \fBgicHeadGetContext\fR, \fBgicHeadNumContexts\fR, \fBgicHeadWrite\fR, \fBgicHeadRead\fR, \fBgicHeadMapActions\fR : Heads
.SH SYNOPSIS
@@ -29,7 +29,7 @@
.fi
.SH DESCRIPTION
-A gic_head is libgiigics notion of a collection of contexts. Each context
+A gic_head is LIBGIIGIC's notion of a collection of contexts. Each context
describes the mappings between inputs and actions for a given situation
in a program.
@@ -37,41 +37,41 @@
managed by libgiigic.
Usually a program will not have to bother with most functions as it will
-read its config via gicHeadRead(). However when building apps that
+read its config via \fBgicHeadRead()\fR. However when building apps that
can (re)build the configuration files, the other functions become useful.
-A gic_head is allocated using gicHeadAllocate(), which takes the gic handle
+A gic_head is allocated using \fBgicHeadAllocate()\fR, which takes the gic handle
it will be associated with and a name for the Head. It returns the allocated
head or NULL on failure.
-gicHeadFree() frees an allocated gic_head.
+\fBgicHeadFree()\fR frees an allocated gic_head.
-gicHeadAttachContext() and gicHeadDetachContext() are used to attach and
+\fBgicHeadAttachContext()\fR and \fBgicHeadDetachContext()\fR are used to attach and
detach contexts from a head. A context refers to a situation in a program
that has an input mapping attached to it. Most programs will have multiple
such contexts, like one for accessing the menus, one for the game mode,
etc.
-gicHeadLookupContext() and gicHeadGetContext() can be used to get access to
+\fBgicHeadLookupContext()\fR and \fBgicHeadGetContext()\fR can be used to get access to
contexts attached to a head. The former accesses the contexts by name, the
-latter by number. You can use gicHeadNumContexts() to query for the number
+latter by number. You can use \fBgicHeadNumContexts()\fR to query for the number
of contexts.
-gicHeadWrite() can be used to write out a textual description of the head.
+\fBgicHeadWrite()\fR can be used to write out a textual description of the head.
This is usually used to write out a config file after it changed.
-gicHeadRead() will read such a file, allocate a gic_head and fill it with
-the read data. After that, you should call gicHeadMapActions() to
+\fBgicHeadRead()\fR will read such a \fBfile\fR, allocate a gic_head and fill it with
+the read data. After that, you should call \fBgicHeadMapActions()\fR to
reestablish the connection between the actions and the action callbacks.
.SH RETURN VALUE
-gicHeadRead() and gicHeadAllocate() return the read/allocated head on return
+\fBgicHeadRead()\fR and \fBgicHeadAllocate()\fR return the read/allocated head on return
or NULL on failure.
-gicHeadAttachContext(), gicHeadDetachContext(), gicHeadWrite() and
-gicHeadMapActions() return 0 on success and an error code on failure.
+\fBgicHeadAttachContext()\fR, \fBgicHeadDetachContext()\fR, \fBgicHeadWrite()\fR and
+\fBgicHeadMapActions()\fR return 0 on success and an error code on failure.
-gicHeadLookupContext() and gicHeadGetContext() return the requested context
+\fBgicHeadLookupContext()\fR and \fBgicHeadGetContext()\fR return the requested context
or NULL on failure.
-gicHeadNumContexts() return the number of contexts attached to the head.
+\fBgicHeadNumContexts()\fR return the number of contexts attached to the head.
.SH SEE ALSO
Index: gicInit.3
===================================================================
RCS file: /cvsroot/ggi/ggi-libs/libgiigic/doc/man/gicInit.3,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- gicInit.3 18 Oct 2004 15:56:34 -0000 1.3
+++ gicInit.3 28 Oct 2004 05:31:13 -0000 1.4
@@ -1,4 +1,4 @@
-.TH "gicInit" 3 "2004-10-17" "libgiigic-current" GGI
+.TH "gicInit" 3 "2004-10-28" "libgiigic-current" GGI
.SH NAME
\fBgicInit\fR, \fBgiiExit\fR : Initialize and uninitialize LibGIIGIC
.SH SYNOPSIS
Index: gicInputRegister.3
===================================================================
RCS file: /cvsroot/ggi/ggi-libs/libgiigic/doc/man/gicInputRegister.3,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- gicInputRegister.3 18 Oct 2004 15:56:34 -0000 1.2
+++ gicInputRegister.3 28 Oct 2004 05:31:13 -0000 1.3
@@ -1,4 +1,4 @@
-.TH "gicInputRegister" 3 "2004-10-17" "libgiigic-current" GGI
+.TH "gicInputRegister" 3 "2004-10-28" "libgiigic-current" GGI
.SH NAME
\fBgicInputRegister\fR : Associate a gii handle with gic
.SH SYNOPSIS
Index: gicOpen.3
===================================================================
RCS file: /cvsroot/ggi/ggi-libs/libgiigic/doc/man/gicOpen.3,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- gicOpen.3 18 Oct 2004 15:56:34 -0000 1.3
+++ gicOpen.3 28 Oct 2004 05:31:13 -0000 1.4
@@ -1,4 +1,4 @@
-.TH "gicOpen" 3 "2004-10-17" "libgiigic-current" GGI
+.TH "gicOpen" 3 "2004-10-28" "libgiigic-current" GGI
.SH NAME
\fBgicOpen\fR, \fBgicClose\fR : Open and close a recogzizer
.SH SYNOPSIS
Index: gicRecognizerDriverRegister.3
===================================================================
RCS file: /cvsroot/ggi/ggi-libs/libgiigic/doc/man/gicRecognizerDriverRegister.3,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- gicRecognizerDriverRegister.3 18 Oct 2004 15:56:34 -0000 1.3
+++ gicRecognizerDriverRegister.3 28 Oct 2004 05:31:13 -0000 1.4
@@ -1,4 +1,4 @@
-.TH "gicRecognizerDriverRegister" 3 "2004-10-17" "libgiigic-current" GGI
+.TH "gicRecognizerDriverRegister" 3 "2004-10-28" "libgiigic-current" GGI
.SH NAME
\fBgicRecognizerDriverRegister\fR, \fBgicRecognizerDriverUnregister\fR, \fBgicRecognizerDriverLookup\fR : Adjust Recognizers
.SH SYNOPSIS
Index: gicRecognizerTrain.3
===================================================================
RCS file: /cvsroot/ggi/ggi-libs/libgiigic/doc/man/gicRecognizerTrain.3,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- gicRecognizerTrain.3 18 Oct 2004 15:56:34 -0000 1.2
+++ gicRecognizerTrain.3 28 Oct 2004 05:31:13 -0000 1.3
@@ -1,4 +1,4 @@
-.TH "gicRecognizerTrain" 3 "2004-10-17" "libgiigic-current" GGI
+.TH "gicRecognizerTrain" 3 "2004-10-28" "libgiigic-current" GGI
.SH NAME
\fBgicRecognizerTrain\fR, \fBgicRecognizerTrainStart\fR, \fBgicRecognizerTrainStop\fR, \fBgicRecognizerTrainAdd\fR, \fBgicRecognizerTrainMove\fR, \fBgicRecognizerFindConflict\fR, \fBgicRecognizerGetName\fR, \fBgicRecognizerGetOpposite\fR : Train recognizers
.SH SYNOPSIS
Index: gicRecognizerWrite.3
===================================================================
RCS file: /cvsroot/ggi/ggi-libs/libgiigic/doc/man/gicRecognizerWrite.3,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- gicRecognizerWrite.3 18 Oct 2004 15:56:34 -0000 1.2
+++ gicRecognizerWrite.3 28 Oct 2004 05:31:13 -0000 1.3
@@ -1,4 +1,4 @@
-.TH "gicRecognizerWrite" 3 "2004-10-17" "libgiigic-current" GGI
+.TH "gicRecognizerWrite" 3 "2004-10-28" "libgiigic-current" GGI
.SH NAME
\fBgicRecognizerWrite\fR : Recognizer dump
.SH SYNOPSIS
Index: libgiigic.7
===================================================================
RCS file: /cvsroot/ggi/ggi-libs/libgiigic/doc/man/libgiigic.7,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- libgiigic.7 27 Oct 2004 12:47:16 -0000 1.5
+++ libgiigic.7 28 Oct 2004 05:31:13 -0000 1.6
@@ -1,4 +1,4 @@
-.TH "libgiigic" 7 "2004-10-17" "libgiigic-current" GGI
+.TH "libgiigic" 7 "2004-10-28" "libgiigic-current" GGI
.SH NAME
\fBlibgiigic\fR : A flexible library for action/event binding
.SH DESCRIPTION
|