#ifndef PHIDGET_H
#define PHIDGET_H
#ifdef __cplusplus
extern "C" {
#endif
#if defined(__stdcall)
#define CCONV __stdcall
#else
#if defined(__BORLANDC__) || defined(_MSC_VER)
#define CCONV __stdcall
#else
#define CCONV
#endif
#endif
#if !defined(__int64)
#if !defined(__BORLANDC__) && !defined(_MSC_VER)
typedef long long __int64;
#endif
#endif