Mercurial > audlegacy-plugins
view src/modplug/stddefs.h @ 3181:dc22f5fa8f2f
alsa-ng: Remove another debug message.
(http://jira.atheme.org/browse/AUDPLUG-15)
author | William Pitcock <nenolod@atheme.org> |
---|---|
date | Thu, 11 Jun 2009 20:21:16 -0500 |
parents | 0c2b8d901d47 |
children |
line wrap: on
line source
/* Modplug XMMS Plugin * Authors: Kenton Varda <temporal@gauge3d.org> * * This source code is public domain. */ #ifndef __MODPLUGXMMS_STDDEFS_H__INCLUDED__ #define __MODPLUGXMMS_STDDEFS_H__INCLUDED__ #include <glib.h> #define MODPLUG_CFGID "modplug" #define MODPLUG_CONVERT(X) g_convert(X, -1, "UTF-8", "CP850", NULL, NULL, NULL) // Invalid pointer #ifndef NULL #define NULL 0 #endif // Standard types typedef guchar uchar; typedef gint8 int8; typedef gint16 int16; typedef gint32 int32; typedef gint64 int64; typedef guint8 uint8; typedef guint16 uint16; typedef guint32 uint32; typedef guint64 uint64; typedef float float32; typedef double float64; typedef long double float128; #endif