dsserver.h

来自「是自己开发的程序」· C头文件 代码 · 共 31 行

H
31
字号
#ifndef DSSERVER_H_INCLUDED
#define DSSERVER_H_INCLUDED
#include "Common.h"#include "Log.h"extern "C" {class DsServer: public Log{	public:		DsServer();		~DsServer();		int StartServer();		int StopServer();		int GetChannelCount();		bool isServerOn(){return isServerStarted;}	private:        enum Identifiers		{		};		bool isServerStarted;		int CreateShareMemory();		int freeVideo();		void WriteDB();		static void* intermediary(void *ptr);		static void* loopWaitAlarm(void *ptr);		void CreateThread();};}

#endif // DSSERVER_H_INCLUDED

⌨️ 快捷键说明

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