All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sun.jna.platform.win32.Ole32 Maven / Gradle / Ivy

There is a newer version: 5.16.0
Show newest version
/* Copyright (c) 2010 Daniel Doubrovkine, All Rights Reserved
 * 
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 * 
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.  
 */
package com.sun.jna.platform.win32;

import com.sun.jna.Native;
import com.sun.jna.Pointer;
import com.sun.jna.WString;
import com.sun.jna.platform.win32.Guid.CLSID;
import com.sun.jna.platform.win32.Guid.GUID;
import com.sun.jna.platform.win32.WinDef.DWORD;
import com.sun.jna.platform.win32.WinDef.LPVOID;
import com.sun.jna.platform.win32.WinNT.HRESULT;
import com.sun.jna.ptr.PointerByReference;
import com.sun.jna.win32.StdCallLibrary;
import com.sun.jna.win32.W32APIOptions;

/**
 * Ole32.dll Interface.
 * 
 * @author dblock[at]dblock.org
 * @author Tobias Wolf, [email protected]
 */
public interface Ole32 extends StdCallLibrary {

    /** The instance. */
    Ole32 INSTANCE = (Ole32) Native.loadLibrary("Ole32", Ole32.class,
                                                W32APIOptions.UNICODE_OPTIONS);

    /**
     * Creates a GUID, a unique 128-bit integer used for CLSIDs and interface
     * identifiers.
     * 
     * @param pguid
     *            A pointer to the requested GUID.
     * @return S_OK if the GUID was successfully created.
     */
    HRESULT CoCreateGuid(GUID pguid);

    /**
     * @deprecated use {@link #CoCreateGuid(Guid.GUID)}.
     * @param pguid GUID reference
     * @return result
     */
    HRESULT CoCreateGuid(GUID.ByReference pguid);

    /**
     * Converts a globally unique identifier (GUID) into a string of printable
     * characters.
     * 
     * @param rguid
     *            The GUID to be converted.
     * @param lpsz
     *            A pointer to a caller-allocated string variable to receive the
     *            resulting string.
     * @param cchMax
     *            The number of characters available in the lpsz buffer.
     * @return If the function succeeds, the return value is the number of
     *         characters in the returned string, including the null terminator.
     *         If the buffer is too small to contain the string, the return
     *         value is 0.
     */
    int StringFromGUID2(GUID rguid, char[] lpsz, int cchMax);

    /**
     * Converts a string generated by the StringFromIID function back into the
     * original interface identifier (IID).
     * 
     * @param lpsz
     *            A pointer to the string representation of the IID.
     * @param lpiid
     *            A pointer to the requested IID on return.
     * @return This function can return the standard return values E_INVALIDARG,
     *         E_OUTOFMEMORY, and S_OK.
     */
    HRESULT IIDFromString(String lpsz, GUID lpiid);

    /**
     * Initializes the COM library on the current thread and identifies the
     * concurrency model as single-thread apartment (STA).
     * 
     * New applications should call CoInitializeEx instead of CoInitialize.
     * 
     * pvReserved [in, optional] This parameter is reserved and must be NULL.
     * 
     * @param pvReserved
     *            the pv reserved
     * @return S_OK The COM library was initialized successfully on this thread.
     * 
     *         S_FALSE The COM library is already initialized on this thread.
     * 
     *         RPC_E_CHANGED_MODE A previous call to CoInitializeEx specified
     *         the concurrency model for this thread as multithread apartment
     *         (MTA). This could also indicate that a change from
     *         neutral-threaded apartment to single-threaded apartment has
     *         occurred.
     */
    HRESULT CoInitialize(LPVOID pvReserved);

    int COINIT_APARTMENTTHREADED  = 0x2;
    int COINIT_MULTITHREADED      = 0x0;
    int COINIT_DISABLE_OLE1DDE    = 0x4;
    int COINIT_SPEED_OVER_MEMORY  = 0x8;

