eio: move 'typedef enum' after 'enum' to compil with g++ (from Mikael Sans)

SVN revision: 55372
This commit is contained in:
Michael BOUCHAUD 2010-12-08 14:35:37 +00:00
parent 0c1efd9afd
commit 947b8db665
1 changed files with 6 additions and 6 deletions

View File

@ -75,12 +75,6 @@ extern "C" {
* @{
*/
/**
* @typedef Eio_File_Op
* Input/Output operations on files.
*/
typedef enum _Eio_File_Op Eio_File_Op;
/**
* @enum _Eio_File_Op
* Input/Output operations on files.
@ -96,6 +90,12 @@ enum _Eio_File_Op
EIO_FILE_GETGRNAM /**< IO operation is trying to get gid from user name */
};
/**
* @typedef Eio_File_Op
* Input/Output operations on files.
*/
typedef enum _Eio_File_Op Eio_File_Op;
/**
* @typedef Eio_File
* Generic asynchronous IO reference.