diff options
author | Jari Vetoniemi <mailroxas@gmail.com> | 2014-03-28 22:14:13 +0200 |
---|---|---|
committer | Jari Vetoniemi <mailroxas@gmail.com> | 2014-03-28 22:14:13 +0200 |
commit | 92aa6367b815d337a9ad7a2c7a9fb6dba224423f (patch) | |
tree | 2c59ef0bd6a0c7605a707e343f99b0bbca4e0cf3 | |
parent | 13c470fb398ded391cd4b954cb98097aea6dd07d (diff) | |
download | bemenu-92aa6367b815d337a9ad7a2c7a9fb6dba224423f.tar.gz bemenu-92aa6367b815d337a9ad7a2c7a9fb6dba224423f.tar.bz2 bemenu-92aa6367b815d337a9ad7a2c7a9fb6dba224423f.zip |
These structs are not typedefs.
-rw-r--r-- | lib/internal.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/internal.h b/lib/internal.h index 388de08..c79ffd1 100644 --- a/lib/internal.h +++ b/lib/internal.h @@ -10,7 +10,7 @@ */ struct _bmItem { char *text; -} _bmItem; +}; /** * Internal bmRenderApi struct. @@ -19,7 +19,7 @@ struct _bmItem { struct _bmRenderApi { void (*render)(struct _bmItem **items, unsigned int nmemb); void (*free)(void); -} _bmRenderApi; +}; /** * Internal bmMenu struct that is not exposed to public. @@ -29,6 +29,6 @@ struct _bmMenu { struct _bmRenderApi renderApi; struct _bmItem **items; unsigned int itemsCount; -} _bmMenu; +}; /* vim: set ts=8 sw=4 tw=0 :*/ |