    /**
     * Initializes the COM library for use by the calling thread, sets the
     * thread's concurrency model, and creates a new apartment for the thread if
     * one is required.
     * 
     * @param reserved
     *            This parameter is reserved and must be NULL.
     * @param dwCoInit
     *            The concurrency model and initialization options for the
     *            thread. Values for this parameter are taken from the COINIT
     *            enumeration. Any combination of values from COINIT can be
     *            used, except that the {@link #COINIT_APARTMENTTHREADED} and
     *            {@link #COINIT_MULTITHREADED} flags cannot both be set. The
     *            default (and only sane choice) is
     *            {@link #COINIT_MULTITHREADED}. 
     * @return This function can return the standard return values E_INVALIDARG,
     *         E_OUTOFMEMORY, and E_UNEXPECTED, as well as the following values.
     *         S_OK, S_FALSE, RPC_E_CHANGED_MODE
     */
    HRESULT CoInitializeEx(Pointer reserved, int dwCoInit);

    /**
     * Closes the COM library on the current thread, unloads all DLLs loaded by
     * the thread, frees any other resources that the thread maintains, and
     * forces all RPC connections on the thread to close.
     * 
     */
    void CoUninitialize();

    /**
     * Creates a single uninitialized object of the class associated with a
     * specified CLSID.
     * 
     * @param rclsid
     *            The CLSID associated with the data and code that will be used
     *            to create the object.
     * @param pUnkOuter
     *            If NULL, indicates that the object is not being created as
     *            part of an aggregate. If non-NULL, pointer to the aggregate
     *            object's IUnknown interface (the controlling IUnknown).
     * @param dwClsContext
     *            Context in which the code that manages the newly created
     *            object will run. The values are taken from the enumeration
     *            CLSCTX defined in WTypes.
     * @param riid
     *            A reference to the identifier of the interface to be used to
     *            communicate with the object.
     * @param ppv
     *            Address of pointer variable that receives the interface
     *            pointer requested in riid. Upon successful return, *ppv
     *            contains the requested interface pointer. Upon failure, *ppv
     *            contains NULL.
     * @return an HRESULT
     */
    HRESULT CoCreateInstance(GUID rclsid, Pointer pUnkOuter, int dwClsContext,
                             GUID riid, PointerByReference ppv);

    /**
     * Looks up a CLSID in the registry, given a ProgID.
     * 
     * @param lpszProgID
     *            [in] A pointer to the ProgID whose CLSID is requested.
     * @param lpclsid
     *            [out] Receives a pointer to the retrieved CLSID on return.
     * 
     * @return S_OK The CLSID was retrieved successfully.
     * 
     *         CO_E_CLASSSTRING The registered CLSID for the ProgID is invalid.
     * 
     *         REGDB_E_WRITEREGDB An error occurred writing the CLSID to the
     *         registry. See Remarks below.
     * 
     *         Remarks Given a ProgID, CLSIDFromProgID looks up its associated
     *         CLSID in the registry. If the ProgID cannot be found in the
     *         registry, CLSIDFromProgID creates an OLE 1 CLSID for the ProgID
     *         and a CLSID entry in the registry. Because of the restrictions
     *         placed on OLE 1 CLSID values, CLSIDFromProgID and CLSIDFromString
     *         are the only two functions that can be used to generate a CLSID
     *         for an OLE 1 object.
     */
    HRESULT CLSIDFromProgID(String lpszProgID, CLSID.ByReference lpclsid);

    /**
     * Converts a string generated by the StringFromCLSID function back into the
     * original CLSID.
     * 
     * @param lpsz
     *            [in] The string representation of the CLSID.
     * 
     * @param pclsid
     *            [out] A pointer to the CLSID.
     * 
     * @return Return value
     * 
     *         This function can return the standard return value E_INVALIDARG,
     *         as well as the following values.
     * 
     *         NOERROR The CLSID was obtained successfully.
     * 
     *         CO_E_CLASSSTRING The class string was improperly formatted.
     * 
     *         REGDB_E_CLASSNOTREG The CLSID corresponding to the class string
     *         was not found in the registry.
     * 
     *         REGDB_E_READREGDB The registry could not be opened for reading.
     */
    HRESULT CLSIDFromString(WString lpsz, CLSID.ByReference pclsid);

