Changeset 429
- Timestamp:
- 12/04/06 12:59:47
- Files:
-
- openpgpsdk/trunk/src/doxygen.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
openpgpsdk/trunk/src/doxygen.c
r426 r429 22 22 - \ref AdvancedAPI : follow this link for more details 23 23 24 \section section_examples Examples 25 26 The <code>examples</code> directory included in the distribution provides 27 various standalone applications which demonstrate usage of the library. 28 29 - \subpage page_examples : follow this link for more details 30 31 \section section_installation Installation 32 33 - \subpage page_installation : follow this link for installation instructions 34 35 \page page_examples Examples 36 37 TBD 38 39 \page page_installation Installation 40 41 TBD 24 */ 42 25 43 26 /** @defgroup StandardAPI Standard API … … 48 31 */ 49 32 50 /** @defgroup PublicAPI Public API 51 * These functions are public and available for external use. 52 * @{ 53 */ 33 /** @defgroup AdvancedAPI Advanced API 34 This API provides detailed control over all aspects of the SDK. 35 36 You may find that the easier-to-use Standard API meets your needs. 37 */ 38 54 39 /** 55 40 * @defgroup Parse Parse 41 * \ingroup AdvancedAPI 56 42 * These functions allow an OpenPGP object (for example, an OpenPGP message or keyring) to be parsed. 57 43 * … … 76 62 * - Users may define their own readers. 77 63 * 78 * @ingroup PublicAPI79 64 */ 80 65 /** 81 66 * @defgroup Create Create 67 * \ingroup AdvancedAPI 82 68 * These functions allow an OpenPGP object to be created. 83 69 * … … 98 84 * - Users may define their own writers. 99 85 * 100 * @ingroup PublicAPI101 86 */ 102 87 /** 103 88 * @defgroup Memory Memory 89 * \ingroup AdvancedAPI 104 90 * These functions relate to memory usage. 105 * @ingroup PublicAPI106 91 */ 107 92 /** 108 93 * @defgroup Show Show 94 * \ingroup AdvancedAPI 109 95 * These functions allow the contents to be displayed in human-readable form. 110 * @ingroup PublicAPI111 96 */ 112 97 /** 113 98 * @defgroup Utils Utils 99 * \ingroup AdvancedAPI 114 100 * These functions are of general utility. 115 * @ingroup PublicAPI116 101 */ 117 102 /** 118 103 * @defgroup Verify Verify 104 * \ingroup AdvancedAPI 119 105 * These functions are for verifying signatures. 120 * @ingroup PublicAPI121 */122 /**123 * @}124 106 */ 125 107 126 /** @defgroup PublicInternal Public-Internal API127 * These functions are public but should not normally be called.128 * @{129 */130 108 /** 131 * @defgroup IntCreate Create 132 * Used in Create functions 133 * 134 * @ingroup PublicInternal 135 */ 136 /** 137 * @} 109 * @defgroup Callbacks Callbacks 110 * \ingroup AdvancedAPI 111 * These callback functions are used when parsing or creating. 138 112 */ 139 113 140 /** @defgroup Internal Internal API141 * These functions are static.142 * @{143 */144 /**145 * @defgroup Callbacks Callbacks146 * These callback functions are used when parsing or creating.147 * @ingroup Internal148 */149 /**150 * @}151 */152
