diff options
Diffstat (limited to 'navit/window.h')
-rw-r--r-- | navit/window.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/navit/window.h b/navit/window.h index b2e2acb7a..706bea798 100644 --- a/navit/window.h +++ b/navit/window.h @@ -17,8 +17,11 @@ * Boston, MA 02110-1301, USA. */ +/** + * Describes the Navit application window or equivalent. + */ struct window { - void *priv; - int (*fullscreen)(struct window *win, int on); - void (*disable_suspend)(struct window *win); + void *priv; /**< Private data of the graphics implementation */ + int (*fullscreen)(struct window *win, int on); /**< Method to toggle fullscreen mode */ + void (*disable_suspend)(struct window *win); /**< Method to disable suspend mode or screen savers */ }; |