summaryrefslogtreecommitdiff
path: root/libgphoto2/gphoto2-library.c
diff options
context:
space:
mode:
authorHans Ulrich Niedermann <gp@n-dimensional.de>2007-09-04 21:01:01 +0000
committerHans Ulrich Niedermann <gp@n-dimensional.de>2007-09-04 21:01:01 +0000
commit0ee6a961c65e9feec71b202024ce3d4f62dd49dd (patch)
treedae54cc769b9ef2123e8f9531847444a5480b597 /libgphoto2/gphoto2-library.c
parentfcc85ce0821536eeca7e414d21b4da1751bc7134 (diff)
downloadlibgphoto2-0ee6a961c65e9feec71b202024ce3d4f62dd49dd.tar.gz
comment tuning
git-svn-id: https://svn.code.sf.net/p/gphoto/code/trunk/libgphoto2@10643 67ed7778-7388-44ab-90cf-0a291f65f57c
Diffstat (limited to 'libgphoto2/gphoto2-library.c')
-rw-r--r--libgphoto2/gphoto2-library.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/libgphoto2/gphoto2-library.c b/libgphoto2/gphoto2-library.c
index 2c3463020..0ec719683 100644
--- a/libgphoto2/gphoto2-library.c
+++ b/libgphoto2/gphoto2-library.c
@@ -48,7 +48,7 @@ camera_id (CameraText *id)
* This function should use #gp_abilities_list_append as many times as the
* number of models the camera driver supports. That is, fill out (in a loop)
* the #CameraAbilities for each model and append each of those to the
- * supplied list using #gp_abilities_list_append. Then, return %GP_OK.
+ * supplied list using gp_abilities_list_append(). Then, return #GP_OK.
*
* \returns a gphoto2 error code
**/
@@ -68,14 +68,14 @@ camera_abilities (CameraAbilitiesList *list)
* to the camera. That is, access camera->functions directly and set them
* to your implementation (if you have any). Then, tell the #CameraFilesystem
* (available in #camera->fs) how to retrieve lists
- * (#gp_filesystem_set_list_funcs), how to retrieve or set file information
- * (#gp_filesystem_set_info_funcs), how to get or delete files
- * (#gp_filesystem_set_file_funcs), or how to put files or delete all files
+ * (gp_filesystem_set_list_funcs()), how to retrieve or set file information
+ * (gp_filesystem_set_info_funcs()), how to get or delete files
+ * (gp_filesystem_set_file_funcs()), or how to put files or delete all files
* in a folder (#gp_filesystem_set_folder_funcs). After that, configure
- * the port (%camera->port) which is already opened by gphoto2. You just have
- * to call #gp_port_settings_get, adjust the settings, call
- * #gp_port_settings_set, and try to write to and read from the port.
- * If the camera responds, return %GP_OK. If not, return some
+ * the port (#camera->port) which is already opened by gphoto2. You just have
+ * to call gp_port_settings_get(), adjust the settings, call
+ * gp_port_settings_set(), and try to write to and read from the port.
+ * If the camera responds, return #GP_OK. If not, return some
* meaningful error code.
*
* \returns a gphoto2 error code