COM技术中的VARIANT and VARIANTARG
VARIANT and VARIANTARG
Use VARIANTARG to describe arguments passed within DISPPARAMS, and VARIANT to specify variant data that cannot be passed by reference. When a variant refers to another variant by using the VT_VARIANT | VT_BYREF vartype, the variant being referred to cannot also be of type VT_VARIANT | VT_BYREF. VARIANTs can be passed by value, even if VARIANTARGs cannot. The following definition of VARIANT is described in OAIDL.H automation header file:
typedef struct FARSTRUCT tagVARIANT VARIANT;
typedef struct FARSTRUCT tagVARIANT VARIANTARG; typedef struct tagVARIANT {
VARTYPE vt;
unsigned short wReserved1;
unsigned short wReserved2;
unsigned short wReserved3;
union {
Byte bVal; // VT_UI1.
Short iVal; // VT_I2.
long lVal; // VT_I4.
float fltVal; // VT_R4.
double dblVal; // VT_R8.
VARIANT_BOOL boolVal; // VT_BOOL.
SCODE scode; // VT_ERROR.
CY cyVal; // VT_CY.
DATE date; // VT_DATE.
BSTR bstrVal; // VT_BSTR.
DECIMAL FAR* pdecVal // VT_BYREF|VT_DECIMAL.
IUnknown FAR* punkVal; // VT_UNKNOWN.
IDispatch FAR* pdispVal; // VT_DISPATCH.
SAFEARRAY FAR* parray; // VT_ARRAY|*.
Byte FAR* pbVal; // VT_BYREF|VT_UI1.
short FAR* piVal; // VT_BYREF|VT_I2.
long FAR* plVal; // VT_BYREF|VT_I4.
float FAR* pfltVal; // VT_BYREF|VT_R4.
double FAR* pdblVal; // VT_BYREF|VT_R8.
VARIANT_BOOL FAR* pboolVal; // VT_BYREF|VT_BOOL.
SCODE FAR* pscode; // VT_BYREF|VT_ERROR.
CY FAR* pcyVal; // VT_BYREF|VT_CY.
DATE FAR* pdate; // VT_BYREF|VT_DATE.
BSTR FAR* pbstrVal; // VT_BYREF|VT_BSTR.
IUnknown FAR* FAR* ppunkVal; // VT_BYREF|VT_UNKNOWN.
IDispatch FAR* FAR* ppdispVal; // VT_BYREF|VT_DISPATCH.
SAFEARRAY FAR* FAR* pparray; // VT_ARRAY|*.
VARIANT FAR* pvarVal; // VT_BYREF|VT_VARIANT.
void FAR* byref; // Generic ByRef.
char cVal; // VT_I1.
unsigned short uiVal; // VT_UI2.
unsigned long ulVal; // VT_UI4.
int intVal; // VT_INT.
unsigned int uintVal; // VT_UINT.
char FAR * pcVal; // VT_BYREF|VT_I1.
unsigned short FAR * puiVal; // VT_BYREF|VT_UI2.
unsigned long FAR * pulVal; // VT_BYREF|VT_UI4.
int FAR * pintVal; // VT_BYREF|VT_INT.
unsigned int FAR * puintVal; //VT_BYREF|VT_UINT.
};
};
To simplify extracting values from VARIANTARGs, Automation provides a set of functions for manipulating this type. Use of these functions is strongly recommended to ensure that applications apply consistent coercion rules.
The vt value governs the interpretation of the union as follows:
| Value | Description |
|---|---|
| VT_EMPTY | No value was specified. If an optional argument to an Automation method is left blank, do not pass a VARIANT of type VT_EMPTY. Instead, pass a VARIANT of type VT_ERROR with a value of DISP_E_PARAMNOTFOUND. |
| VT_EMPTY | VT_BYREF | Not valid. |
| VT_UI1 | An unsigned 1-byte character is stored in bVal. |
| VT_UI1 | VT_BYREF | A reference to an unsigned 1-byte character was passed. A pointer to the value is inpbVal. |
| VT_UI2 | An unsigned 2-byte integer value is stored in uiVal. |
| VT_UI2 | VT_BYREF | A reference to an unsigned 2-byte integer was passed. A pointer to the value is inpuiVal. |
| VT_UI4 | An unsigned 4-byte integer value is stored in ulVal. |
| VT_UI4 | VT_BYREF | A reference to an unsigend 4-byte integer was passed. A pointer to the value is inpulVal. |
| VT_UINT | An unsigned integer value is stored in uintVal. |
| VT_UINT | VT_BYREF | A reference to an unsigned integer value was passed. A pointer to the value is inpuintVal. |
| VT_INT | An integer value is stored in intVal. |
| VT_INT | VT_BYREF | A reference to an integer value was passed. A pointer to the value is inpintVal. |
| VT_I1 | A 1-byte character value is stored in cVal. |
| VT_I1 | VT_BYREF | A reference to a 1-byte character was passed. A pointer the value is inpcVal. |
| VT_I2 | A 2-byte integer value is stored in iVal. |
| VT_I2 | VT_BYREF | A reference to a 2-byte integer was passed. A pointer to the value is inpiVal. |
| VT_I4 | A 4-byte integer value is stored in lVal. |
| VT_I4 | VT_BYREF | A reference to a 4-byte integer was passed. A pointer to the value is inplVal. |
| VT_R4 | An IEEE 4-byte real value is stored in fltVal. |
| VT_R4 | VT_BYREF | A reference to an IEEE 4-byte real value was passed. A pointer to the value is inpfltVal. |
| VT_R8 | An 8-byte IEEE real value is stored in dblVal. |
| VT_R8 | VT_BYREF | A reference to an 8-byte IEEE real value was passed. A pointer to its value is inpdblVal. |
| VT_CY | A currency value was specified. A currency number is stored as 64-bit (8-byte), two's complement integer, scaled by 10,000 to give a fixed-point number with 15 digits to the left of the decimal point and 4 digits to the right. The value is incyVal. |
| VT_CY | VT_BYREF | A reference to a currency value was passed. A pointer to the value is inpcyVal. |
| VT_BSTR | A string was passed; it is stored in bstrVal. This pointer must be obtained and freed by the BSTR functions, which are described inConversion and Manipulation Functions. |
| VT_BSTR | VT_BYREF | A reference to a string was passed.A BSTR* that points to a BSTR is inpbstrVal.The referenced pointer must be obtained or freed by the BSTR functions. |
| VT_DECIMAL | Decimal variables are stored as 96-bit (12-byte) unsigned integers scaled by a variable power of 10. VT_DECIMAL uses the entire 16 bytes of the Variant. |
| VT_DECIMAL | VT_BYREF | A reference to a decimal value was passed. A pointer to the value is inpdecVal. |
| VT_NULL | A propagating null value was specified. (This should not be confused with the null pointer.) The null value is used for tri-state logic, as with SQL. |
| VT_NULL | VT_BYREF | Not valid. |
| VT_ERROR | An SCODE was specified. The type of the error is specified in scodee. Generally, operations on error values should raise an exception or propagate the error to the return value, as appropriate. |
| VT_ERROR | VT_BYREF | A reference to an SCODE was passed.A pointer to the value is inpscode. |
| VT_BOOL | A 16 bit Boolean (True/False) value was specified. A value of 0xFFFF (all bits 1) indicates True; a value of 0 (all bits 0) indicates False. No other values are valid. |
| VT_BOOL | VT_BYREF | A reference to a Boolean value. A pointer to the Boolean value is in pbool. |
| VT_DATE | A value denoting a date and time was specified. Dates are represented as double-precision numbers, where midnight, January 1, 1900 is 2.0, January 2, 1900 is 3.0, and so on. The value is passed indate.
This is the same numbering system used by most spreadsheet programs, although some specify incorrectly that February 29, 1900 existed, and thus set January 1, 1900 to 1.0. The date can be converted to and from an MS-DOS representation usingVariantTimeToDosDateTime, which is discussed in Conversion and Manipulation Functions. |
| VT_DATE | VT_BYREF | A reference to a date was passed.A pointer to the value is inpdate. |
| VT_DISPATCH | A pointer to an object was specified.The pointer is inpdispVal.This object is known only to implement IDispatch. The object can be queried as to whether it supports any other desired interface by callingQueryInterface on the object.Objects that do not implementIDispatch should be passed using VT_UNKNOWN. |
| VT_DISPATCH | VT_BYREF | A pointer to a pointer to an object was specified. The pointer to the object is stored in the location referred to byppdispVal. |
| VT_VARIANT | Invalid. VARIANTARGs must be passed by reference. |
| VT_VARIANT | VT_BYREF | A pointer to another VARIANTARG is passed in pvarVal. This referenced VARIANTARG,pvarVal, cannot be another VT_VARIANT|VT_BYREF. This value can be used to support languages that allow functions to change the types of variables passed by reference. |
| VT_UNKNOWN | A pointer to an object that implements the IUnknown interface is passed in punkVal. |
| VT_UNKNOWN | VT_BYREF | A pointer to the IUnknown interface is passed inppunkVal. The pointer to the interface is stored in the location referred to byppunkVal. |
| VT_ARRAY | <anything> | An array of data type <anything> was passed. (VT_EMPTY and VT_NULL are invalid types to combine with VT_ARRAY.) The pointer inpparray points to an array descriptor, which describes the dimensions, size, and in-memory location of the array. The array descriptor is never accessed directly, but instead is read and modified using the functions described inConversion and Manipulation Functions. |
COM技术中的VARIANT and VARIANTARG的更多相关文章
- (转) Web 建站技术中,HTML、HTML5、XHTML、CSS、SQL、JavaScript、PHP、ASP.NET、Web Services 是什么?
Web 建站技术中,HTML.HTML5.XHTML.CSS.SQL.JavaScript.PHP.ASP.NET.Web Services 是什么? 建站有很多技术,如 HTML.HTML5.XHT ...
- Web 建站技术中,HTML、HTML5、XHTML、CSS、SQL、JavaScript、PHP、ASP.NET、Web Services 是什么(转)
Web 建站技术中,HTML.HTML5.XHTML.CSS.SQL.JavaScript.PHP.ASP.NET.Web Services 是什么?修改 建站有很多技术,如 HTML.HTML5.X ...
- APS技术中的多目标规划问题
在进行APS(高级计划与排程)系统开发时,绝大多数情况下是需要考虑多目标的.但面对多目标问题进行规划求解时,我们往往极容易因处理方法不当,而影响输出结果,令结果与用户期望产生较大差别.事实上很多时候用 ...
- 转:显示技术中的帧、帧数、帧率、 FPS
在视频领域,电影.电视.数字视频等可视为随时间连续变换的许多张画面,而“帧( Frame)”是指每一张画面.而我们日常口语习惯或者说不严谨的交流中,通常对于帧数( Frames)与帧率( Frame ...
- Xen虚拟化技术中PV和HVM的区别
转自 这里 Xen是一个开源的type-1或者裸机管理程序,它使得一个物理主机能够同时并行运行多个相同的或者不同的操作系统实例.Xen是目前唯一的开源可得的type-1管理程序.Xen被应用于许多商业 ...
- 【转 | 侵删】2D 绘图技术中的坐标系统与坐标变换
本文介绍在 2D 绘图技术中的坐标系统和坐标变换的相关知识.同时介绍 Kity 在这方面提供的 API .希望这些知识对于需要进行图形应用开发的同学会有所帮助. 锤子的故事 很久以前,有一个画家,他很 ...
- 【ABAP系列】SAP DOI技术中I_OI_SPREADSHEET接口的使用
公众号:SAP Technical 本文作者:matinal 原文出处:http://www.cnblogs.com/SAPmatinal/ 原文链接:[ABAP系列]SAP DOI技术中I_OI_S ...
- 数据库技术中的触发器(Trigger)——和ContentObserver功能类似
刚总结过ContentObserver的作用和特点,顺便总结下数据库技术中的触发器(Trigger),触 发 器 分 为 表 触 发 器 . 行 触 发 器
- GDI+图形图像处理技术中Pen和Brush的简单使用和简单图形的绘制(C#)
1.Graphics Graphics对象是GDI+绘图表面,因此在Windows窗体应用程序中要使用GDI+创建绘图,必须要先创建Graphics.在给窗体注册一个Paint事件后,Graphics ...
随机推荐
- ApiTesting全链路自动化测试框架 - 初版发布(一)
简介 此框架是基于Python+Pytest+Requests+Allure+Yaml+Json实现全链路接口自动化测试. 主要流程:解析接口数据包 ->生成接口基础配置(yml) ->生 ...
- 【noi 2.6_9271】奶牛散步(DP)
这题与前面的"踩方格"重复了,而且是大坑题!题目漏写了取模12345的条件! 详细解析请见我之前的博文--http://www.cnblogs.com/konjak/p/59368 ...
- AtCoder Beginner Contest 188 D - Snuke Prime (思维,差分)
题意:你需要订阅一些服务,每个服务每天需要花费\(c_i\),要从第\(a_i\)用到第\(b_i\)天,你可以购买会员,会员每天需要花费\(C\),但是这天的服务不用再另花钱了,问你订阅这些服务的最 ...
- Codeforces Round #540 (Div. 3) C. Palindromic Matrix (大模拟)
题意:给你\(n\)个数,判断是否能构成一个\(n\)X\(n\)的回文矩阵,若可以,输出\(YES\)和矩阵,否则输出\(NO\). 题解:如果这个矩阵的行/列元素是偶数的话,很好办,所有出现的数一 ...
- Miller_Rabbin算法判断大素数
普通的素数测试我们有O(√ n)的试除算法.事实上,我们有O(s*log³n)的算法. 下面就介绍一下Miller_Rabbin算法思想: 定理一:假如p是质数,且(a,p)=1,那么a^(p-1)≡ ...
- HDU - 1789 dp
题意: 众所周知lyb根本不学习.但是期末到了,平时不写作业的他现在有很多作业要做. CUC的老师很严格,每个老师都会给他一个DDL(deadline). 如果lyb在DDL后交作业,老师就会扣他的分 ...
- 头疼的Python 脚本报错
Python 脚本报错 检查是否用了制表符.变量声明前面不能用制表符,只能用空格,版本为2.7.14
- Git管理远程仓库
一:使用远程仓库的目的 作用:备份,实现代码共享集中化管理: 二:将git本地仓库同步到远程仓库流程图 三:Git克隆操作 目的: 将远程仓库(github远程仓库项目代码)克隆到本地 如何克隆 1. ...
- Ruby on Rails
Ruby on Rails 是一个可以使你开发,部署,维护 web 应用程序变得简单的框架.在2004年7月,由Rails的创始人大卫·海纳梅尔·韩森从37signals公司的项目管理工具Baseca ...
- 关于TCP和UDP的通俗理解
TCP和UDP是网络基础,很多公司面试也都会问到,今天我在这里,根据大神们的讲解,自己总结借鉴一下. 首先,先提一个问题:英雄联盟是TCP还是UDP? 这个问题对于游戏玩家,可能大多数人都没有想过.一 ...