X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;ds=sidebyside;f=dt%2Fdtag.h;h=5ecbfa750ba904206ee239c317bb19297f8b5402;hb=5c279b27987657fe916c2f8b29c7c4912947734f;hp=01e34f80f617465965100ccc43e30288419183d6;hpb=77d2e9d82dc6d8dea26fe13eacaeb63554b97094;p=bertos.git diff --git a/dt/dtag.h b/dt/dtag.h old mode 100755 new mode 100644 index 01e34f80..5ecbfa75 --- a/dt/dtag.h +++ b/dt/dtag.h @@ -1,6 +1,31 @@ -/*! +/** * \file * * @@ -16,6 +41,9 @@ /*#* *#* $Log$ + *#* Revision 1.2 2006/07/19 12:56:26 bernie + *#* Convert to new Doxygen style. + *#* *#* Revision 1.1 2005/11/04 18:26:38 bernie *#* Import into DevLib. *#* @@ -50,13 +78,13 @@ #include -/*! Type for values associated with tags. */ +/** Type for values associated with tags. */ typedef iptr_t dval_t; -/*! Type for constant values associated with tags. */ +/** Type for constant values associated with tags. */ typedef const_iptr_t const_dval_t; -/*! Type for tag */ +/** Type for tag */ typedef enum dtag_t { TAG_END = 0, @@ -73,13 +101,13 @@ typedef enum dtag_t TAG_ERROR, } dtag_t; -/*! This is the basic message structure used by all dnotifiers. */ +/** This is the basic message structure used by all dnotifiers. */ typedef struct DTagItem { dtag_t tag; dval_t val; } DTagItem; -/*! Marker to indicate the end of a map for message filtering/translating */ +/** Marker to indicate the end of a map for message filtering/translating */ #define TAG_END_MARKER {{TAG_END, 0}, {TAG_END, 0}} #endif