summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2013-02-10 20:06:08 +0100
committerGravatar Nikias Bassen2013-02-10 20:06:08 +0100
commitd3a53b82aa57f5090d95b69e6f567b06eb544df9 (patch)
tree953480ca4db7109376a6ca422971bd6481efcc78 /common
downloadlibvformat-d3a53b82aa57f5090d95b69e6f567b06eb544df9.tar.gz
libvformat-d3a53b82aa57f5090d95b69e6f567b06eb544df9.tar.bz2
initial commit of 1.13 sources
Diffstat (limited to 'common')
-rw-r--r--common/types.h87
1 files changed, 87 insertions, 0 deletions
diff --git a/common/types.h b/common/types.h
new file mode 100644
index 0000000..7eed375
--- /dev/null
+++ b/common/types.h
@@ -0,0 +1,87 @@
+/*******************************************************************************
+
+ (C) Nick Marley, 2001 -
+
+ This software is distributed under the GNU Lesser General Public Licence.
+ Please read and understand the comments at the top of vf_iface.h before use!
+
+FILE
+ $Workfile$
+ $Revision: 1.5 $
+ $Author: tilda $
+
+ORIGINAL AUTHOR
+ Nick Marley
+
+DESCRIPTION
+ In the abscence of suitable typedefs provided by whatever environment you're
+ building under, this defines the minimal set of types required by vformat library.
+
+MODIFICATION HISTORY
+ * $Log: types.h,v $
+ * Revision 1.5 2002/11/15 09:15:00 tilda
+ * IID638823 - Various portability issues.
+ *
+ * Revision 1.4 2002/10/08 20:23:16 tilda
+ * Improve comments. Tidy header.
+ *
+ * Revision 1.3 2002/10/08 20:20:10 tilda
+ * Comments (!). Removed unused types.
+ *******************************************************************************/
+
+#ifndef _TYPES_H_
+#define _TYPES_H_
+
+#ifndef NORCSID
+static const char _types_h_vss_id[] = "$Header: /cvsroot/vformat/src/common/types.h,v 1.5 2002/11/15 09:15:00 tilda Exp $";
+#endif
+
+/*=============================================================================*
+ Public Includes
+ *============================================================================*/
+/* None */
+
+/*=============================================================================*
+ Public Defines
+ *============================================================================*/
+
+#undef NULL
+#define NULL 0
+
+#undef FALSE
+#define FALSE ((bool_t)(0))
+
+#undef TRUE
+#define TRUE ((bool_t)(1))
+
+/*=============================================================================*
+ Public Types
+ *============================================================================*/
+
+/*
+ * Basic types.
+ */
+#if defined(USE_INTTYPES_H)
+#include <inttypes.h>
+#else
+typedef unsigned char uint8_t;
+typedef unsigned short int uint16_t;
+typedef unsigned long int uint32_t;
+#endif
+
+/*
+ * Please avoide 'BOOL' (from Windows) and 'bool' (from C++) - vformat is used
+ * extensively in pure C embedded applications where neither are relevant.
+ */
+typedef unsigned char bool_t;
+
+/*=============================================================================*
+ Public Functions
+ *============================================================================*/
+/* None */
+
+/*=============================================================================*
+ End of file
+ *============================================================================*/
+
+#endif /*_TYPES_H_*/