Desktop Functions: Smart Device Functions:
|
Search Results for "OBJ_" in [All]gdi321: EnumObjects The nObjectType parameter should be one from the OBJ_ constants. The MSDN documentation says either OBJ_PEN, or OBJ_BRUSH.
OBJ_PEN = 1,
OBJ_BRUSH = 2,
OBJ_DC = 3,
OBJ_METADC = 4,
OBJ_PAL = 5,
OBJ_FONT = 6,
OBJ_BITMAP = 7,
OBJ_REGION = 8,
OBJ_METAFILE = 9,
OBJ_MEMDC = 10,
OBJ_EXTPEN = 11,
OBJ_ENHMETADC = 12,
OBJ_ENHMETAFILE = 13 Constants3: OBJ_
OBJ_PEN = 1,
OBJ_BRUSH = 2,
OBJ_DC = 3,
OBJ_METADC= 4,
OBJ_PAL = 5,
OBJ_FONT = 6,
OBJ_BITMAP= 7,
OBJ_REGION= 8,
OBJ_METAFILE= 9,
OBJ_MEMDC = 10,
OBJ_EXTPEN= 11,
OBJ_ENHMETADC = 12,
OBJ_ENHMETAFILE = 13,
OBJ_COLORSPACE = 14; 4: WINERROR
public const int ERROR_DS_OBJ_CLASS_VIOLATION = 8212;
public const int ERROR_DS_CANT_MOD_OBJ_CLASS = 8215;
public const int ERROR_DS_MAX_OBJ_SIZE_EXCEEDED = 8304;
public const int ERROR_DS_OBJ_STRING_NAME_EXISTS = 8305;
public const int ERROR_DS_OBJ_TOO_LARGE = 8312;
public const int ERROR_DS_OBJ_NOT_FOUND = 8333;
public const int ERROR_DS_ALIASED_OBJ_MISSING = 8334;
public const int ERROR_DS_OBJ_GUID_EXISTS = 8361;
public const int ERROR_DS_OBJ_CLASS_NOT_DEFINED = 8371;
public const int ERROR_DS_OBJ_CLASS_NOT_SUBCLASS = 8372;
public const int ERROR_DS_DRA_OBJ_IS_REP_SOURCE = 8450;
public const int ERROR_DS_WRONG_OM_OBJ_CLASS = 8476;
public const int ERROR_DS_SRC_OBJ_NOT_GROUP_OR_USER = 8538;
public const int ERROR_DS_DRA_OBJ_NC_MISMATCH = 8545;
public const int OLEOBJ_E_FIRST = (int)(0x80040180 - 0x100000000);
public const int OLEOBJ_E_LAST = (int)(0x8004018F - 0x100000000);
public const int OLEOBJ_S_FIRST = 0x00040180;
public const int OLEOBJ_S_LAST = 0x0004018F;
public const int OLEOBJ_E_NOVERBS = (int)(0x80040180 - 0x100000000);
public const int OLEOBJ_E_INVALIDVERB = (int)(0x80040181 - 0x100000000);
public const int OLEOBJ_S_INVALIDVERB = 0x00040180;
public const int OLEOBJ_S_CANNOT_DOVERB_NOW = 0x00040181;
public const int OLEOBJ_S_INVALIDHWND = 0x00040182; ntdll5: NtCreateFile
UInt32 OBJ_CASE_INSENSITIVE = 0x40;
objAttributes.Attributes = OBJ_CASE_INSENSITIVE; Enums
REO_GETOBJ_NO_INTERFACES = 0, // Get no interfaces
REO_GETOBJ_POLEOBJ = 1, // Get object interface
REO_GETOBJ_PSTG = 2, // Get storage interface
REO_GETOBJ_POLESITE = 4, // Get site interface
REO_GETOBJ_ALL_INTERFACES = 7 // Get all interfaces 7: HRESULT
public const int OLEOBJ_E_FIRST = unchecked((int)0x80040180);
public const int OLEOBJ_E_LAST = unchecked((int)0x8004018F);
public const int OLEOBJ_S_FIRST = unchecked((int)0x00040180);
public const int OLEOBJ_S_LAST = unchecked((int)0x0004018F);
public const int OLEOBJ_E_NOVERBS = unchecked((int)0x80040180);
public const int OLEOBJ_E_INVALIDVERB = unchecked((int)0x80040181);
public const int OLEOBJ_S_INVALIDVERB = unchecked((int)0x00040180);
public const int OLEOBJ_S_CANNOT_DOVERB_NOW = unchecked((int)0x00040181);
public const int OLEOBJ_S_INVALIDHWND = unchecked((int)0x00040182);
Public Const OLEOBJ_E_FIRST As Integer = CInt(&H80040180UI)
Public Const OLEOBJ_E_LAST As Integer = CInt(&H8004018fUI)
Public Const OLEOBJ_S_FIRST As Integer = CInt(&H40180)
Public Const OLEOBJ_S_LAST As Integer = CInt(&H4018f)
Public Const OLEOBJ_E_NOVERBS As Integer = CInt(&H80040180UI)
Public Const OLEOBJ_E_INVALIDVERB As Integer = CInt(&H80040181UI)
Public Const OLEOBJ_S_INVALIDVERB As Integer = CInt(&H40180)
Public Const OLEOBJ_S_CANNOT_DOVERB_NOW As Integer = CInt(&H40181)
Public Const OLEOBJ_S_INVALIDHWND As Integer = CInt(&H40182) |