mirror of
https://github.com/vgmstream/vgmstream.git
synced 2024-12-13 07:11:04 +01:00
13 lines
158 B
C
13 lines
158 B
C
|
/*
|
||
|
* streamtypes.h - widely used type definitions
|
||
|
*/
|
||
|
|
||
|
#include <inttypes.h>
|
||
|
|
||
|
#ifndef _STREAMTYPES_H
|
||
|
#define _STREAMTYPES_H
|
||
|
|
||
|
typedef int16_t sample;
|
||
|
|
||
|
#endif
|