extend Doxygen-ization; name private data struct to make Doxygen happy

This commit is contained in:
marschap
2008-12-21 16:43:50 +00:00
parent b54a4e3706
commit 92df94302b
+14 -13
View File
@@ -1,6 +1,6 @@
/** \file server/drivers/EyeboxOne.c /** \file server/drivers/EyeboxOne.c
* LCDd \c EyeboxOne driver for the display used in the Eyebox ONE server * LCDd \c EyeboxOne driver for the display used in the Eyebox ONE server
* by Rightvision. * by RightVision.
*/ */
/* This is the LCDproc driver for EyeboxOne devices /* This is the LCDproc driver for EyeboxOne devices
@@ -66,17 +66,18 @@
#define LED_ORANGE 2 #define LED_ORANGE 2
#define LED_GREEN 3 #define LED_GREEN 3
typedef struct p { /** private data for the \c EyeBoxOne driver */
typedef struct EyeboxOne_private_data {
int def[9]; int def[9];
int use[9]; int use[9];
int backlight_state; /* static data from EyeboxOne_backlight */ int backlight_state; /**< static data from EyeboxOne_backlight */
int width; int width; /**< display width in characters */
int height; int height; /**< display height in characters */
char *framebuf; /* Frame buffer */ char *framebuf; /**< frame buffer */
char *old; /* Current on screen frame buffer */ char *old; /**< current on screen frame buffer */
int widthBYheight; /* Avoid computing width * height frequently */ int widthBYheight; /**< avoid computing width * height frequently */
int clear; /* Control when the LCD is cleared */ int clear; /**< control when the LCD is cleared */
int fd; /* The LCD file descriptor */ int fd; /**< display file descriptor */
int backlightenabled; int backlightenabled;
int cursorenabled; int cursorenabled;
char left_key; char left_key;
@@ -86,9 +87,9 @@ typedef struct p {
char enter_key; char enter_key;
char escape_key; char escape_key;
int keypad_test_mode; int keypad_test_mode;
int cellwidth; int cellwidth; /**< character cell width */
int cellheight; int cellheight; /**< character cell height */
char info[255]; char info[255]; /**< info string contents */
/* LibData *libdata; */ /* LibData *libdata; */
/* Private Data of the new library: Work in progress */ /* Private Data of the new library: Work in progress */
} PrivateData; } PrivateData;