50 lines
1.2 KiB
C
50 lines
1.2 KiB
C
|
// CVcDataPoints.h : <20><> Microsoft Visual C++ <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> ActiveX <20>ؼ<EFBFBD><D8BC><EFBFBD>װ<EFBFBD><D7B0><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
|
|||
|
#pragma once
|
|||
|
|
|||
|
/////////////////////////////////////////////////////////////////////////////
|
|||
|
// CVcDataPoints
|
|||
|
|
|||
|
class CVcDataPoints : public COleDispatchDriver
|
|||
|
{
|
|||
|
public:
|
|||
|
CVcDataPoints() {} // <20><><EFBFBD><EFBFBD> COleDispatchDriver Ĭ<>Ϲ<EFBFBD><CFB9>캯<EFBFBD><ECBAAF>
|
|||
|
CVcDataPoints(LPDISPATCH pDispatch) : COleDispatchDriver(pDispatch) {}
|
|||
|
CVcDataPoints(const CVcDataPoints& dispatchSrc) : COleDispatchDriver(dispatchSrc) {}
|
|||
|
|
|||
|
// <20><><EFBFBD><EFBFBD>
|
|||
|
public:
|
|||
|
|
|||
|
// <20><><EFBFBD><EFBFBD>
|
|||
|
public:
|
|||
|
|
|||
|
LPUNKNOWN get__NewEnum()
|
|||
|
{
|
|||
|
LPUNKNOWN result;
|
|||
|
InvokeHelper(0xfffffffc, DISPATCH_PROPERTYGET, VT_UNKNOWN, (void*)&result, nullptr);
|
|||
|
return result;
|
|||
|
}
|
|||
|
long get_Count()
|
|||
|
{
|
|||
|
long result;
|
|||
|
InvokeHelper(0x1, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, nullptr);
|
|||
|
return result;
|
|||
|
}
|
|||
|
LPDISPATCH get_Item(short Index)
|
|||
|
{
|
|||
|
LPDISPATCH result;
|
|||
|
static BYTE parms[] = VTS_I2 ;
|
|||
|
InvokeHelper(0x0, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&result, parms, Index);
|
|||
|
return result;
|
|||
|
}
|
|||
|
LPDISPATCH get__Item(short Index)
|
|||
|
{
|
|||
|
LPDISPATCH result;
|
|||
|
static BYTE parms[] = VTS_I2 ;
|
|||
|
InvokeHelper(0x2, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&result, parms, Index);
|
|||
|
return result;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
};
|