addin.h

来自「这是工厂应用的软件」· C头文件 代码 · 共 88 行

H
88
字号
#if !defined(AFX_ADDIN_H__DA47B85E_0A76_47A2_BD21_FDD2E2D77F5F__INCLUDED_)
#define AFX_ADDIN_H__DA47B85E_0A76_47A2_BD21_FDD2E2D77F5F__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// Machine generated IDispatch wrapper class(es) created by Microsoft Visual C++

// NOTE: Do not modify the contents of this file.  If this class is regenerated by
//  Microsoft Visual C++, your modifications will be overwritten.

/////////////////////////////////////////////////////////////////////////////
// CAddin wrapper class

class CAddin : public CWnd
{
protected:
	DECLARE_DYNCREATE(CAddin)
public:
	CLSID const& GetClsid()
	{
		static CLSID const clsid
			= { 0xb69b88d9, 0xa697, 0x11d2, { 0xaa, 0x3, 0x0, 0x20, 0x18, 0x65, 0x9, 0x13 } };
		return clsid;
	}
	virtual BOOL Create(LPCTSTR lpszClassName,
		LPCTSTR lpszWindowName, DWORD dwStyle,
		const RECT& rect,
		CWnd* pParentWnd, UINT nID,
		CCreateContext* pContext = NULL)
	{ return CreateControl(GetClsid(), lpszWindowName, dwStyle, rect, pParentWnd, nID); }

    BOOL Create(LPCTSTR lpszWindowName, DWORD dwStyle,
		const RECT& rect, CWnd* pParentWnd, UINT nID,
		CFile* pPersist = NULL, BOOL bStorage = FALSE,
		BSTR bstrLicKey = NULL)
	{ return CreateControl(GetClsid(), lpszWindowName, dwStyle, rect, pParentWnd, nID,
		pPersist, bStorage, bstrLicKey); }

// Attributes
public:
	CString GetDeviceName();
	void SetDeviceName(LPCTSTR);
	long GetDeviceNumber();
	void SetDeviceNumber(long);
	long GetErrorCode();
	void SetErrorCode(long);
	CString GetErrorMessage();
	void SetErrorMessage(LPCTSTR);
	long GetEventTrigCount();
	void SetEventTrigCount(long);
	short GetPort();
	void SetPort(short);
	short GetBit();
	void SetBit(short);
	double GetScanTime();
	void SetScanTime(double);
	short GetMaxPortNumber();
	void SetMaxPortNumber(short);
	BOOL GetPatternMatchEnabled();
	void SetPatternMatchEnabled(BOOL);
	short GetPatternMatchCount();
	void SetPatternMatchCount(short);
	short GetPatternMatchFilter();
	void SetPatternMatchFilter(short);
	short GetPatternMatchData();
	void SetPatternMatchData(short);
	short GetByteScanValue();
	void SetByteScanValue(short);

// Operations
public:
	BOOL OpenDevice();
	BOOL CloseDevice();
	BOOL BitInput();
	short ByteInput();
	BOOL EnableEvent(BOOL Enabled);
	BOOL EnableByteScan(BOOL Enabled);
	BOOL EnableBitScan(BOOL Enabled);
	long SelectDevice();
	void AboutBox();
};

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_ADDIN_H__DA47B85E_0A76_47A2_BD21_FDD2E2D77F5F__INCLUDED_)

⌨️ 快捷键说明

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