Desktop Functions: Smart Device Functions:
|
Search Results for "DT" in [All]secur32
DateTime time = systime.AddTicks((long)data.LoginTime); //get the datetime the session was logged in 2: LsaLogonUser
[MarshalAs(UnmanagedType.ByValArray,SizeConst=8)] public byte[] SourceName; cards3: CardsWrappe
private static extern bool cdtInit([In] ref int width, [In] ref int height);
private static extern void cdtTerm();
private static extern int cdtDrawExt(IntPtr hDC, int x, int y, int dx, int dy,
private static extern int cdtDraw(IntPtr hDC, int x, int y, int ecsCard,
private static extern int cdtAnimate(IntPtr hDC, int ecbCardBack, int x, int y, int iState);
private static int _standardWidth;
bool ret = Card.cdtInit(ref _standardWidth, ref _standardHeight);
public static void DrawFace(Graphics g, int x, int y, int width, int height, int faceValue, CardSuit suit, Color invertedColor)
cdtDrawExt(hDc, x, y, width, height, cardValue, invertedColor!=Color.Empty ? 2 : 0, ConvertColor(invertedColor));
public static void DrawFace(Graphics g, int x, int y, int width, int height, int faceValue, CardSuit suit)
DrawFace(g, x, y, width, height, faceValue, suit, Color.Empty);
cdtDraw(hDc, x, y, cardValue, invertedColor!=Color.Empty ? 2 : 0, ConvertColor(invertedColor));
public static void DrawDeck(Graphics g, int x, int y, int width, int height, CardDeck deck)
cdtDrawExt(hDc, x, y, width, height, (int)deck, 1, 0);
cdtDraw(hDc, x, y, (int)deck, 1, 0);
public static void DrawDeck(Graphics g, int x, int y, int width, int height, Color backgroundColor)
cdtDrawExt(hDc, x, y, width, height, (int)CardDeck.CrossHatch, 1, Card.ConvertColor(backgroundColor));
cdtDraw(hDc, x, y, (int)CardDeck.CrossHatch, 1, Card.ConvertColor(backgroundColor));
/// Gets the standard width of the cards.
public static int StandardWidth
return Card._standardWidth;
Card.cdtTerm();
<DllImport("cards.dll")> Private Shared Function cdtInit(ByRef width As Integer, ByRef height As Integer) As Boolean
<DllImport("cards.dll")> Private Shared Sub cdtTerm()
<DllImport("cards.dll")> Private Shared Function cdtDraw(ByVal hDC As IntPtr, ByVal x As Integer, ByVal y As Integer, ByVal ecsCard As Integer, ByVal ectDraw As Integer, ByVal clr As Integer) As Integer
<DllImport("cards.dll")> Private Shared Function cdtDrawExt(ByVal hDC As IntPtr, ByVal x As Integer, ByVal y As Integer, ByVal dx As Integer, ByVal dy As Integer, ByVal ecsCard As Integer, ByVal ectDraw As Integer, ByVal clr As Integer) As Integer
<DllImport("cards.dll")> Private Shared Function cdtAnimate(ByVal hDC As IntPtr, ByVal ecbCardBack As Integer, ByVal x As Integer, ByVal y As Integer, ByVal iState As Integer)
Private Shared _standardWidth As Integer
Dim ret As Boolean = Card.cdtInit(_standardWidth, _standardHeight)
Public Shared Sub DrawFace(ByVal g As Graphics, ByVal x As Integer, ByVal y As Integer, ByVal width As Integer, ByVal height As Integer, ByVal faceValue As Integer, ByVal suit As CardSuit, ByVal invertedColor As Color)
cdtDrawExt(hDC, x, y, width, height, cardValue, IIf(invertedColor <> Color.Empty, 2, 0), ConvertColor(invertedColor))
Public Shared Sub DrawFace(ByVal g As Graphics, ByVal x As Integer, ByVal y As Integer, ByVal width As Integer, ByVal height As Integer, ByVal faceValue As Integer, ByVal suit As CardSuit)
DrawFace(g, x, y, width, height, faceValue, suit, Color.Empty)
cdtDraw(hDc, x, y, cardValue, IIf(invertedColor <> Color.Empty, 2, 0), ConvertColor(invertedColor))
Public Shared Sub DrawDeck(ByVal g As Graphics, ByVal x As Integer, ByVal y As Integer, ByVal width As Integer, ByVal height As Integer, ByVal deck As CardDeck)
cdtDrawExt(hDc, x, y, width, height, DirectCast(deck, Integer), 1, 0)
cdtDraw(hDc, x, y, DirectCast(deck, Integer), 1, 0)
Public Shared Sub DrawDeck(ByVal g As Graphics, ByVal x As Integer, ByVal y As Integer, ByVal width As Integer, ByVal height As Integer, ByVal backgroundColor As Color)
cdtDrawExt(hDc, x, y, width, height, DirectCast(CardDeck.CrossHatch, Integer), 1, Card.ConvertColor(backgroundColor))
cdtDraw(hDc, x, y, DirectCast(CardDeck.CrossHatch, Integer), 1, Card.ConvertColor(backgroundColor))
Return Card._standardWidth
Card.cdtTerm() 4: CardsWrapper
private static extern bool cdtInit([In] ref int width, [In] ref int height);
private static extern void cdtTerm();
private static extern int cdtDrawExt(IntPtr hDC, int x, int y, int dx, int dy,
private static extern int cdtDraw(IntPtr hDC, int x, int y, int ecsCard,
private static extern int cdtAnimate(IntPtr hDC, int ecbCardBack, int x, int y, int iState);
private static int _standardWidth;
bool ret = Card.cdtInit(ref _standardWidth, ref _standardHeight);
public static void DrawFace(Graphics g, int x, int y, int width, int height, int faceValue, CardSuit suit, Color invertedColor)
cdtDrawExt(hDc, x, y, width, height, cardValue, invertedColor!=Color.Empty ? 2 : 0, ConvertColor(invertedColor));
public static void DrawFace(Graphics g, int x, int y, int width, int height, int faceValue, CardSuit suit)
DrawFace(g, x, y, width, height, faceValue, suit, Color.Empty);
cdtDraw(hDc, x, y, cardValue, invertedColor!=Color.Empty ? 2 : 0, ConvertColor(invertedColor));
public static void DrawDeck(Graphics g, int x, int y, int width, int height, CardDeck deck)
cdtDrawExt(hDc, x, y, width, height, (int)deck, 1, 0);
cdtDraw(hDc, x, y, (int)deck, 1, 0);
public static void DrawDeck(Graphics g, int x, int y, int width, int height, Color backgroundColor)
cdtDrawExt(hDc, x, y, width, height, (int)CardDeck.CrossHatch, 1, Card.ConvertColor(backgroundColor));
cdtDraw(hDc, x, y, (int)CardDeck.CrossHatch, 1, Card.ConvertColor(backgroundColor));
/// Gets the standard width of the cards.
public static int StandardWidth
return Card._standardWidth;
Card.cdtTerm();
Private Declare Function cdtInit Lib "cards.dll" (ByRef width As Integer, ByRef height As Integer) As Boolean
Private Declare Sub cdtTerm Lib "cards.dll" ()
Private Declare Function cdtDraw Lib "cards.dll" (ByVal hDC As IntPtr, ByVal x As Integer, ByVal y As Integer, ByVal ecsCard As Integer, ByVal ectDraw As Integer, ByVal clr As Integer) As Integer
Private Declare Function cdtDrawExt Lib "cards.dll" (ByVal hDC As IntPtr, ByVal x As Integer, ByVal y As Integer, ByVal dx As Integer, ByVal dy As Integer, ByVal ecsCard As Integer, ByVal ectDraw As Integer, ByVal clr As Integer) As Integer
Private Declare Function cdtAnimate Lib "cards.dll" (ByVal hDC As IntPtr, ByVal ecbCardBack As Integer, ByVal x As Integer, ByVal y As Integer, ByVal iState As Integer)
Private Shared _standardWidth As Integer
Dim ret As Boolean = Card.cdtInit(_standardWidth, _standardHeight)
Public Shared Sub DrawFace(ByVal g As Graphics, ByVal x As Integer, ByVal y As Integer, ByVal width As Integer, ByVal height As Integer, ByVal faceValue As Integer, ByVal suit As CardSuit, ByVal invertedColor As Color)
cdtDrawExt(hDC, x, y, width, height, cardValue, IIf(invertedColor <> Color.Empty, 2, 0), ConvertColor(invertedColor))
Public Shared Sub DrawFace(ByVal g As Graphics, ByVal x As Integer, ByVal y As Integer, ByVal width As Integer, ByVal height As Integer, ByVal faceValue As Integer, ByVal suit As CardSuit)
DrawFace(g, x, y, width, height, faceValue, suit, Color.Empty)
cdtDraw(hDc, x, y, cardValue, IIf(invertedColor <> Color.Empty, 2, 0), ConvertColor(invertedColor))
Public Shared Sub DrawDeck(ByVal g As Graphics, ByVal x As Integer, ByVal y As Integer, ByVal width As Integer, ByVal height As Integer, ByVal deck As CardDeck)
cdtDrawExt(hDc, x, y, width, height, DirectCast(deck, Integer), 1, 0)
cdtDraw(hDc, x, y, DirectCast(deck, Integer), 1, 0)
Public Shared Sub DrawDeck(ByVal g As Graphics, ByVal x As Integer, ByVal y As Integer, ByVal width As Integer, ByVal height As Integer, ByVal backgroundColor As Color)
cdtDrawExt(hDc, x, y, width, height, DirectCast(CardDeck.CrossHatch, Integer), 1, Card.ConvertColor(backgroundColor))
cdtDraw(hDc, x, y, DirectCast(CardDeck.CrossHatch, Integer), 1, Card.ConvertColor(backgroundColor))
Return Card._standardWidth
Card.cdtTerm() 5: cdtAnimate
static extern int cdtAnimate(IntPtr hDC, int ecbCardBack, int x, int y, int iState);
Declare Function cdtAnimate Lib "cards.dll" (ByVal hDC As IntPtr, ByVal ecbCardBack As Integer, ByVal x As Integer, ByVal y As Integer, ByVal iState As Integer) As Integer 6: cdtDraw
static extern int cdtDrawExt(IntPtr hDC, int x, int y, int dx, int dy,
Declare Function cdtDrawExt Lib "cards.dll" (ByVal hDC As IntPtr, ByVal x As Integer, ByVal y As Integer, ByVal dx as Integer, ByVal dy As Integer, ByVal ecsCard As Integer, ByVal ectDraw As Integer, ByVal clr As Integer) As Integer 7: cdtDrawExt
static extern int cdtDrawExt(IntPtr hDC, int x, int y, int dx, int dy,
Declare Function cdtDrawExt Lib "cards.dll" (TODO) As TODO 8: cdtInit
static extern bool cdtInit([In] ref int width, [In] ref int height);
Declare Function cdtInit Lib "cards.dll" (<[In]> ByRef Width As Integer, _ 9: cdtTerm
10: DlgTemplate
public Int16 reservedTitle = 0; Constants11: CB_
CB_GETDROPPEDWIDTH = 0x015F,
CB_SETDROPPEDWIDTH = 0x0160,
public const int CB_GETDROPPEDWIDTH = 351;
public const int CB_SETDROPPEDWIDTH = 352;
CB_GETDROPPEDWIDTH = &H15F
CB_SETDROPPEDWIDTH = &H160
Public Const CB_GETDROPPEDWIDTH As Integer = 351
Public Const CB_SETDROPPEDWIDTH As Integer = 352 12: DI_
/// Draws the icon or cursor using the width and height specified by the system metric values for cursors or icons,
/// if the cxWidth and cyWidth parameters are set to zero. If this flag is not specified and cxWidth and cyWidth are set to zero, 13: EMR_
EMR_SETWORLDTRANSFORM = 35,
EMR_MODIFYWORLDTRANSFORM = 36, 14: IsGUIThread
[return: MarshalAs(UnmanagedType.Bool)]
static extern bool IsGUIThread([MarshalAs(UnmanagedType.Bool)] bool bConvert); 15: LR_
/// If fuLoad includes both the LR_LOADTRANSPARENT and LR_LOADMAP3DCOLORS values, LRLOADTRANSPARENT takes precedence.
public const int LR_LOADTRANSPARENT = 0x0020;
/// Uses the width or height specified by the system metric values for cursors or icons,
''' If fuLoad includes both the LR_LOADTRANSPARENT and LR_LOADMAP3DCOLORS values, LRLOADTRANSPARENT takes precedence.
LR_LOADTRANSPARENT = &H20
''' Uses the width or height specified by the system metric values for cursors or icons, 16: NERR_
public const int BadTransactConfig = 2141;
public const int PasswordTooShort = 2245;
public const int PasswordTooRecent = 2246;
public const int BrowserConfiguredToNotRun = 2550;
public const int PasswordTooLong = 2703; 17: PERCEIVED
18: PROPERTYKEY
public static PropertyKey PKEY_Contact_TTYTDDTelephone = new PropertyKey( 0xAAF16BAC, 0x2B55, 0x45E6, 0x9F, 0x6D, 0x41, 0x5E, 0xB9, 0x49, 0x10, 0xDF, 100);
public static PropertyKey PKEY_IsSendToTarget = new PropertyKey( 0x28636AA6, 0x953D, 0x11D2, 0xB5, 0xD6, 0x00, 0xC0, 0x4F, 0xD9, 0x18, 0xD0, 33);
public static PropertyKey PKEY_KindText = new PropertyKey( 0xF04BEF95, 0xC585, 0x4197, 0xA2, 0xB7, 0xDF, 0x46, 0xFD, 0xC9, 0xEE, 0x6D, 100);
public static PropertyKey PKEY_PerceivedType = new PropertyKey( 0x28636AA6, 0x953D, 0x11D2, 0xB5, 0xD6, 0x00, 0xC0, 0x4F, 0xD9, 0x18, 0xD0, 9);
public static PropertyKey PKEY_PropGroup_RecordedTV = new PropertyKey( 0xE7B33238, 0x6584, 0x4170, 0xA5, 0xC0, 0xAC, 0x25, 0xEF, 0xD9, 0xDA, 0x56, 100);
public static PropertyKey PKEY_PropList_ExtendedTileInfo = new PropertyKey( 0xC9944A21, 0xA406, 0x48FE, 0x82, 0x25, 0xAE, 0xC7, 0xE2, 0x4C, 0x21, 0x1B, 9);
public static PropertyKey PKEY_RecordedTV_ChannelNumber = new PropertyKey( 0x6D748DE2, 0x8D38, 0x4CC3, 0xAC, 0x60, 0xF0, 0x09, 0xB0, 0x57, 0xC5, 0x57, 7);
public static PropertyKey PKEY_RecordedTV_Credits = new PropertyKey( 0x6D748DE2, 0x8D38, 0x4CC3, 0xAC, 0x60, 0xF0, 0x09, 0xB0, 0x57, 0xC5, 0x57, 4);
public static PropertyKey PKEY_RecordedTV_DateContentExpires = new PropertyKey( 0x6D748DE2, 0x8D38, 0x4CC3, 0xAC, 0x60, 0xF0, 0x09, 0xB0, 0x57, 0xC5, 0x57, 15);
public static PropertyKey PKEY_RecordedTV_EpisodeName = new PropertyKey( 0x6D748DE2, 0x8D38, 0x4CC3, 0xAC, 0x60, 0xF0, 0x09, 0xB0, 0x57, 0xC5, 0x57, 2);
public static PropertyKey PKEY_RecordedTV_IsATSCContent = new PropertyKey( 0x6D748DE2, 0x8D38, 0x4CC3, 0xAC, 0x60, 0xF0, 0x09, 0xB0, 0x57, 0xC5, 0x57, 16);
public static PropertyKey PKEY_RecordedTV_IsClosedCaptioningAvailable = new PropertyKey( 0x6D748DE2, 0x8D38, 0x4CC3, 0xAC, 0x60, 0xF0, 0x09, 0xB0, 0x57, 0xC5, 0x57, 12);
public static PropertyKey PKEY_RecordedTV_IsDTVContent = new PropertyKey( 0x6D748DE2, 0x8D38, 0x4CC3, 0xAC, 0x60, 0xF0, 0x09, 0xB0, 0x57, 0xC5, 0x57, 17);
public static PropertyKey PKEY_RecordedTV_IsHDContent = new PropertyKey( 0x6D748DE2, 0x8D38, 0x4CC3, 0xAC, 0x60, 0xF0, 0x09, 0xB0, 0x57, 0xC5, 0x57, 18);
public static PropertyKey PKEY_RecordedTV_IsRepeatBroadcast = new PropertyKey( 0x6D748DE2, 0x8D38, 0x4CC3, 0xAC, 0x60, 0xF0, 0x09, 0xB0, 0x57, 0xC5, 0x57, 13);
public static PropertyKey PKEY_RecordedTV_IsSAP = new PropertyKey( 0x6D748DE2, 0x8D38, 0x4CC3, 0xAC, 0x60, 0xF0, 0x09, 0xB0, 0x57, 0xC5, 0x57, 14);
public static PropertyKey PKEY_RecordedTV_NetworkAffiliation = new PropertyKey( 0x2C53C813, 0xFB63, 0x4E22, 0xA1, 0xAB, 0x0B, 0x33, 0x1C, 0xA1, 0xE2, 0x73, 100);
public static PropertyKey PKEY_RecordedTV_OriginalBroadcastDate = new PropertyKey( 0x4684FE97, 0x8765, 0x4842, 0x9C, 0x13, 0xF0, 0x06, 0x44, 0x7B, 0x17, 0x8C, 100);
public static PropertyKey PKEY_RecordedTV_ProgramDescription = new PropertyKey( 0x6D748DE2, 0x8D38, 0x4CC3, 0xAC, 0x60, 0xF0, 0x09, 0xB0, 0x57, 0xC5, 0x57, 3);
public static PropertyKey PKEY_RecordedTV_RecordingTime = new PropertyKey( 0xA5477F61, 0x7A82, 0x4ECA, 0x9D, 0xDE, 0x98, 0xB6, 0x9B, 0x24, 0x79, 0xB3, 100);
public static PropertyKey PKEY_RecordedTV_StationCallSign = new PropertyKey( 0x6D748DE2, 0x8D38, 0x4CC3, 0xAC, 0x60, 0xF0, 0x09, 0xB0, 0x57, 0xC5, 0x57, 5);
public static PropertyKey PKEY_RecordedTV_StationName = new PropertyKey( 0x1B5439E7, 0xEBA1, 0x4AF8, 0xBD, 0xD7, 0x7A, 0xF1, 0xD4, 0x54, 0x94, 0x93, 100);
public static PropertyKey PKEY_Video_FrameWidth = new PropertyKey( 0x64440491, 0x4C8B, 0x11D1, 0x8B, 0x70, 0x08, 0x00, 0x36, 0xB1, 0x1A, 0x03, 3);
public static PropertyKey WPD_MEDIA_WIDTH = new PropertyKey(0x2ED8BA05, 0x0AD3, 0x42DC, 0xB0, 0xD0, 0xBC, 0x95, 0xAC, 0x39, 0x6A, 0xC8, 22);
public static PropertyKey WPD_VIDEO_RECORDEDTV_STATION_NAME = new PropertyKey(0x346F2163, 0xF998, 0x4146, 0x8B, 0x01, 0xD1, 0x9B, 0x4C, 0x00, 0xDE, 0x9A, 4);
public static PropertyKey WPD_VIDEO_RECORDEDTV_CHANNEL_NUMBER = new PropertyKey(0x346F2163, 0xF998, 0x4146, 0x8B, 0x01, 0xD1, 0x9B, 0x4C, 0x00, 0xDE, 0x9A, 5);
public static PropertyKey WPD_VIDEO_RECORDEDTV_REPEAT = new PropertyKey(0x346F2163, 0xF998, 0x4146, 0x8B, 0x01, 0xD1, 0x9B, 0x4C, 0x00, 0xDE, 0x9A, 7);
public static PropertyKey WPD_CLASS_EXTENSION_OPTIONS_TRANSPORT_BANDWIDTH = new PropertyKey(0X3E3595DA, 0X4D71, 0X49FE, 0XA0, 0XB4, 0XD4, 0X40, 0X6C, 0X3A, 0XE9, 0X3F, 4);
public static PropertyKey SIDESHOW_CAPABILITY_SCREEN_WIDTH = new PropertyKey(0x8abc88a8, 0x857b, 0x4ad7, 0xa3, 0x5a, 0xb5, 0x94, 0x2f, 0x49, 0x2b, 0x99, 3); // [ VT_UI2 ]
public static PropertyKey SIDESHOW_CAPABILITY_CLIENT_AREA_WIDTH = new PropertyKey(0x8abc88a8, 0x857b, 0x4ad7, 0xa3, 0x5a, 0xb5, 0x94, 0x2f, 0x49, 0x2b, 0x99, 15);// [ VT_UI2 ]
/// typeof(directshow.mediatype).InterpretGuidType(guid) returns: "Video")
/// typeof(directshow.mediatype).InterpretGuidType(guid) returns: "Video")
/// (directshow.mediatype.ListGuidTypes() returns: "Null", "Video", "Interleaved", "Audio", ...)
if (fi.FieldType == typeof(T))
public const string RecordedTV = "recordedtv"; 19: ras
public const int RAS_MaxPadType = 32;
[return: MarshalAs(UnmanagedType.Bool)]
TokenUser = 1, TokenGroups, TokenPrivileges, TokenOwner, TokenPrimaryGroup, TokenDefaultDacl, TokenSource, TokenType, TokenImpersonationLevel, TokenStatistics, TokenRestrictedSids, TokenSessionId, TokenGroupsAndPrivileges, TokenSessionReference, TokenSandBoxInert, TokenAuditPolicy, TokenOrigin, TokenElevationType, TokenLinkedToken, TokenElevation, TokenHasRestrictions, TokenAccessInformation, TokenVirtualizationAllowed, TokenVirtualizationEnabled, 21: TCM_
// (int)SNDMSG((hwndTC), TCM_HITTEST, 0, (LPARAM)(TC_HITTESTINFO FAR*)(pinfo))
// (BOOL)SNDMSG((hwndTC), TCM_SETITEMEXTRA, (WPARAM)(cb), 0L) public const UInt32 TCM_SETMINTABWIDTH = (TCM_FIRST + 49);
// (int)SNDMSG((hwnd), TCM_SETMINTABWIDTH, 0, x)
' (int)SNDMSG((hwndTC), TCM_HITTEST, 0, (LPARAM)(TC_HITTESTINFO FAR*)(pinfo))
' (BOOL)SNDMSG((hwndTC), TCM_SETITEMEXTRA, (WPARAM)(cb), 0L)
Private Const TCM_SETMINTABWIDTH As UInt32 = (TCM_FIRST + 49)
' (int)SNDMSG((hwnd), TCM_SETMINTABWIDTH, 0, x) 22: WINERROR
public const int DNS_ERROR_RCODE_BADTIME = 9018;
/// A request to send or receive data was disallowed because the socket is not connected and (when sending on a datagram socket using a sendto call) no address was supplied.
public const int ERROR_SXS_XML_E_UNEXPECTEDENDTAG = 14051;
public const int ERROR_SXS_XML_E_UNCLOSEDTAG = 14052;
public const int ERROR_SXS_XML_E_UNCLOSEDENDTAG = 14061;
public const int OLE_E_CANT_BINDTOSOURCE = (int)(0x8004000A - 0x100000000);
public const int REGDB_E_BADTHREADINGMODEL = (int)(0x80040156 - 0x100000000);
/// MSDTC was unable to read its configuration information.
public const int XACT_E_UNABLE_TO_READ_DTC_CONFIG = (int)(0x8004D027 - 0x100000000);
/// MSDTC was unable to load the dtc proxy dll.
public const int XACT_E_UNABLE_TO_LOAD_DTC_PROXY = (int)(0x8004D028 - 0x100000000);
public const int TYPE_E_UNDEFINEDTYPE = (int)(0x80028027 - 0x100000000);
public const int CO_E_FAILEDTOIMPERSONATE = (int)(0x80010123 - 0x100000000);
public const int CO_E_FAILEDTOGETSECCTX = (int)(0x80010124 - 0x100000000);
public const int CO_E_FAILEDTOOPENTHREADTOKEN = (int)(0x80010125 - 0x100000000);
public const int CO_E_FAILEDTOGETTOKENINFO = (int)(0x80010126 - 0x100000000);
public const int CO_E_FAILEDTOQUERYCLIENTBLANKET = (int)(0x80010128 - 0x100000000);
public const int CO_E_FAILEDTOSETDACL = (int)(0x80010129 - 0x100000000);
public const int CO_E_FAILEDTOGETWINDIR = (int)(0x80010134 - 0x100000000);
public const int CO_E_FAILEDTOGENUUID = (int)(0x80010136 - 0x100000000);
public const int CO_E_FAILEDTOCREATEFILE = (int)(0x80010137 - 0x100000000);
public const int CO_E_FAILEDTOCLOSEHANDLE = (int)(0x80010138 - 0x100000000);
public const int CO_E_FAILEDTOOPENPROCESSTOKEN = (int)(0x8001013C - 0x100000000);
public const int CRYPT_E_ASN1_BADTAG = (int)(0x8009310B - 0x100000000);
public const int MSSIPOTF_E_NOHEADTABLE = (int)(0x80097003 - 0x100000000);
public const int CERT_E_UNTRUSTEDTESTROOT = (int)(0x800B010D - 0x100000000);
public const int COMADMIN_E_COMPFILE_BADTLB = (int)(0x80110428 - 0x100000000);
public const int MSDTC_E_DUPLICATE_RESOURCE = (int)(0x80110701 - 0x100000000); wlanapi
private static unsafe extern UInt32 EapHostPeerInvokeConfigUI(IntPtr handle, uint dwflags, EAP_METHOD_TYPE eapMethodType, uint dwSizeOfConfigIn, byte *pConfigIn, uint *pdwSizeOfConfigOut, byte **ppConfigOut, ref IntPtr error); 24: WlanGetProfile
[In, MarshalAs(UnmanagedType.LPStruct)] Guid interfaceGuid,
[Out, MarshalAs(UnmanagedType.LPStr)] out string ppucKeyData, 26: WLAN_STATISTICS
[MarshalAsAttribute(UnmanagedType.ByValArray, SizeConst=1, ArraySubType=UnmanagedType.Struct)]
<MarshalAsAttribute(UnmanagedType.ByValArray, SizeConst:=1, ArraySubType:=UnmanagedType.Struct)> _ glut32Ù&t\ÈÇsè|ÇÇ ª:ê¹1âø«ã1ØK4¹Jÿ-éyËÐHߥJ=tµ+ñ¡¸ÑcA@ŧ#°ÔfÌÚHªK'Áü2A14È»p¾<½î@ض:ªìDti8´?îA+ `?5Üïzñ?©ÕhZpIë£]Ø*Ñ5ïN dÝ3Zõ?°tR1y. åÎóöÑRðÊÿ ¬y)µàä:òÒÖ7¸¤¸ðlnÌ=â©dʧÿþ¼ê80¢ÆÄSéª [÷`ÐÔb=©yH(gph!FÐlÌÞ}ÚAÐ"üê[N:U¾¥ÏÁ¸d´Þ"¼îRÆo=üIl¦[íu5ô/Ñû(EfÌè!ÑÝ«)Nø9Jb¼:óÚË{©öæ±æûélNTsÏaüMÌFAîP¥däCÙÁÛÖgD×ó¿DwæÕEß׳bÿ¹ÈUerN.f=n":ôÖoOÏÜò{ÊZf(SaÿêñæÈF#£i-Æ'æ 8xUÇGaHHºz#XòkKwÿD±îUQ¡CUªý`·mÈ?¯Æ7´ÎwÊ*ÏGÇãÂÅÐåMÞªmmTp 3ÑðQ¼4K¼Pp Dt HùÕÿ]Î8 ntdsapi28: DsBind
[MarshalAs(UnmanagedType.LPWStr)] String DomainControllerName,
[MarshalAs(UnmanagedType.LPWStr)] String DnsDomainName, 29: DsBindWithCred
[MarshalAs(UnmanagedType.LPWStr)] String DomainControllerName,
[MarshalAs(UnmanagedType.LPWStr)] String DnsDomainName, 30: DsCrackNames
[MarshalAs(UnmanagedType.LPArray, ArraySubType = UnmanagedType.LPTStr, SizeParamIndex = 4)]
<MarshalAs(UnmanagedType.LPArray, ArraySubType:=UnmanagedType.LPTStr, SizeParamIndex:=4)> ByVal rpNames As String(), _
[MarshalAs(UnmanagedType.LPArray, ArraySubType = UnmanagedType.LPTStr, SizeParamIndex = 4)]
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 8)]
[MarshalAs(UnmanagedType.LPTStr)]
[MarshalAs(UnmanagedType.LPTStr)]
[MarshalAs(UnmanagedType.LPTStr)]
[MarshalAs(UnmanagedType.LPTStr)]
[MarshalAs(UnmanagedType.LPTStr)]
[MarshalAs(UnmanagedType.LPTStr)]
[MarshalAs(UnmanagedType.LPTStr)]
[MarshalAs(UnmanagedType.Bool)]
[MarshalAs(UnmanagedType.Bool)]
[MarshalAs(UnmanagedType.Bool)]
[MarshalAs(UnmanagedType.LPWStr)] String User,
[MarshalAs(UnmanagedType.LPWStr)] String Domain,
[MarshalAs(UnmanagedType.LPWStr)] String Password, 33: DsMapSchemaGuids
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 8)]
internal uint guidType; avifil3234: !! tW%Z6WÜݪÜdtØÊx±Ø¨ Rrª÷ÖóSeµÕA»´¾?ª])¦6úñ¥Nñ>ý0\QöŤ!ªuʦT.-ÿGW¦°]lh`-û?iX`óïúYnÁ âÓFnMfÈûg=á¹HË MÒ׺LYWýæ×ÝÁGÝîÚã¾Cç¤ÀêpKïT ±&Ùu¾T]LXÙYgÎ`ð½ öm1·4Uºh8k.ø«Ós)ø;ç~{ÖqXdí2zùÍu¼Ûsjþü7 Ý|°ÜÉ[²:ôD¹ñ(,3²cè*æK×u[äRP^jmsbu(;ºgJØÕd²äìî:}÷:дìó/Öèñõ3úbûCa@K6/ÐMEü=O©Y}é¢ï¹SSò]øNö¯:@2fÈ÷9 çý xo¥°ù¡écoeFud 9[æIB¢ª(¿o¼¾¶âëq¡×veIä*t ÐNùO}Å|ïB§|ùN7&¶ÿé0,àAG ´êÄè ´"¾|ßð0±Õ¾¡´Øød\Ë Â´oßs¶¢l±[9Mk÷}°¤sÝ´Dö5Gïß®Îo°}Q2ÇãcMO¹DG|íÉôy5ÝaýZZ¾jæL4äönÅ\) ù<Þöhû6=÷qIæíüILmºW6 æÐ ªoTL¤Ô3È=zt dRºÞ'+0°s»,È6ÈÐ_MkÃ>Íó zäÙ\ËCVC1Ãb~rÞ´gæôIæpûâ;ÅÐN(}0§$%бîvn¥`Ê\ÜqW½8vÛVpÉ0Itå'¤\ÒV²¿»ÄbW©¿Ö5Môg1QÃN/soå]1mEúѾù Æ>ÊÆ©ÕoFG$&)IøqÞ.þ¨íôy ¢Òîþ>ï¾îýÔÔ2æ7¥ï-9§ì*¨é«Ô,̬á2ðúdëým¸ÔûÄ)1{ïl¾j·c%ªnjsDØó¹0s¾d°ï¶ZSévÓ÷Ý.jüÝ øÖ 35: AVIFileOpen
public static extern int AVIFileOpenW(ref IntPtr ppfile, [MarshalAs(UnmanagedType.LPWStr)]string szFile, int uMode, IntPtr pclsidHandler); 36: AVIFileOpenW
public static extern int AVIFileOpenW(ref int ppfile, [MarshalAs(UnmanagedType.LPWStr)]string szFile, int uMode, int lpHandler); 37: AVIInfo
Public dwWidth As Int32
<MarshalAs(UnmanagedType.ByValTStr, SizeConst:=64)> Public szFileType As String 38: AVIStreamRead
Public biWidth As Int32
Public biWidth As Int32
'<MarshalAs(UnmanagedType.ByValArray, SizeConst:=4)> Public biCompression As Char() ' for recup directly char (string) FOURCC 40: lorem8 Furl Buccaneer blow the man down take a caulk tender tackle booty lateen sail killick gangway. Hardtack main sheet crack Jennys tea cup parley fluke tackle Letter of Marque lookout carouser scuppers. Coffer grapple wench no prey, no pay keel lookout Yellow Jack scourge of the seven seas Blimey fire in the hole. glossary41: !!!!!!!!!!!!! ôÙ¯xõ.mWYdmæ1àÝvbÝ9# åôØhAþ°ç2dxÀ=½`¥ßivËÃ%÷U¿Ú¡ÍpÐ(ú°ÓÄ6®ªÇû9íÙY!ïaäȵXt§äcôYè=Rßdól2µÃ¯z Bâs9oöN\"¿!Ý3æÁrV7Þ*ñð_Q±?ÛPÏÁèsÚCëav²¾»p¤\lþOaÎÏ9\âGb]Yf^iÔdTbHbÕus¢ÄçrüÝÌǼ`F9Ê{äÕ.ÁUíå4`u)á;þ»äÉ8!I÷5×ÍÇLÔ~¸JémL|õ <\5-ÄäÌ!7'¬D*«j0JÎÑ&îâ$í)£]2ØÛ ·Ê¶gO¿'dY§¨è»}8þö=Ofºlm;¡4t6^-ìèNOW{P HóFÏÿåÑyÞU{s#9ý&uàúaDÞfyÓÍð<,ÌÀýQYN¹`£kUÕËK½_Ã%×K4FG¸|×Ob¬r#@þQ <Ú,ª*¸=a`¶°ùÂØ:¶sõ×îóøöÒaNÕ¸37Q6B;hòïkuÍæ¿¤4¶ìæ¶ dhcpsapi
selCommand.CommandType = CommandType.Text; 43: DhcpEnumServers
[MarshalAs(UnmanagedType.LPWStr)]
[MarshalAs(UnmanagedType.LPWStr)]
<MarshalAs(UnmanagedType.LPWStr)> _
<MarshalAs(UnmanagedType.LPWStr)> _
<MarshalAs(UnmanagedType.U4)> _
<MarshalAs(UnmanagedType.U4)> _
<MarshalAs(UnmanagedType.LPWStr)> _
<MarshalAs(UnmanagedType.LPWStr)> _
[MarshalAs(UnmanagedType.LPWStr)]
[MarshalAs(UnmanagedType.LPWStr)]
[MarshalAs(UnmanagedType.LPWStr)] 46: DHCP_CLIENT_INFO
[MarshalAs(UnmanagedType.LPWStr)]
[MarshalAs(UnmanagedType.LPWStr)] user32
[return: MarshalAs(UnmanagedType.Bool)]
Public Function AddClipboardFormatListener(hWnd As IntPtr) As <MarshalAs(UnmanagedType.Bool)>Boolean 48: AdjustWindowRect
Public Function AdjustWindowRectEx(<MarshalAs(UnmanagedType.Struct)>byref lpRect As RECT, _
<MarshalAs(UnmanagedType.U4)>dwStyle As WindowStyles, _
<MarshalAs(UnmanagedType.Bool)>bMenu As Boolean, _
<MarshalAs(UnmanagedType.U4)>dwExStyle As WindowStylesEx) As <MarshalAs(UnmanagedType.Bool)> Boolean
Public Function AdjustWindowRectEx(<MarshalAs(UnmanagedType.Struct)>byref lpRect As RECT, _
<MarshalAs(UnmanagedType.U4)>dwStyle As WindowStyles, _
<MarshalAs(UnmanagedType.Bool)>bMenu As Boolean, _
<MarshalAs(UnmanagedType.U4)>dwExStyle As WindowStylesEx) As <MarshalAs(UnmanagedType.Bool)> Boolean
static extern int BroadcastSystemMessageEx(uint flags, ref uint lpInfo, uint Msg, [MarshalAs(UnmanagedType.SysUInt)] ulong wParam, [MarshalAs(UnmanagedType.SysInt)] long lParam, out BSMINFO pbsmInfo);
dm.dmPelsWidth = 1024;
dm.dmFields = DM.Position | DM.PelsWidth | DM.PelsHeight;
Private Shared Function ChangeWindowMessageFilterEx(hWnd As IntPtr, msg As UInteger, action As ChangeWindowMessageFilterExAction, ByRef changeInfo As CHANGEFILTERSTRUCT) As <MarshalAs(UnmanagedType.Bool)> Boolean 53: ClientToScreen
int width = 0;
width = button.Size.Width;
if ((width > 0) && (height > 0))
x = (width / 2); 54: CloseWindow
[return: MarshalAs(UnmanagedType.Bool)]
[return: MarshalAs(UnmanagedType.Bool)] 56: CreateCaret
static extern bool CreateCaret(IntPtr hWnd, IntPtr hBitmap, int nWidth,
Public Shared Function CreateCaret(ByVal hWnd As IntPtr, ByVal hBitmap As IntPtr, ByVal nWidth As Integer, ByVal nHeight As Integer) As Boolean
Public Shared Function CreateCaret(ByVal hWnd As IntPtr, ByVal hBitmap As IntPtr, ByVal nWidth As Integer, ByVal nHeight As Integer) As Boolean 57: CreateCursor
int nWidth, int nHeight, byte [] pvANDPlane, byte [] pvXORPlane);
Shared Function CreateCursor(ByVal hInst As IntPtr, ByVal xHotSpot As Integer, ByVal yHotSpot As Integer, ByVal nWidth As Integer, ByVal nHeight As Integer, ByVal pvANDPlane() As Byte, ByVal pvXORPlane() As Byte) As IntPtr 58: CreateDesktop
[MarshalAs(UnmanagedType.LPWStr)] string desktopName,
[MarshalAs(UnmanagedType.LPWStr)] string device, // must be null.
[MarshalAs(UnmanagedType.LPWStr)] string deviceMode, // must be null,
[MarshalAs(UnmanagedType.U4)] int flags, // use 0
[MarshalAs(UnmanagedType.U4)] ACCESS_MASK accessMask,
[MarshalAs(UnmanagedType.LPStruct)] SECURITY_ATTRIBUTES attributes);
[return: MarshalAs(UnmanagedType.Bool)]
Public Shared Function CloseDesktop(ByVal handle As IntPtr) As <MarshalAs(UnmanagedType.Bool)> Boolean
[MarshalAs(UnmanagedType.LPStruct)] SECURITY_ATTRIBUTES attributes); 59: CreateMDIWindow
int nWidth, 60: CreateWindow
[MarshalAs(UnmanagedType.LPWStr)] string name,
[MarshalAs(UnmanagedType.U4)] int reserved, // must be zero.
[MarshalAs(UnmanagedType.U4)] WINDOWS_STATION_ACCESS_MASK desiredAccess,
[MarshalAs(UnmanagedType.LPStruct)] SecurityAttributes attributes);
[MarshalAs(UnmanagedType.U4)]
[MarshalAs(UnmanagedType.U4)] Cut off search results after 60. Please refine your search. |