root/nxos/base/_display.h

Revision 573:a67079b70747, 0.7 kB (checked in by David Anderson <dave@…>, 7 months ago)

Regroup the documentation for kernel internal APIs.

Line 
1/** @file _display.h
2 *  @brief Internal display APIs.
3 */
4
5/* Copyright (c) 2007,2008 the NxOS developers
6 *
7 * See AUTHORS for a full list of the developers.
8 *
9 * Redistribution of this file is permitted under
10 * the terms of the GNU Public License (GPL) version 2.
11 */
12#ifndef __NXOS_BASE__DISPLAY_H__
13#define __NXOS_BASE__DISPLAY_H__
14
15#include "base/types.h"
16#include "display.h"
17
18/** @addtogroup kernelinternal */
19/*@{*/
20
21/** @defgroup displayinternal Display internals
22 *
23 * The display's initialization function is private, since the baseplate
24 * is the only one that should be able to initialize it.
25 */
26/*@{*/
27
28/** Initialize the display driver. */
29void nx__display_init(void);
30
31/*@}*/
32/*@}*/
33
34#endif /* __NXOS_BASE__DISPLAY_H__ */
Note: See TracBrowser for help on using the browser.