public interface Ole32 extends StdCallLibrary
StdCallLibrary.StdCallCallback
Library.Handler
Modifier and Type | Field and Description |
---|---|
static int |
COINIT_APARTMENTTHREADED |
static int |
COINIT_DISABLE_OLE1DDE |
static int |
COINIT_MULTITHREADED |
static int |
COINIT_SPEED_OVER_MEMORY |
static int |
EOAC_NONE |
static Ole32 |
INSTANCE
The instance.
|
static int |
RPC_C_AUTHN_LEVEL_CALL |
static int |
RPC_C_AUTHN_LEVEL_DEFAULT |
static int |
RPC_C_AUTHN_WINNT |
static int |
RPC_C_AUTHZ_NONE |
static int |
RPC_C_IMP_LEVEL_IMPERSONATE |
FUNCTION_MAPPER, STDCALL_CONVENTION
OPTION_ALLOW_OBJECTS, OPTION_CALLING_CONVENTION, OPTION_CLASSLOADER, OPTION_FUNCTION_MAPPER, OPTION_INVOCATION_MAPPER, OPTION_OPEN_FLAGS, OPTION_STRING_ENCODING, OPTION_STRUCTURE_ALIGNMENT, OPTION_TYPE_MAPPER
Modifier and Type | Method and Description |
---|---|
WinNT.HRESULT |
CLSIDFromProgID(java.lang.String lpszProgID,
Guid.CLSID.ByReference lpclsid)
Looks up a CLSID in the registry, given a ProgID.
|
WinNT.HRESULT |
CLSIDFromString(java.lang.String lpsz,
Guid.CLSID.ByReference pclsid)
Converts a string generated by the StringFromCLSID function back into the
original CLSID.
|
WinNT.HRESULT |
CoCreateGuid(Guid.GUID pguid)
Creates a GUID, a unique 128-bit integer used for CLSIDs and interface
identifiers.
|
WinNT.HRESULT |
CoCreateInstance(Guid.GUID rclsid,
Pointer pUnkOuter,
int dwClsContext,
Guid.GUID riid,
PointerByReference ppv)
Creates a single uninitialized object of the class associated with a
specified CLSID.
|
WinNT.HRESULT |
CoGetMalloc(WinDef.DWORD dwMemContext,
PointerByReference ppMalloc)
Retrieves a pointer to the default OLE task memory allocator.
|
WinNT.HRESULT |
CoInitialize(WinDef.LPVOID pvReserved)
Initializes the COM library on the current thread and identifies the
concurrency model as single-thread apartment (STA).
|
WinNT.HRESULT |
CoInitializeEx(Pointer reserved,
int dwCoInit)
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.
|
WinNT.HRESULT |
CoInitializeSecurity(WinNT.SECURITY_DESCRIPTOR pSecDesc,
int cAuthSvc,
Pointer asAuthSvc,
Pointer pReserved1,
int dwAuthnLevel,
int dwImpLevel,
Pointer pAuthList,
int dwCapabilities,
Pointer pReserved3)
Registers security and sets the default security values for the process.
|
boolean |
CoIsHandlerConnected(Pointer pUnk)
Determines whether a remote object is connected to the corresponding in-process object.
|
WinNT.HRESULT |
CoSetProxyBlanket(Unknown pProxy,
int dwAuthnSvc,
int dwAuthzSvc,
WTypes.LPOLESTR pServerPrincName,
int dwAuthnLevel,
int dwImpLevel,
Pointer pAuthInfo,
int dwCapabilities)
Sets the authentication information that will be used to make calls on
the specified proxy.
|
Pointer |
CoTaskMemAlloc(long cb)
Allocates a block of task memory in the same way that IMalloc::Alloc does.
|
void |
CoTaskMemFree(Pointer pv)
Frees a block of task memory previously allocated through a call to the
CoTaskMemAlloc(long) or
CoTaskMemRealloc(com.sun.jna.Pointer, long) function. |
Pointer |
CoTaskMemRealloc(Pointer pv,
long cb)
Changes the size of a previously allocated block of task memory.
|
void |
CoUninitialize()
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.
|
WinNT.HRESULT |
CreateBindCtx(WinDef.DWORD reserved,
PointerByReference ppbc)
Returns a pointer to an implementation of IBindCtx (a bind context object).
|
WinNT.HRESULT |
GetRunningObjectTable(WinDef.DWORD reserved,
PointerByReference pprot)
Returns a pointer to the IRunningObjectTable interface on the local running object table (ROT).
|
WinNT.HRESULT |
IIDFromString(java.lang.String lpsz,
Guid.GUID lpiid)
Converts a string generated by the StringFromIID function back into the
original interface identifier (IID).
|
WinNT.HRESULT |
OleFlushClipboard()
Carries out the clipboard shutdown sequence.
|
WinNT.HRESULT |
OleInitialize(Pointer pvReserved)
Initializes the COM library on the current apartment, identifies the
concurrency model as single-thread apartment (STA), and enables
additional functionality described in the Remarks section below.
|
WinNT.HRESULT |
OleRun(Pointer pUnknown)
Puts an OLE compound document object into the running state.
|
void |
OleUninitialize()
Closes the COM library on the apartment, releases any class factories,
other COM objects, or servers held by the apartment, disables RPC on the
apartment, and frees any resources the apartment maintains.
|
int |
StringFromGUID2(Guid.GUID rguid,
char[] lpsz,
int cchMax)
Converts a globally unique identifier (GUID) into a string of printable
characters.
|
static final Ole32 INSTANCE
static final int COINIT_APARTMENTTHREADED
static final int COINIT_MULTITHREADED
static final int COINIT_DISABLE_OLE1DDE
static final int COINIT_SPEED_OVER_MEMORY
static final int RPC_C_AUTHN_LEVEL_DEFAULT
static final int RPC_C_AUTHN_WINNT
static final int RPC_C_IMP_LEVEL_IMPERSONATE
static final int RPC_C_AUTHZ_NONE
static final int RPC_C_AUTHN_LEVEL_CALL
static final int EOAC_NONE
WinNT.HRESULT CoCreateGuid(Guid.GUID pguid)
pguid
- A pointer to the requested GUID.int StringFromGUID2(Guid.GUID rguid, char[] lpsz, int cchMax)
rguid
- The GUID to be converted.lpsz
- A pointer to a caller-allocated string variable to receive the
resulting string.cchMax
- The number of characters available in the lpsz buffer.WinNT.HRESULT IIDFromString(java.lang.String lpsz, Guid.GUID lpiid)
lpsz
- A pointer to the string representation of the IID.lpiid
- A pointer to the requested IID on return.WinNT.HRESULT CoInitialize(WinDef.LPVOID pvReserved)
pvReserved
- the pv reservedWinNT.HRESULT CoInitializeEx(Pointer reserved, int dwCoInit)
reserved
- This parameter is reserved and must be NULL.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 COINIT_APARTMENTTHREADED
and
COINIT_MULTITHREADED
flags cannot both be set. The
default (and only sane choice) is
COINIT_MULTITHREADED
.WinNT.HRESULT CoInitializeSecurity(WinNT.SECURITY_DESCRIPTOR pSecDesc, int cAuthSvc, Pointer asAuthSvc, Pointer pReserved1, int dwAuthnLevel, int dwImpLevel, Pointer pAuthList, int dwCapabilities, Pointer pReserved3)
pSecDesc
- [in, optional] The access permissions that a server will use
to receive calls. This parameter is used by COM only when a
server calls CoInitializeSecurity. Its value is a pointer to
one of three types: an AppID, an IAccessControl object, or a
SECURITY_DESCRIPTOR, in absolute format. See the Remarks
section for more information.cAuthSvc
- [in] The count of entries in the asAuthSvc parameter. This
parameter is used by COM only when a server calls
CoInitializeSecurity. If this parameter is 0, no
authentication services will be registered and the server
cannot receive secure calls. A value of -1 tells COM to choose
which authentication services to register, and if this is the
case, the asAuthSvc parameter must be NULL. However, Schannel
will never be chosen as an authentication service by the
server if this parameter is -1.asAuthSvc
- [in, optional] An array of authentication services that a
server is willing to use to receive a call. This parameter is
used by COM only when a server calls CoInitializeSecurity. For
more information, see SOLE_AUTHENTICATION_SERVICE.pReserved1
- [in, optional] This parameter is reserved and must be NULL.dwAuthnLevel
- [in] The default authentication level for the process. Both
servers and clients use this parameter when they call
CoInitializeSecurity. COM will fail calls that arrive with a
lower authentication level. By default, all proxies will use
at least this authentication level. This value should contain
one of the authentication level constants. By default, all
calls to IUnknown are made at this level.dwImpLevel
- [in] The default impersonation level for proxies. The value of
this parameter is used only when the process is a client. It
should be a value from the impersonation level constants,
except for RPC_C_IMP_LEVEL_DEFAULT, which is not for use with
CoInitializeSecurity. Outgoing calls from the client always
use the impersonation level as specified. (It is not
negotiated.) Incoming calls to the client can be at any
impersonation level. By default, all IUnknown calls are made
with this impersonation level, so even security-aware
applications should set this level carefully. To determine
which impersonation levels each authentication service
supports, see the description of the authentication services
in COM and Security Packages. For more information about
impersonation levels, see Impersonation.pAuthList
- [in, optional] A pointer to SOLE_AUTHENTICATION_LIST, which is
an array of SOLE_AUTHENTICATION_INFO structures. This list
indicates the information for each authentication service that
a client can use to call a server. This parameter is used by
COM only when a client calls CoInitializeSecurity.dwCapabilities
- [in] Additional capabilities of the client or server,
specified by setting one or more
EOLE_AUTHENTICATION_CAPABILITIES values. Some of these value
cannot be used simultaneously, and some cannot be set when
particular authentication services are being used.pReserved3
- [in, optional] This parameter is reserved and must be NULL.WinNT.HRESULT CoSetProxyBlanket(Unknown pProxy, int dwAuthnSvc, int dwAuthzSvc, WTypes.LPOLESTR pServerPrincName, int dwAuthnLevel, int dwImpLevel, Pointer pAuthInfo, int dwCapabilities)
pProxy
- [in] The proxy to be set.dwAuthnSvc
- [in] The authentication service to be used. For a list of
possible values, see Authentication Service Constants. Use
RPC_C_AUTHN_NONE if no authentication is required. If
RPC_C_AUTHN_DEFAULT is specified, DCOM will pick an
authentication service following its normal security blanket
negotiation algorithm.dwAuthzSvc
- [in] The authorization service to be used. For a list of
possible values, see Authorization Constants. If
RPC_C_AUTHZ_DEFAULT is specified, DCOM will pick an
authorization service following its normal security blanket
negotiation algorithm. RPC_C_AUTHZ_NONE should be used as the
authorization service if NTLMSSP, Kerberos, or Schannel is
used as the authentication service.pServerPrincName
- [in, optional] The server principal name to be used with the
authentication service. If COLE_DEFAULT_PRINCIPAL is
specified, DCOM will pick a principal name using its security
blanket negotiation algorithm. If Kerberos is used as the
authentication service, this value must not be NULL. It must
be the correct principal name of the server or the call will
fail. If Schannel is used as the authentication service, this
value must be one of the msstd or fullsic forms described in
Principal Names, or NULL if you do not want mutual
authentication. Generally, specifying NULL will not reset the
server principal name on the proxy; rather, the previous
setting will be retained. You must be careful when using NULL
as pServerPrincName when selecting a different authentication
service for the proxy, because there is no guarantee that the
previously set principal name would be valid for the newly
selected authentication service.dwAuthnLevel
- [in] The authentication level to be used. For a list of
possible values, see Authentication Level Constants. If
RPC_C_AUTHN_LEVEL_DEFAULT is specified, DCOM will pick an
authentication level following its normal security blanket
negotiation algorithm. If this value is none, the
authentication service must also be none.dwImpLevel
- [in] The impersonation level to be used. For a list of
possible values, see Impersonation Level Constants. If
RPC_C_IMP_LEVEL_DEFAULT is specified, DCOM will pick an
impersonation level following its normal security blanket
negotiation algorithm. If NTLMSSP is the authentication
service, this value must be RPC_C_IMP_LEVEL_IMPERSONATE or
RPC_C_IMP_LEVEL_IDENTIFY. NTLMSSP also supports delegate-level
impersonation (RPC_C_IMP_LEVEL_DELEGATE) on the same computer.
If Schannel is the authentication service, this parameter must
be RPC_C_IMP_LEVEL_IMPERSONATE.pAuthInfo
- [in, optional] A pointer to an RPC_AUTH_IDENTITY_HANDLE value
that establishes the identity of the client. The format of the
structure referred to by the handle depends on the provider of
the authentication service. For calls on the same computer,
RPC logs on the user with the supplied credentials and uses
the resulting token for the method call. For NTLMSSP or
Kerberos, the structure is a SEC_WINNT_AUTH_IDENTITY or
SEC_WINNT_AUTH_IDENTITY_EX structure. The client can discard
pAuthInfo after calling the API. RPC does not keep a copy of
the pAuthInfo pointer, and the client cannot retrieve it later
in the CoQueryProxyBlanket method. If this parameter is NULL,
DCOM uses the current proxy identity (which is either the
process token or the impersonation token). If the handle
refers to a structure, that identity is used. For Schannel,
this parameter must be either a pointer to a CERT_CONTEXT
structure that contains the client's X.509 certificate or is
NULL if the client wishes to make an anonymous connection to
the server. If a certificate is specified, the caller must not
free it as long as any proxy to the object exists in the
current apartment. For Snego, this member is either NULL,
points to a SEC_WINNT_AUTH_IDENTITY structure, or points to a
SEC_WINNT_AUTH_IDENTITY_EX structure. If it is NULL, Snego
will pick a list of authentication services based on those
available on the client computer. If it points to a
SEC_WINNT_AUTH_IDENTITY_EX structure, the structure's
PackageList member must point to a string containing a
comma-separated list of authentication service names and the
PackageListLength member must give the number of bytes in the
PackageList string. If PackageList is NULL, all calls using
Snego will fail. If COLE_DEFAULT_AUTHINFO is specified for
this parameter, DCOM will pick the authentication information
following its normal security blanket negotiation algorithm.
CoSetProxyBlanket will fail if pAuthInfo is set and one of the
cloaking flags is set in the dwCapabilities parameter.dwCapabilities
- [in] The capabilities of this proxy. For a list of possible
values, see the EOLE_AUTHENTICATION_CAPABILITIES enumeration.
The only flags that can be set through this function are
EOAC_MUTUAL_AUTH, EOAC_STATIC_CLOAKING, EOAC_DYNAMIC_CLOAKING,
EOAC_ANY_AUTHORITY (this flag is deprecated),
EOAC_MAKE_FULLSIC, and EOAC_DEFAULT. Either
EOAC_STATIC_CLOAKING or EOAC_DYNAMIC_CLOAKING can be set if
pAuthInfo is not set and Schannel is not the authentication
service. (See Cloaking for more information.) If any
capability flags other than those mentioned here are set,
CoSetProxyBlanket will fail.void CoUninitialize()
WinNT.HRESULT CoCreateInstance(Guid.GUID rclsid, Pointer pUnkOuter, int dwClsContext, Guid.GUID riid, PointerByReference ppv)
rclsid
- The CLSID associated with the data and code that will be used
to create the object.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).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.riid
- A reference to the identifier of the interface to be used to
communicate with the object.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.WinNT.HRESULT CLSIDFromProgID(java.lang.String lpszProgID, Guid.CLSID.ByReference lpclsid)
lpszProgID
- [in] A pointer to the ProgID whose CLSID is requested.lpclsid
- [out] Receives a pointer to the retrieved CLSID on return.WinNT.HRESULT CLSIDFromString(java.lang.String lpsz, Guid.CLSID.ByReference pclsid)
lpsz
- [in] The string representation of the CLSID.pclsid
- [out] A pointer to the CLSID.Pointer CoTaskMemAlloc(long cb)
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.cb
- The size of the memory block to be allocated, in bytes.Pointer CoTaskMemRealloc(Pointer pv, long cb)
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.pv
- A pointer to the memory block to be reallocated. This parameter can be NULL.cb
- The size of the memory block to be reallocated, in bytes. This parameter can be 0.void CoTaskMemFree(Pointer pv)
CoTaskMemAlloc(long)
or
CoTaskMemRealloc(com.sun.jna.Pointer, long)
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.pv
- A pointer to the memory block to be freed. If this parameter is NULL, the function has no effect.WinNT.HRESULT CoGetMalloc(WinDef.DWORD dwMemContext, PointerByReference ppMalloc)
HRESULT CoGetMalloc(
[In] DWORD dwMemContext,
[Out] LPMALLOC *ppMalloc
);
dwMemContext
- contextppMalloc
- returned pointerWinNT.HRESULT GetRunningObjectTable(WinDef.DWORD reserved, PointerByReference pprot)
HRESULT GetRunningObjectTable(
[In] DWORD reserved,
[Out] LPRUNNINGOBJECTTABLE *pprot
);
reserved
- unusedpprot
- returned pointerWinNT.HRESULT CreateBindCtx(WinDef.DWORD reserved, PointerByReference ppbc)
HRESULT CreateBindCtx(
[In] DWORD reserved,
[Out] LPBC *ppbc
);
reserved
- unusedppbc
- returned pointerboolean CoIsHandlerConnected(Pointer pUnk)
BOOL CoIsHandlerConnected(
[In] LPUNKNOWN pUnk
);
pUnk
- objectWinNT.HRESULT OleInitialize(Pointer pvReserved)
pvReserved
- Reserved; must be null.S_OK
if the COM library and additional functionality were
initialized successfully on this apartment.
S_FALSE
if the COM library is already initialized on this apartment.
OLE_E_WRONGCOMPOBJ
if the versions of COMPOBJ.DLL and OLE2.DLL on
your machine are incompatible with each other.
RPC_E_CHANGED_MODE
if a previous call to CoInitializeEx specified
the concurrency model for this apartment as
multithread apartment (MTA). If running
Windows 2000, this could also mean that a
change from neutral threaded apartment to
single threaded apartment occurred.
void OleUninitialize()
OleInitialize(com.sun.jna.Pointer)
. OleUninitialize calls the CoUninitialize function
internally to shut down the OLE Component Object(COM) Library.
If the COM library was initialized on the apartment with a call to
CoInitialize or CoInitializeEx, it must be closed with a call to
CoUninitialize.
The OleInitialize(com.sun.jna.Pointer)
and OleUninitialize calls must be balanced —
if there are multiple calls to the OleInitialize(com.sun.jna.Pointer)
function, there
must be the same number of calls to OleUninitialize: Only the
OleUninitialize call corresponding to the OleInitialize(com.sun.jna.Pointer)
call
that actually initialized the library can close it.WinNT.HRESULT OleFlushClipboard()
S_OK
on success.
CLIPBRD_E_CANT_OPEN
The Windows OpenClipboard function used
within OleFlushClipboard failed.
CLIPBRD_E_CANT_CLOSE
The Windows CloseClipboard function used
within OleFlushClipboard failed.
Remarks
OleFlushClipboard renders the data from a data object onto the clipboard and releases the IDataObject pointer to the data object. While the application that put the data object on the clipboard is running, the clipboard holds only a pointer to the data object, thus saving memory. If you are writing an application that acts as the source of a clipboard operation, you can call the OleFlushClipboard function when your application is closed, such as when the user exits from your application. Calling OleFlushClipboard enables pasting and paste-linking of OLE objects after application shutdown. Before calling OleFlushClipboard, you can easily determine if your data is still on the clipboard with a call to the OleIsCurrentClipboard function. OleFlushClipboard leaves all formats offered by the data transfer object, including the OLE 1 compatibility formats, on the clipboard so they are available after application shutdown. In addition to OLE 1 compatibility formats, these include all formats offered on a global handle medium (all except for TYMED_FILE) and formatted with a null target device. For example, if a data-source application offers a particular clipboard format (say cfFOO) on an IStorage object, and calls the OleFlushClipboard function, the storage object is copied into memory and the hglobal memory handle is put on the clipboard. To retrieve the information on the clipboard, you can call the OleGetClipboard function from another application, which creates a default data object, and the hglobal from the clipboard again becomes a storage object. Furthermore, the FORMATETC enumerator and the IDataObject::QueryGetData method would all correctly indicate that the original clipboard format (cfFOO) is again available on a TYMED_ISTORAGE. To empty the clipboard, call the OleSetClipboard function specifying a null value for its parameter. The application should call this when it closes if there is no need to leave data on the clipboard after shutdown, or if data will be placed on the clipboard using the standard Windows clipboard functions.
WinNT.HRESULT OleRun(Pointer pUnknown)
pUnknown
- [in] Pointer to the IUnknown
interface
on the object, with which it will query for a pointer to
the IRunnableObject interface, and then call its Run method.
OLE_E_CLASSDIFF
The source of an
OLE link has been converted to a different class.
Remarks
The OleRun function puts an object in the running state. The implementation of OleRun was changed in OLE 2.01 to coincide with the publication of the IRunnableObject interface. You can use OleRun and IRunnableObject::Run interchangeably. OleRun queries the object for a pointer to IRunnableObject. If successful, the function returns the results of calling the IRunnableObject::Run method.
For more information on using this function, see IRunnableObject::Run.