www.pudn.com > ITSever.rar > DrawList.h
#ifndef DRAW_LIST_H
#define DRAW_LIST_H
#pragma once
class CDrawList
{
public:
CDrawList();
~CDrawList();
void updateCommandToList(bool badd,const char* clientip,unsigned short port, const char* url,CListCtrl* list);
private:
CListCtrl* myList;
};
#endif