📄 csrdpdu.hpp
字号:
//
// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -