view Plugins/Input/sexypsf/types.h @ 827:6812adf5ff2e trunk

[svn] Okay, we need to pinch more playback code to avoid false positives.
author chainsaw
date Sun, 12 Mar 2006 15:05:18 -0800
parents 42cdc99e395a
children
line wrap: on
line source

#ifndef _SPSF_TYPES_H__
#define _SPSF_TYPES_H__

#include <inttypes.h>

#define INLINE inline

typedef int8_t s8;
typedef int16_t s16;
typedef int32_t s32;
typedef int64_t s64;
        
typedef uint8_t u8;
typedef uint16_t u16;
typedef uint32_t u32;
typedef uint64_t u64;



/* For gcc only? */
#define PACKSTRUCT	__attribute__ ((packed))

#endif