mirror of
https://github.com/Halofreak1990/XFXFramework
synced 2024-12-26 13:49:34 +01:00
Added implicit conversion to base types to all primary types (UInt32 et al) Added implicit conversion from System::String to const char*
29 lines
561 B
C
29 lines
561 B
C
/********************************************************
|
|
* XACT.h *
|
|
* *
|
|
* XFramework XACT specification file *
|
|
* Copyright © XFX Team. All Rights Reserved *
|
|
********************************************************/
|
|
#ifndef XFRAMEWORK_XACT_H
|
|
#define XFRAMEWORK_XACT_H
|
|
|
|
//The header in an XACT Settings (XGS) file
|
|
struct XGSHeader
|
|
{
|
|
char magic[4]; //XGSF
|
|
}
|
|
|
|
//The header in a Sound Bank (XSB) file
|
|
struct XSBHeader
|
|
{
|
|
char magic[4]; //SDBK
|
|
}
|
|
|
|
//The header in a Wave Bank (XWB) file
|
|
struct XWBHeader
|
|
{
|
|
char magic[4];
|
|
}
|
|
|
|
#endif
|