Initial MSVC 2008 projects workspace

This commit is contained in:
alexey.min
2012-02-01 05:25:08 +00:00
commit 03de3bdc95
1446 changed files with 476853 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
#ifndef H_PRIVATESTOREDLG
#define H_PRIVATESTOREDLG
#include "BuySellList.h"
class PrivateStoreManageDlg
{
public:
static const int TYPE_BUY = 0;
static const int TYPE_SELL = 1;
static const int TYPE_CRAFT = 2;
static const int TYPE_COMMONCRAFT = 3;
public:
PrivateStoreManageDlg( HWND hWndNotify, UINT uMessage, int type, TradeItemsList *list1, TradeItemsList *list2 );
~PrivateStoreManageDlg();
void run();
protected:
HWND m_hWndNotify;
UINT m_uNotifyMesasage;
int m_type;
TradeItemsList *m_list1;
TradeItemsList *m_list2;
protected:
static DWORD WINAPI Dlg_Thread( LPVOID lpParam );
static INT_PTR CALLBACK Dlg_Proc( HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam );
static void OnInitDialog( HWND hDlg, LPARAM lParam );
static void OnDestroy( HWND hDlg );
static void OnCommand( HWND hDlg, WPARAM wParam, LPARAM lParam );
static void OnNotify( HWND hDlg, WPARAM wParam, LPARAM lParam );
protected:
static void FillListViews( HWND hDlg, PrivateStoreManageDlg *pcls );
};
#endif