/*#*
*#* $Log$
+ *#* Revision 1.2 2007/09/19 16:23:27 batt
+ *#* Fix doxygen warnings.
+ *#*
*#* Revision 1.1 2007/06/07 09:13:40 batt
*#* Add TEA enc/decryption algorithm.
*#*
* \brief TEA encryption function.
* This function encrypts <EM>v</EM> with <EM>k</EM> and returns the
* encrypted data in <EM>v</EM>.
- * \param v Array of two long values containing the data block.
- * \param k Array of four long values containing the key.
+ * \param _v Array of two long values containing the data block.
+ * \param _k Array of four long values containing the key.
*/
void tea_enc(void *_v, void *_k)
{
* \brief TEA decryption function.
* This function decrypts <EM>v</EM> with <EM>k</EM> and returns the
* decrypted data in <EM>v</EM>.
- * \param v Array of two long values containing the data block.
- *\param k Array of four long values containing the key.
+ * \param _v Array of two long values containing the data block.
+ * \param _k Array of four long values containing the key.
*/
void tea_dec(void *_v, void *_k)
{
/*#*
*#* $Log$
+ *#* Revision 1.5 2007/09/19 16:23:27 batt
+ *#* Fix doxygen warnings.
+ *#*
*#* Revision 1.4 2006/09/13 13:58:33 bernie
*#* Add RenderHook support.
*#*
const_iptr_t title; /**< Menu title (ID or ptr to string, 0 to disable) */
int flags; /**< See MF_#? definitions below */
struct Bitmap *bitmap; /**< Bitmap where the menu is rendered */
- int selected; /**< Initial selection (written to if #MF_SAVESEL is set). */
+ int selected; /**< Initial selection (written to if MF_SAVESEL is set). */
} Menu;
/**
/**
* Program memory read/write subtest.
- * Try to write/read in the same file location \param _size bytes.
+ * Try to write/read in the same \param f file location \param _size bytes.
* \return true if all is ok, false otherwise
* \note Restore file position at exit (if no error)
* \note Test buffer \param buf must be filled with
/**
* Write program memory.
- * Write \param size bytes from buffer \param buf to file \param *fd
+ * Write \param size bytes from buffer \param _buf to file \param *fd
* \note Write operations are buffered.
*/
size_t prog_write(struct _KFile *fd, const void *_buf, size_t size)
}
/**
- * Open flash file \param *fd.
+ * Open flash file \param *fd
* \param name and \param mode are unused, cause flash memory is
* threated like one file.
*/