Desktop Functions: Smart Device Functions:
|
Search Results for "GetObject" in [All]user32
IDataObject dataObject = (IDataObject)Marshal.GetObjectForIUnknown(lpdobj);
lMsg = Win32.RegisterWindowMessage("WM_HTML_GETOBJECT"); 3: SendMessage
lMsg = Win32.RegisterWindowMessage("WM_HTML_GETOBJECT");
lMsg = Win32.RegisterWindowMessage("WM_HTML_GETOBJECT"); gdi32hSection is a handle to a file mapping object that the function will use to create the DIB and can be NULL. If hSection is not NULL, it must be a handle to a file mapping object created by calling the CreateFileMapping function (otherwise CreateDIBSection will fail). Moreover, the CreateDIBSection function will locate the bitmap’s bit values at offset dwOffset in the file mapping object referred to by hSection. An application can retrieve the hSection handle by calling the GetObject function with the HBITMAP returned by CreateDIBSection. 6: GetObject
static extern int GetObject(IntPtr hgdiobj, int cbBuffer, IntPtr lpvObject);
Private Shared Function GetObject(hgdiobj As IntPtr, cbBuffer As Integer, lpvObject As IntPtr) As Integer GDI32.GetObject(hBitmap, Marshal.SizeOf<GDI32.BITMAP>(), ptrToBitmap); oleacc
uint nMsg = RegisterWindowMessage("WM_HTML_GETOBJECT"); shell32
Object obj = Marshal.GetObjectForIUnknown( SfParent ); Constants9: WINERROR
public const int MSSIPOTF_E_CANTGETOBJECT = (int)(0x80097002 - 0x100000000); 10: WM
private const UInt32 WM_GETOBJECT = 0x003D;
private const UInt32 WM_MENUGETOBJECT = 0x0124;
WM_GETOBJECT = &H3D
WM_MENUGETOBJECT = &H124
WM_GETOBJECT equ 03Dh
WM_MENUGETOBJECT equ 124h kernel3211: DeviceIoControl
FsctlGetObjectId = (EFileDevice.FileSystem << 16) | (39 << 2) | EMethod.Buffered | (0 << 14),
FsctlCreateOrGetObjectId = (EFileDevice.FileSystem << 16) | (48 << 2) | EMethod.Buffered | (0 << 14), coredll12: GetObject
[DllImport("coredll", EntryPoint="GetObject", SetLastError=true)]
extern static public int GetObject(IntPtr hObj, int cb, byte[] objdata);
Declare Function GetObject Lib "coredll.dll" (TODO) As TODO ole3213: CoGetObject
IPersistStreamInit pPersistStream = (IPersistStreamInit)Marshal.GetObjectForIUnknown(pIPStream); Interfaces16: IADs
object GetObject( 17: IADsContainer
object GetObject(
object GetObject([MarshalAs(UnmanagedType.LPWStr)] string pszItem,
object GetObjectStorage([MarshalAs(UnmanagedType.LPWStr)] string pszItem, 19: IRichEditOle
int GetObjectCount();
void GetObject(int iob, ref REOBJECT lpreobject, [MarshalAs(UnmanagedType.U4)] GetObjectOptions flags); 20: IThumbnailCache
IThumbnailCache thumbnailCache = (IThumbnailCache) Marshal.GetObjectForIUnknown(cachePointer); 21: ITravelLogStg
ITravelLogStg tlstg = Marshal.GetObjectForIUnknown(oret) as ITravelLogStg; Enums22: GetObjectOptions 23: HRESULT
public const int MSSIPOTF_E_CANTGETOBJECT = unchecked((int)0x80097002);
Public Const MSSIPOTF_E_CANTGETOBJECT As Integer = CInt(&H80097002UI) 24: WindowsMessages
/// Active Accessibility sends the WM_GETOBJECT message to obtain information about an accessible object contained in a server application.
GETOBJECT = 0x003D,
/// The WM_MENUGETOBJECT message is sent to the owner of a drag-and-drop menu when the mouse cursor enters a menu item or moves from the center of the item to the top or bottom of the item.
MENUGETOBJECT = 0x0124,
'''Active Accessibility sends the WM_GETOBJECT message to obtain information about an accessible object contained in a server application. Applications never send this message directly. It is sent only by Active Accessibility in response to calls to AccessibleObjectFromPoint AccessibleObjectFromEvent or AccessibleObjectFromWindow. However server applications handle this message.
WM_GETOBJECT = &H3D
'''The WM_MENUGETOBJECT message is sent to the owner of a drag-and-drop menu when the mouse cursor enters a menu item or moves from the center of the item to the top or bottom of the item.
WM_MENUGETOBJECT = &H124 |