dmusicf.h: Move typedef below enum declarations.

Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
feature/deterministic
Jacek Caban 2020-05-18 14:46:50 +02:00 committed by Alexandre Julliard
parent b9fe0ecd3a
commit f6c3b07e9f
1 changed files with 4 additions and 5 deletions

View File

@ -320,11 +320,6 @@ extern "C" {
/***************************************************************************** /*****************************************************************************
* Enumerations * Enumerations
*/ */
/* typedef definitions */
typedef enum enumDMUS_VARIATIONT_TYPES DMUS_VARIATIONT_TYPES;
typedef enum enumDMUS_EMBELLISHT_TYPES DMUS_EMBELLISHT_TYPES;
typedef enum enumDMUS_PATTERNT_TYPES DMUS_PATTERNT_TYPES;
/* actual enumerations */ /* actual enumerations */
enum enumDMUS_VARIATIONT_TYPES { enum enumDMUS_VARIATIONT_TYPES {
DMUS_VARIATIONT_SEQUENTIAL = 0x0, DMUS_VARIATIONT_SEQUENTIAL = 0x0,
@ -353,6 +348,10 @@ enum enumDMUS_PATTERNT_TYPES {
DMUS_PATTERNT_RANDOM_ROW = 0x5 DMUS_PATTERNT_RANDOM_ROW = 0x5
}; };
typedef enum enumDMUS_VARIATIONT_TYPES DMUS_VARIATIONT_TYPES;
typedef enum enumDMUS_EMBELLISHT_TYPES DMUS_EMBELLISHT_TYPES;
typedef enum enumDMUS_PATTERNT_TYPES DMUS_PATTERNT_TYPES;
/***************************************************************************** /*****************************************************************************
* Structures * Structures