btdatapacket.h

来自「1、手持设备的机器人--服务器端; 2、通过蓝牙通讯;」· C头文件 代码 · 共 30 行

H
30
字号
#ifndef BTDATAPACKET_
#define BTDATAPACKET_

/*
 * Copyright (c) 2004-2005 Mobile Robotics
 * http://mobilerobotics.sf.net
 *
 * File: BtDataPacket.h
 * Author: Johan Johanson
 * Date: January 26, 2005
 * Updated: March 01, 2005
 *
 * Description: Defines an abstract data packet used to encapsulate
 * 				the data one wishes to send
 *
*/

#include <PalmOS.h>

class BtDataPacket
{
public:
	BtDataPacket();
		
public:
	UInt8 *data;
	UInt16 length;
};

#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?