fix failure from doxy migration script

SVN revision: 59423
This commit is contained in:
Mike Blumenkrantz 2011-05-15 22:58:36 +00:00
parent 58c89b619b
commit 970e932e85
1 changed files with 6 additions and 6 deletions

View File

@ -52,12 +52,6 @@ typedef enum
} Eeze_Mount_Opts;
/**
* @brief Use this function to determine whether your eeze is disk-capable
*
* Since applications will die if they run against a function that doesn't exist,
* if your application successfully runs this function then you have eeze_disk.
*/
EAPI extern int EEZE_EVENT_DISK_MOUNT;
EAPI extern int EEZE_EVENT_DISK_UNMOUNT;
EAPI extern int EEZE_EVENT_DISK_ERROR;
@ -90,6 +84,12 @@ struct _Eeze_Event_Disk_Error
} type;
};
/**
* @brief Use this function to determine whether your eeze is disk-capable
*
* Since applications will die if they run/compile against a function that doesn't exist,
* if your application successfully runs/compiles with this function then you have eeze_disk.
*/
EAPI void eeze_disk_function(void);
/**