Skip to content
Permalink
6b251c1401
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
23 lines (17 sloc) 597 Bytes
#ifndef _EAIRESPONSEH_
#define _EAIRESPONSEH_
// This file was copied from the "TDK" folder in the examples directory!
#include <iostream>
#include <string>
using namespace std;
#define READPACKETLIMIT 512 // maximum bytes of an entire read packet
// The calling convention on windows is stdcall,
// on Linux, this identifier doesn't exist.
#ifndef _WIN32
#ifndef __stdcall
#define __stdcall
#endif // __stdcall
#endif // !_WIN32
//Parse Packet is the callback used for the device packet data.
int __stdcall ParsePacket(int deviceID, unsigned char packet[READPACKETLIMIT], int size);
#endif