vcdatapoints.cpp
来自「this the code of bootstation」· C++ 代码 · 共 36 行
CPP
36 行
// Mit Microsoft Visual C++ automatisch erstellte IDispatch-Kapselungsklasse(n).
// HINWEIS: Die Inhalte dieser Datei nicht 鋘dern. Wenn Microsoft Visual C++
// diese Klasse erneuert, werden Ihre 膎derungen 黚erschrieben.
#include "stdafx.h"
#include "vcdatapoints.h"
// Dispatch-Schnittstellen, auf die von dieser Schnittstelle verwiesen wird
#include "vcdatapoint.h"
/////////////////////////////////////////////////////////////////////////////
// Eigenschaften CVcDataPoints
/////////////////////////////////////////////////////////////////////////////
// Operationen CVcDataPoints
long CVcDataPoints::GetCount()
{
long result;
InvokeHelper(0x1, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, NULL);
return result;
}
CVcDataPoint CVcDataPoints::GetItem(short Index)
{
LPDISPATCH pDispatch;
static BYTE parms[] =
VTS_I2;
InvokeHelper(0x0, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&pDispatch, parms,
Index);
return CVcDataPoint(pDispatch);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?