dbinterface.h

来自「104规约从站库源代码」· C头文件 代码 · 共 35 行

H
35
字号
#ifndef _DBinterface_
#define _DBinterface_
//#include "typedef.h"
#include "mmyfacesock.h"

#define FUNCNAMELEN 32
class CDBserver;
class CDBinterface:public CMySock
{

public:
	CDBserver *dbserver;
	int faceID;
	bool process_started;
	CDBinterface();

	~CDBinterface();
	
	/////////////////////////////////////////////////////

	void Rxprocess();
	void Txprocess();
	virtual void OnReceive( int nErrorCode);
	virtual void OnClose(int nErrorCode);
	//////////////////////////////////////////////////////
	void begin_process(){process_started=1;};
	void term_process(){process_started=0;};

};

///////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////


#endif

⌨️ 快捷键说明

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