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
+3 -2
View File
@@ -37,13 +37,14 @@
//#include "drv_base.h"
/* private data structure */
typedef struct driver_private_data {
/* private data structure for the \c text driver */
typedef struct text_private_data {
int width;
int height;
char *framebuf;
} PrivateData;
/* Vars for the server core */
MODULE_EXPORT char *api_version = API_VERSION;
MODULE_EXPORT int stay_in_foreground = 0;