作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
使用 Delphi,我需要访问一个包含数组中的一条或多条记录的 OleVariant。
我调用的方法返回VT_RECORD的VT_ARRAY,记录本身定义为:
struct StreamTimeInfo {
unsigned int PID;
LONGLONG PTS;
LONGLONG TimeStamp;
};
我的代码是这样的:
procedure Test;
type
TStreamInfo = record
PID: Cardinal;
PTS: Int64;
TimeStamp: Int64;
end;
var
Value: OleVariant
StreamTime: TStreamInfo;
begin
GetValue(Value); // Value holds a VT_ARRAY of VT_RECORD
// How should I access the array of records in Delphi?
// I've tried this to get to the first element:
StreamTime := TStreamInfo(TVarData(Value).VPointer^);
end;
我不明白如何从 Delphi 访问记录。
非常感谢您的任何意见。
最佳答案
我以前从未这样做过,但我认为这应该可行。
type
TStreamInfoArray = array [0..MaxArrayCount-1] of TStreamInfo;
PStreamInfoArray = ^TStreamInfoArray;
var
Value: Variant;
p: PStreamInfoArray;
StreamInfo: TStreamInfo;
begin
GetValue(Value);
p := PStreamInfoArray(VarArrayLock(Value));
try
StreamInfo := p^[Index];
finally
VarArrayUnlock(Value);
end;
end;
关于delphi - 从 Delphi 访问包含 VT_RECORD 的 VT_ARRAY 的 OleVariant,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16297253/
我是 COM 新手,我认为我所拥有的是正确的,但运行时不喜欢它。非常感谢任何帮助。 我需要调用一个接受 BSTR 的一维数组的 COM 函数。具体来说,文档说参数必须是: Function: AddF
我想使用具有 COM 对象接口(interface)的仪器。不幸的是,SDK 中没有 C++ 示例,只有 C#。 创建包装类后,我可以成功地将仪器的序列号读取到 VARIANT 中: VARIANT
我继承了一个使用 CppWebBrowser 控件的旧应用程序。 该应用程序一直对 GET 请求使用::Navigate 方法,但现在我需要开始将它用于 POST;但是,现有代码不适用于 POST。我
使用 Delphi,我需要访问一个包含数组中的一条或多条记录的 OleVariant。 我调用的方法返回VT_RECORD的VT_ARRAY,记录本身定义为: struct StreamTimeInf
我是一名优秀的程序员,十分优秀!