mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-21 12:49:10 +00:00
Convert custom HeadSpin integer types to standard types from stdint.h
This commit is contained in:
@ -54,12 +54,12 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
class plWAVHeader
|
||||
{
|
||||
public:
|
||||
UInt16 fFormatTag;
|
||||
UInt16 fNumChannels;
|
||||
UInt32 fNumSamplesPerSec;
|
||||
UInt32 fAvgBytesPerSec;
|
||||
UInt16 fBlockAlign;
|
||||
UInt16 fBitsPerSample;
|
||||
uint16_t fFormatTag;
|
||||
uint16_t fNumChannels;
|
||||
uint32_t fNumSamplesPerSec;
|
||||
uint32_t fAvgBytesPerSec;
|
||||
uint16_t fBlockAlign;
|
||||
uint16_t fBitsPerSample;
|
||||
|
||||
enum
|
||||
{
|
||||
|
Reference in New Issue
Block a user