diff options
author | Paul McLean <pmclean@google.com> | 2019-03-13 13:34:49 -0600 |
---|---|---|
committer | Paul McLean <pmclean@google.com> | 2019-03-13 14:24:06 -0600 |
commit | 6faa372212e5e3d5508749468ad73a858d1dee76 (patch) | |
tree | 7de994d864d8c30701745c2b3d582ba9f6684ede /media/native | |
parent | 5b7a3053a257ba8caa0d77c518b3ba9d27ee1fc1 (diff) |
Adding "@defgroup" DOxygen tag to AMidi
Bug: 122672555
Test: Build DOxygen docs
Change-Id: I2022facfab601da63a64682188d31821b33bb8cc
Diffstat (limited to 'media/native')
-rw-r--r-- | media/native/midi/include/Doxyfile | 2 | ||||
-rw-r--r-- | media/native/midi/include/amidi/AMidi.h | 11 |
2 files changed, 12 insertions, 1 deletions
diff --git a/media/native/midi/include/Doxyfile b/media/native/midi/include/Doxyfile index 2828f4816342..e40bbdc9fa67 100644 --- a/media/native/midi/include/Doxyfile +++ b/media/native/midi/include/Doxyfile @@ -790,7 +790,7 @@ WARN_LOGFILE = # spaces. See also FILE_PATTERNS and EXTENSION_MAPPING # Note: If this tag is empty the current directory is searched. -INPUT = "midi.h" +INPUT = "amidi/AMidi.h" # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses diff --git a/media/native/midi/include/amidi/AMidi.h b/media/native/midi/include/amidi/AMidi.h index 0d60b0dd63d4..cbe410f46af9 100644 --- a/media/native/midi/include/amidi/AMidi.h +++ b/media/native/midi/include/amidi/AMidi.h @@ -13,6 +13,14 @@ * See the License for the specific language governing permissions and * limitations under the License. */ +/** + * @addtogroup Midi + * @{ + */ + +/** + * @file AMidi.h + */ #ifndef ANDROID_MEDIA_AMIDI_H_ #define ANDROID_MEDIA_AMIDI_H_ @@ -244,3 +252,6 @@ void AMIDI_API AMidiInputPort_close(const AMidiInputPort *inputPort) __INTRODUCE #endif #endif /* ANDROID_MEDIA_AMIDI_H_ */ +/** +@} +*/ |