csrdpdu.hpp

来自「ABis无线接口全套资料」· HPP 代码 · 共 41 行

HPP
41
字号
//
// csrdpdu.hpp
// Declare SRD interface analysis class.
// 2005-12-14
// Wu jianjin
//

#ifndef _CSRDPDU_HPP
#define _CSRDPDU_HPP

#ifndef _PTLBASE_HPP
#include "ptlbase.hpp"
#endif

#define SRD_NUMBER_OF_IE	9

class CSrdPdu : public CPduBase
{
public:
	CSrdPdu( );
	CSrdPdu(CSrdPdu& s);
	~CSrdPdu( );

public:
	void Init( );

public:
	int	Unpacked(char  * ptr, UINT16 len);	// Unpacked the PDU octets string.
	char	* Output(UINT16& len);			// Packed the PDU in dedicat model.

public:
	int DecomposeJoyitApi(char  * ptr, UINT16 len); // Not used.
	char  * ComposeJoyitApi(UINT16& len); // Not used.

public:
	char  * ComposeSrdPdu(UINT16& len);
};

#endif // ifndef _CSRDPDU_HPP

⌨️ 快捷键说明

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