/* (C) 2003 XDA Developers itsme@xs4all.nl * * $Header$ */ #ifndef __DLLVERSION_H__ #define ITSDLL_VERSION 46 void CheckITSDll(); void StopItsutils(); BYTE *RapiAlloc(DWORD size); void RapiFree(void *p); HRESULT ItsutilsInvoke(const std::string& method, DWORD insize, BYTE *inbuf, DWORD *poutsize, BYTE **outbuf); void verify_size(void *begin, void *end, size_t size, const char *apiname); std::string GetAppPath(); #if 0 class RapiConnection { public: RapiConnection() : bConnected(false) {} ~RapiConnection() { if (bConnected) CeRapiUninit(); bConnected= false; } bool Connect() { CheckITSDll(); bConnected= true; } private: bool bConnected; }; #endif #define __DLLVERSION_H__ #endif