diff options
author | martin-s <martin-s@ffa7fe5e-494d-0410-b361-a75ebd5db220> | 2008-05-18 10:01:53 +0000 |
---|---|---|
committer | martin-s <martin-s@ffa7fe5e-494d-0410-b361-a75ebd5db220> | 2008-05-18 10:01:53 +0000 |
commit | 0b74d7f4ee6d448ac811e2741e8cb1ed04f5ce76 (patch) | |
tree | be7bb1cb1020f4022e41c004e2fa9d561ea3580d /navit/osd.h | |
parent | f46eb419c46011d6d103b7f06cb2c842a2cbe6c9 (diff) | |
download | navit-0b74d7f4ee6d448ac811e2741e8cb1ed04f5ce76.tar.gz |
Fix:Core:Renamed src to navit for cleanup of includes
git-svn-id: http://svn.code.sf.net/p/navit/code/trunk/navit@1059 ffa7fe5e-494d-0410-b361-a75ebd5db220
Diffstat (limited to 'navit/osd.h')
-rw-r--r-- | navit/osd.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/navit/osd.h b/navit/osd.h new file mode 100644 index 000000000..9a50e99b6 --- /dev/null +++ b/navit/osd.h @@ -0,0 +1,16 @@ +#ifndef NAVIT_OSD_H +#define NAVIT_OSD_H + +struct osd_methods { + void (*osd_destroy)(struct osd_priv *osd); +}; + +/* prototypes */ +struct attr; +struct navit; +struct osd; +struct osd *osd_new(struct navit *nav, const char *type, struct attr **attrs); +/* end of prototypes */ + +#endif + |