- Added missing files for new NAPI

This commit is contained in:
koennecke
2008-01-03 10:13:10 +00:00
parent 1f862889ce
commit 061b09b138
3 changed files with 165 additions and 0 deletions

22
napiconfig.h Executable file
View File

@ -0,0 +1,22 @@
#ifndef NAPICONFIG_H
#define NAPICONFIG_H
#include <nxconfig.h>
/*
* Type definitions
*/
#ifdef HAVE_STDINT_H
#include <stdint.h>
#else
typedef signed char int8_t;
typedef short int int16_t;
typedef int int32_t;
typedef long int64_t;
typedef unsigned char uint8_t;
typedef unsigned short int uint16_t;
typedef unsigned int uint32_t;
typedef unsigned long uint64_t;
#endif /* HAVE_STDINT_H */
#endif /* NAPICONFIG_H */