make private data structs unique to keep Doxygen happy

This commit is contained in:
marschap
2008-12-21 17:15:03 +00:00
parent a273c98182
commit 969e1369c0
8 changed files with 67 additions and 68 deletions
+3 -2
View File
@@ -58,8 +58,9 @@ typedef struct cgram_cache {
int clean;
} CGram;
typedef struct {
/** private data for the \c lis driver */
typedef struct lis_private_data {
// the handle for the USB FTDI library
struct ftdi_context ftdic;
@@ -98,9 +99,9 @@ typedef struct {
/* underline effect (false). To avoid the underline effect in the latter case, the last */
/* line is always zeroed for whatever redefined character */
char lastline;
} PrivateData;
MODULE_EXPORT int lis_init(Driver *drvthis);
MODULE_EXPORT void lis_close (Driver *drvthis);
MODULE_EXPORT int lis_width (Driver *drvthis);