public interface Oleaut32 extends StdCallLibrary
StdCallLibrary.StdCallCallbackLibrary.Handler| Modifier and Type | Field and Description |
|---|---|
static Oleaut32 |
INSTANCE |
FUNCTION_MAPPER, STDCALL_CONVENTIONOPTION_ALLOW_OBJECTS, OPTION_CALLING_CONVENTION, OPTION_FUNCTION_MAPPER, OPTION_INVOCATION_MAPPER, OPTION_OPEN_FLAGS, OPTION_STRUCTURE_ALIGNMENT, OPTION_TYPE_MAPPER| Modifier and Type | Method and Description |
|---|---|
Pointer |
SysAllocString(String sz)
This function allocates a new string and copies the passed string into it.
|
void |
SysFreeString(Pointer bstr)
This function frees a string allocated previously by SysAllocString,
SysAllocStringByteLen, SysReAllocString, SysAllocStringLen, or
SysReAllocStringLen.
|
static final Oleaut32 INSTANCE
Pointer SysAllocString(String sz)
sz - Null-terminated UNICODE string to copy.void SysFreeString(Pointer bstr)
bstr - Unicode string that was allocated previously, or NULL. Setting this parameter
to NULL causes the function to simply return.