Commit 7f7ac1c2 authored by Martin Szulecki's avatar Martin Szulecki Committed by Jonathan Beck

Update doxygen documentation generation to be useful.

parent 6710f4bf
This diff is collapsed.
/* /**
* plist.h * @file plist/plist.h
* Main include of libplist * @brief Main include of libplist
* \internal
* *
* Copyright (c) 2008 Jonathan Beck All Rights Reserved. * Copyright (c) 2008 Jonathan Beck All Rights Reserved.
* *
...@@ -174,7 +175,7 @@ extern "C" ...@@ -174,7 +175,7 @@ extern "C"
/** /**
* Return a copy of passed node and it's children * Return a copy of passed node and it's children
* *
* @param plist the plist to copy * @param node the plist to copy
* @return copied plist * @return copied plist
*/ */
PLIST_API plist_t plist_copy(plist_t node); PLIST_API plist_t plist_copy(plist_t node);
...@@ -401,6 +402,7 @@ extern "C" ...@@ -401,6 +402,7 @@ extern "C"
* @param node the node * @param node the node
* @param val a pointer to an unallocated char buffer. This function allocates the memory, * @param val a pointer to an unallocated char buffer. This function allocates the memory,
* caller is responsible for freeing it. * caller is responsible for freeing it.
* @param length the length of the buffer
*/ */
PLIST_API void plist_get_data_val(plist_t node, char **val, uint64_t * length); PLIST_API void plist_get_data_val(plist_t node, char **val, uint64_t * length);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment