AxibugEmuOnline/References/virtuanessrc097-master/DatachBarcodeDlg.h
2024-08-05 17:58:53 +08:00

41 lines
1.6 KiB
C++
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// DATACHバーコードバトラーダイアログクラス
//
#ifndef __CDATACHBARCODEDLG_INCLUDED__
#define __CDATACHBARCODEDLG_INCLUDED__
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <list>
#include <vector>
#include <string>
using namespace std;
#include "Wnd.h"
class CDatachBarcodeDlg : public CWnd
{
public:
// Override from CWnd
BOOL Create( HWND hWndParent );
void Destroy();
protected:
// Message map
DLG_MESSAGE_MAP()
DLGMSG OnInitDialog( DLGMSGPARAM );
DLGMSG OnActivate( DLGMSGPARAM );
DLGMSG OnDestroy( DLGMSGPARAM );
DLGMSG OnClose( DLGMSGPARAM );
DLGCMD OnCancel( DLGCMDPARAM );
DLGCMD OnCodeinput( DLGCMDPARAM );
DLGCMD OnCodeTransfer( DLGCMDPARAM );
DLGCMD OnCodeCreate( DLGCMDPARAM );
//
private:
};
#endif // !__CDATACHBARCODEDLG_INCLUDED__