Mercurial > audlegacy-plugins
view src/sexypsf/types.h @ 3110:a522493de76e
Set up a hook_call for showing the main menu, since it's implemented in a plugin now (fixes #38).
author | John Lindgren <john.lindgren@tds.net> |
---|---|
date | Sat, 02 May 2009 11:16:23 -0400 |
parents | 3da1b8942b8b |
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