	/**
	 * Allocates a block of task memory in the same way that IMalloc::Alloc does. CoTaskMemAlloc uses the default
	 * allocator to allocate a memory block in the same way that IMalloc::Alloc does. It is not necessary to call the
	 * CoGetMalloc function before calling CoTaskMemAlloc. 
	 * 

The initial contents of the returned memory block are * undefined - there is no guarantee that the block has been initialized. The allocated block may be larger than cb * bytes because of the space required for alignment and for maintenance information. *

* If cb is 0, CoTaskMemAlloc * allocates a zero-length item and returns a valid pointer to that item. If there is insufficient memory available, * CoTaskMemAlloc returns NULL. Applications should always check the return value from this function, even when * requesting small amounts of memory, because there is no guarantee that the memory will be allocated. * @param cb The size of the memory block to be allocated, in bytes. * @return If the function succeeds, it returns the allocated memory block. Otherwise, it returns NULL. */ Pointer CoTaskMemAlloc(long cb); /** * Changes the size of a previously allocated block of task memory. This function changes the size of a previously * allocated memory block in the same way that IMalloc::Realloc does. It is not necessary to call the CoGetMalloc * function to get a pointer to the OLE allocator before calling CoTaskMemRealloc. *

* The pv parameter points to the * beginning of the memory block. If pv is NULL, CoTaskMemRealloc allocates a new memory block in the same way as * the CoTaskMemAlloc function. If pv is not NULL, it should be a pointer returned by a prior call to * CoTaskMemAlloc. *

* The cb parameter specifies the size of the new block. The contents of the block are unchanged up * to the shorter of the new and old sizes, although the new block can be in a different location. Because the new * block can be in a different memory location, the pointer returned by CoTaskMemRealloc is not guaranteed to be the * pointer passed through the pv argument. If pv is not NULL and cb is 0, then the memory pointed to by pv is freed. *

* CoTaskMemRealloc returns a void pointer to the reallocated (and possibly moved) memory block. The return value is * NULL if the size is 0 and the buffer argument is not NULL, or if there is not enough memory available to expand * the block to the specified size. In the first case, the original block is freed; in the second case, the original * block is unchanged. The storage space pointed to by the return value is guaranteed to be suitably aligned for * storage of any type of object. To get a pointer to a type other than void, use a type cast on the return value. * @param pv A pointer to the memory block to be reallocated. This parameter can be NULL. * @param cb The size of the memory block to be reallocated, in bytes. This parameter can be 0. * @return If the function succeeds, it returns the reallocated memory block. Otherwise, it returns NULL. */ Pointer CoTaskMemRealloc(Pointer pv, long cb); /** * Frees a block of task memory previously allocated through a call to the {@link #CoTaskMemAlloc} or * {@link #CoTaskMemRealloc} function. The function uses the default OLE allocator. The number of bytes * freed equals the number of bytes that were originally allocated or reallocated. After the call, the memory block * pointed to by pv is invalid and can no longer be used. * @param pv A pointer to the memory block to be freed. If this parameter is NULL, the function has no effect. */ void CoTaskMemFree(Pointer pv); /** * Retrieves a pointer to the default OLE task memory allocator. * * {@code * HRESULT CoGetMalloc( * [In] DWORD dwMemContext, * [Out] LPMALLOC *ppMalloc * );} * * @param dwMemContext context * @param ppMalloc returned pointer * @return status * @see MSDN * */ HRESULT CoGetMalloc(DWORD dwMemContext, PointerByReference ppMalloc); /** * Returns a pointer to the IRunningObjectTable interface on the local running object table (ROT). * * {@code * HRESULT GetRunningObjectTable( * [In] DWORD reserved, * [Out] LPRUNNINGOBJECTTABLE *pprot * ); * } * * * @param reserved unused * @param pprot returned pointer * @return status * @see MSDN */ HRESULT GetRunningObjectTable(DWORD reserved, PointerByReference pprot); /** * Returns a pointer to an implementation of IBindCtx (a bind context object). * * {@code * HRESULT CreateBindCtx( * [In] DWORD reserved, * [Out] LPBC *ppbc * ); * } * * * @param reserved unused * @param ppbc returned pointer * @return status * @see MSDN */ HRESULT CreateBindCtx(DWORD reserved, PointerByReference ppbc); /** * Determines whether a remote object is connected to the corresponding in-process object. * * {@code * BOOL CoIsHandlerConnected( * [In] LPUNKNOWN pUnk * ); * } * * @param pUnk object * @return whether the object is connected * @see MSDN * */ boolean CoIsHandlerConnected(Pointer pUnk); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy