mirror of
https://github.com/vgmstream/vgmstream.git
synced 2025-01-24 07:14:10 +01:00
af3dbd0034
git-svn-id: https://vgmstream.svn.sourceforge.net/svnroot/vgmstream@234 51a99a44-fe44-0410-b1ba-c3e57ba2b86b
21 lines
285 B
C
21 lines
285 B
C
/*
|
|
* streamtypes.h - widely used type definitions
|
|
*/
|
|
|
|
|
|
#ifndef _STREAMTYPES_H
|
|
#define _STREAMTYPES_H
|
|
|
|
#ifdef _MSC_VER
|
|
#include <pstdint.h>
|
|
#define inline _inline
|
|
#define strcasecmp _stricmp
|
|
#define snprintf _snprintf
|
|
#else
|
|
#include <stdint.h>
|
|
#endif
|
|
|
|
typedef int16_t sample;
|
|
|
|
#endif
|