Examples of SAFEARRAYBOUND


Examples of com.sun.jna.platform.win32.OaIdl.SAFEARRAYBOUND

   * @return the sAFEARRA y. by reference
   */
  public static SAFEARRAY.ByReference createVarArray(int size) {
    SAFEARRAY.ByReference psa;
    SAFEARRAYBOUND[] rgsabound = new SAFEARRAYBOUND[1];
    rgsabound[0] = new SAFEARRAYBOUND(size, 0);

    psa = OleAuto.INSTANCE.SafeArrayCreate(
        new VARTYPE(Variant.VT_VARIANT), 1, rgsabound);

    return psa;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.