Cleanup: remove DNA_view2d_types.h from DNA_sound_types.h

This commit is contained in:
Campbell Barton
2020-03-29 20:32:45 +11:00
parent fc37318fe7
commit c6143da27c

View File

@@ -26,9 +26,6 @@
#include "DNA_ID.h" #include "DNA_ID.h"
#include "DNA_defs.h" #include "DNA_defs.h"
/* stupid... could easily be solved */
#include "DNA_view2d_types.h"
struct Ipo; struct Ipo;
struct PackedFile; struct PackedFile;
@@ -104,7 +101,7 @@ typedef enum eSound_Type {
} eSound_Type; } eSound_Type;
#endif #endif
/* bSound->flags */ /** #bSound.flags */
enum { enum {
#ifdef DNA_DEPRECATED_ALLOW #ifdef DNA_DEPRECATED_ALLOW
/* deprecated! used for sound actuator loading */ /* deprecated! used for sound actuator loading */
@@ -114,13 +111,11 @@ enum {
SOUND_FLAGS_MONO = (1 << 5), SOUND_FLAGS_MONO = (1 << 5),
}; };
/* bSound->tags */ /** #bSound.tags */
enum { enum {
/* Do not free/reset waveform on sound load, only used by undo code. */ /* Do not free/reset waveform on sound load, only used by undo code. */
SOUND_TAGS_WAVEFORM_NO_RELOAD = 1 << 0, SOUND_TAGS_WAVEFORM_NO_RELOAD = 1 << 0,
SOUND_TAGS_WAVEFORM_LOADING = (1 << 6), SOUND_TAGS_WAVEFORM_LOADING = (1 << 6),
}; };
/* to DNA_sound_types.h*/ #endif /* __DNA_SOUND_TYPES_H__ */
#endif