make PrivateData appear as driver-specific data structures for Doxygen

This commit is contained in:
marschap
2008-12-07 19:41:36 +00:00
parent 32345f6ad8
commit ff75ce809f
33 changed files with 70 additions and 40 deletions
+4 -5
View File
@@ -14,12 +14,11 @@
#define CELLWIDTH 6
#define CELLHEIGHT 8
typedef struct driver_private_data {
/* xosd handle */
xosd *osd;
/** private data for the \c xosd driver */
typedef struct xosd_private_data {
xosd *osd; /**< xosd handle */
/* xosd properties */
char font[256];
char font[256]; /**< xosd font properties */
/* dimensions */
int width, height;