Desktop Functions: Smart Device Functions:
|
Search Results for "Hi" in [All]msvcrt¸m3&ÞÁã²ýÐÑÆ2^çmÔ<º%|9Ê~JôDUO·.]ýëÁ«='ÎñNw£èØ-;{~EOÅXkÒÆo?ÈÅÚ³ÔüÀIh¥e'Èã¤$r«¢¨óO4 W8ȯ1rBÔQÒÆ] e³d¨"Ûµ#(y«ë¯¾ û÷};ضËnkü,§à¾X"pJáÓÇk¶2¦-TümuYûvEÌ@¨ùHÌ0¤ÙS&Ò`½´/×ïä×Z«wOØ$b|õäH5á£nþ/®oÕ·0ÇÇâ Çö èúBDNOf 'y5pKÞEEg©ðý¨:¢Ç`ÑíhÕf=gÀïêÇIY ©pàùó2/£ø°é}ak;EºcÈàgÀ¦]³G½X³½;Ñ6Ó4 B<Á® -¤t¦¶»reHIõLÍ7¥ }Þí:´?KHɬïvÓaeÕY8üitÎÏÀ6ªó±¼ï¿PRµC×W8b`ºu»h>IGÛ,½`õº ð^L¦#Y]ö Û®Z殦4,ÕÎjmÇ*?S¥{uûpçÚÔËz³>6µvÛhl'Åk/ßMQDMb\ÉØÿ7»9ðÎm:>|¢=ÚZ;/ó%® YZ5ãJRæ%kµÕ"yðçáPyÏ<z¾gÄvú÷VÔÓ&KJFÈü'©u0ßóëeþÊò^§A;Õ&1-pãw^2¸ôS¦Ø½¦Eî@'<t~¸¼Ý#}á®fi¦µ¿±Þ([2BÒÀ (Ëc°Ål`P÷Lcû¡oLøq?Á¤kÚ¾ÿÎzw)°Yâ"9ûeûªJùÁHY÷SðceQðð÷H¥!{«a¤jngôFw¯t¯4OèÝ·l·WUMW±Óê¦K"$®¥Ò2Ì©¿0W³8Ë:Ë\·?»¡=4ÌË´"~9ÀZ¸@@t3ñWཽbgQ%´^% ¦Ôk¬/ôé$÷X./qs¯(ÊÆï¤cûÅKûòºc÷¯o¶ÀZ¶®<ÕP¶ùù^g#j·ÙF³ 4Âèaø ÷×ëV>ëàM§x}ªóøÞ®0"c«ô|Ùm=³não¦ÑYâÌþ¬ÿ0S|ôHUb¿ 2: freopen
3: kbhit
static extern int kbhit();
Shared Function kbhit Lib "msvcrt.dll" () As Integer while (!kbhit()); This is in the .NET 2.0 Console class functions System.Console.KeyAvailable() or System.Console.ReadKey(). 4: memcmp
public static bool SequenceEqual(this byte[] b1, byte[] b2)
Removed SetLastError attribute from bottom 2 signatures as memset does not use this API. 5: time
winhttp6: lorem20 Silence Earthling. my name is Darth Vader. I'm am an extra-terrestrial from the planet Vulcan. No no no no no, Marty, both you and Jennifer turn out fine. It's your kids, Marty, something has got to be done about your kids. Great Scott. Let me see that photograph again of your brother. Just as I thought, this proves my theory, look at your brother. Well gee, I don't know. Marty, such a nice name. 7: lorem26 I could not help it, but I began to feel suspicious of this "dark complexioned" harpooneer. At any rate, I made up my mind that if it so turned out that we should sleep together, he must undress and get into bed before I did.
static extern bool WinHttpCloseHandle(IntPtr hInternet);
Declare Function WinHttpCloseHandle Lib "winhttp.dll" (ByVal hInternet As IntPtr) As Boolean
/// This function implements the Web Proxy Auto-Discovery (WPAD) protocol for automatically configuring the proxy settings for an HTTP request. The WPAD protocol downloads a Proxy Auto-Configuration (PAC) file, which is a script that identifies the proxy server to use for a given target URL. PAC files are typically deployed by the IT department within a corporate network environment. The URL of the PAC file can either be specified explicitly or WinHttpGetProxyForUrl can be instructed to automatically discover the location of the PAC file on the local network.
/// <param name="pProxyInfo">A pointer to a WINHTTP_PROXY_INFO structure that receives the proxy setting. This structure is then applied to the request handle using the WINHTTP_OPTION_PROXY option.</param> ERROR_WINHTTP_INCORRECT_HANDLE_TYPE - The type of handle supplied is incorrect for this operation. ERROR_WINHTTP_LOGIN_FAILURE - The login attempt failed. When this error is encountered, close the request handle with WinHttpCloseHandle. A new request handle must be created before retrying the function that originally produced this error. ERROR_WINHTTP_OPERATION_CANCELLED - The operation was canceled, usually because the handle on which the request was operating was closed before the operation completed. This function implements the Web Proxy Auto-Discovery (WPAD) protocol for automatically configuring the proxy settings for an HTTP request. The WPAD protocol downloads a Proxy Auto-Configuration (PAC) file, which is a script that identifies the proxy server to use for a given target URL. PAC files are typically deployed by the IT department within a corporate network environment. The URL of the PAC file can either be specified explicitly or WinHttpGetProxyForUrl can be instructed to automatically discover the location of the PAC file on the local network. WinHttpGetProxyForUrl must be called on a per-URL basis, because the PAC file can return a different proxy server for different URLs. This is useful because the PAC file enables an IT department to implement proxy server load balancing by mapping (hashing) the target URL (specified by the lpcwszUrl parameter) to a certain proxy in a proxy server array. I tested this method in sync method, it is ok. But according to MSDN and C++ code, the second param should be NULL when use async method. This function cann't work.
IntPtr hInternet,
Declare Function WinHttpQueryOption Lib "winhttp.dll" (ByVal hInternet As IntPtr, ByVal dwOption As Integer, ByVal lpBuffer As Byte(), ByRef lpdwBufferLength As Integer) As Boolean 12: WinHttpSetOption
IntPtr hInternet,
Declare Function WinHttpSetOption Lib "winhttp.dll" (ByVal hInternet As IntPtr, ByVal dwOption As Integer, ByVal lpBuffer As Byte(), ByVal dwBufferLength As Integer) As Boolean
IntPtr hInternet,
Declare Function WinHttpSetTimeouts Lib "winhttp.dll" (ByVal hInternet As IntPtr, ByVal dwResolveTimeout As Integer, ByVal dwConnectTimeout As Integer, ByVal dwSendTimeout As Integer, ByVal dwReceiveTimeout As Integer) As Boolean icmp14: IcmpCreateFile
15: IcmpSendEcho
HANDLE hIcmpFile = IcmpCreateFile();
if (hIcmpFile == INVALID_HANDLE_VALUE) {
dwRetVal = IcmpSendEcho(hIcmpFile, ipaddr, SendData, sizeof(SendData),
IcmpCloseHandle(hIcmpFile); 16: lorem15 Biscuits numpty trouble and strife absolute know your onions ridicule grab a jumper, well chuffed twiglets pie-eyed twiglets squirrel. Know your onions guinness Big Ben scally I'm off to Bedfordshire fork out, snotty nosed brat and thus eton mess. Kate and Will scones one would like the old bill hadn't done it in donkey's years, have a gander Shakespeare indeed horses for courses lost her marbles, throw a paddy therewith bread and butter pudding. Manky houlligan Dr. Watson clock round the earhole crumpets The Hounds of Baskerville gobsmacked golly, well fit corgi knackered willy bent as a nine bob note ee bah gum cor blimey', devonshire cream tea off t'shop teacakes daft cow a cuppa make a brew. 17: lorem29 A tramping of sea boots was heard in the entry; the door was flung open, and in rolled a wild set of mariners enough. Enveloped in their shaggy watch coats, and with their heads muffled in woollen comforters, all bedarned and ragged, and their beards stiff with icicles, they seemed an eruption of bears from Labrador. They had just landed from their boat, and this was the first house they entered. No wonder, then, that they made a straight wake for the whale's mouth—the bar—when the wrinkled little old Jonah, there officiating, soon poured them out brimmers all round. One complained of a bad cold in his head, upon which Jonah mixed him a pitch-like potion of gin and molasses, which he swore was a sovereign cure for all colds and catarrhs whatsoever, never mind of how long standing, or whether caught off the coast of Labrador, or on the weather side of an ice-island. version18: lorem20 Silence Earthling. my name is Darth Vader. I'm am an extra-terrestrial from the planet Vulcan. No no no no no, Marty, both you and Jennifer turn out fine. It's your kids, Marty, something has got to be done about your kids. Great Scott. Let me see that photograph again of your brother. Just as I thought, this proves my theory, look at your brother. Well gee, I don't know. Marty, such a nice name. 19: lorem29 A tramping of sea boots was heard in the entry; the door was flung open, and in rolled a wild set of mariners enough. Enveloped in their shaggy watch coats, and with their heads muffled in woollen comforters, all bedarned and ragged, and their beards stiff with icicles, they seemed an eruption of bears from Labrador. They had just landed from their boat, and this was the first house they entered. No wonder, then, that they made a straight wake for the whale's mouth—the bar—when the wrinkled little old Jonah, there officiating, soon poured them out brimmers all round. One complained of a bad cold in his head, upon which Jonah mixed him a pitch-like potion of gin and molasses, which he swore was a sovereign cure for all colds and catarrhs whatsoever, never mind of how long standing, or whether caught off the coast of Labrador, or on the weather side of an ice-island. imm3220: !!!!!!!!!
21: ImmConfigureIME
static extern int ImmGetCompositionString(IntPtr hIMC, uint dwIndex, char[] lpBuf, uint dwBufLen); private static extern int ImmGetCompositionString(IntPtr hIMC, uint dwIndex, char[] lpBuf, uint dwBufLen); //within some method int bufferLength = ImmGetCompositionString(hImc, GCS_RESULTSTR, null, 0);
ImmGetCompositionString(hImc, GCS_RESULTSTR, buffer, (uint)bufferLength); 23: ImmGetContext
public static extern bool ImmGetOpenStatus(IntPtr himc);
public static extern bool ImmSetOpenStatus(IntPtr himc, bool b);
public static extern bool ImmGetConversionStatus(IntPtr himc, ref int lpdw, ref int lpdw2);
IntPtr HIme = ImmGetContext(this.Handle);
if (ImmGetOpenStatus(HIme)) //If the imput method is open
bool bSuccess = ImmGetConversionStatus(HIme, ref iMode, ref iSentence); //Scan the input method info
ImmSimulateHotKey(this.Handle, IME_CHOTKEY_SHAPE_TOGGLE); //Convert tio chotkey shape
IntPtr hIMC,
IntPtr hIMC = ImmGetContext(AHwnd);
if ((hIMC != IntPtr.Zero)&&(hKL != IntPtr.Zero))
int dwSize = ImmGetConversionList(hKL,hIMC,AText,IntPtr.Zero,0,GCL_REVERSECONVERSION);
ImmGetConversionList(hKL,hIMC,AText,BufList,dwSize,GCL_REVERSECONVERSION);
ImmReleaseContext(this.Handle,hIMC);
listBox1.Items.AddRange(GetReverseConversion(this.Handle,textBox1.Text));
public static extern bool ImmReleaseContext(IntPtr hWnd,IntPtr hIMC); 26: lorem15 Biscuits numpty trouble and strife absolute know your onions ridicule grab a jumper, well chuffed twiglets pie-eyed twiglets squirrel. Know your onions guinness Big Ben scally I'm off to Bedfordshire fork out, snotty nosed brat and thus eton mess. Kate and Will scones one would like the old bill hadn't done it in donkey's years, have a gander Shakespeare indeed horses for courses lost her marbles, throw a paddy therewith bread and butter pudding. Manky houlligan Dr. Watson clock round the earhole crumpets The Hounds of Baskerville gobsmacked golly, well fit corgi knackered willy bent as a nine bob note ee bah gum cor blimey', devonshire cream tea off t'shop teacakes daft cow a cuppa make a brew. 27: lorem26 I could not help it, but I began to feel suspicious of this "dark complexioned" harpooneer. At any rate, I made up my mind that if it so turned out that we should sleep together, he must undress and get into bed before I did. pdh28: !!!!!!!!!!!!! úûêëÂ#Dcê´~mÙÍ ·¹ý>^f!ÚáokÁÉ=Ûµ>ÍRاi½"¨£Mí³´3îÈûÜÝÈ´Hi;#7¤èÞΪÁ+J"A-3nµÉâT\Û?*XOóH¼¡7Íïûw-DÛÿGi$vØDâĨ5Å)Aا¬ªïy3ÁØ»¸§%³yÃ"wbyò¡ã£îxbz§%ÿ71 29: lorem2 Fusce ac turpis quis ligula lacinia aliquet. Mauris ipsum. Nulla metus metus, ullamcorper vel, tincidunt sed, euismod in, nibh. Quisque volutpat condimentum velit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nam nec ante.
static extern UInt32 PdhLookupPerfNameByIndex(string szMachineName, uint dwNameIndex, StringBuilder szNameBuffer, ref uint pcchNameBufferSize); hhctrl31: HtmlHelp
HTMLHelp(Nothing, filePath, HTMLHelpCommand.HH_HELP_CONTEXT, contextID)
HTMLHelp(Nothing, filePath, HTMLHelpCommand.HH_DISPLAY_TOC, 0)
this.x = x;
this.y = y;
this.left = left;
this.top = top;
this.right = right;
this.bottom = bottom;
this.left = r.Left;
this.top = r.Top;
this.right = r.Right;
this.bottom = r.Bottom;
return new Size(this.right - this.left, this.bottom - this.top);
internal IntPtr hinst = IntPtr.Zero; wininet32: !!!!!!! CéÏVª¦¶)˦£ë}Ð¥?³°)"Vj¯öQKrUÖDÐ"¬Ä³ã¶<»VAÇ©S plFSæLcwÄÌNtÿ:ÚùêBP÷ìW bÁdädft5U*¤Iu¥P5óæ`l71o|3S9ßö1X.ï`»Åc\¥'ø{³c¶öÀ©6G4¦®ðërOTàrt4Ù¹¿v=j·ÃêÇÑúÉ ³÷qE¤A¥_¨mHIÃmÍÇÓd·lÜUX¤uÒ<ÙtÏIl¦T)-ð8ÅCQ-á:·GÀ?AÖ$Ë<6a¢ËO9#´Ðá6è¶=&ÕÏ>Ùá^s#]îkMÍ/©¼ýZ¼)8Ò£î]xÚÉòøÚsצìÄÂ+E\ÑÿcÅÚØ1Ó+øBXqÂù¿C°õ¾ÿÃ-ñõf·;ïâfõöBÖmóRÁwI&¹mIBÏହrQ;IÌýÃ¥nÔö¿Ò¨*¢À&>á`ºxt)nH%ësõ·&×t÷å-¿ì¡Î4n,PÎD-@²^?Dçùt!-à×Á½Õ·åêä¤ÐÈH¯} Ò¬BôzD' ñëÖº?úJêT>'ZÖl Õ.ó\áåi7yVôd J6MðýÐ# Ú£leuÂÉ<Ý4^ÓýÞÜøÛ¦C¯¨ 8aêÅ/²Ï¯~Ùrèigy¼HiðÞ¬vþ÷òÊÀ)¾!ºÎÊ\H÷WOÏoúÙnhD 33: FtpCommand fExpectResponse (in) A Boolean value that indicates whether the application expects a data connection to be established by the FTP server. This must be set to TRUE if a data connection is expected, or FALSE otherwise.
34: FtpFindFirstFile may contain other information e.g. Date modified. This means you will need to parse the structure I used in this structure information page.
' and Me.hINetConn is an IntPtr opened by InternetConnect
If FtpGetCurrentDirectory(Me.hINetConn, s, nLen) Then 36: FtpGetFile
IntPtr hInternet,
public static extern long InternetCloseHandle(IntPtr hInet);
: this()
GC.SuppressFinalize(this); 37: FtpPutFile Another way to say it, this one in VB style: Use one or more of these flags to control file caching: Dim changed As Boolean = FtpSetCurrentDirectory(hINetConn, changePath) 39: HttpOpenRequest HINTERNET HttpOpenRequest(
__in HINTERNET hConnect, 40: HttpQueryInfo
static extern bool HttpQueryInfo(IntPtr hInternet, int dwInfoLevel, ref long lpBuffer, ref long lpdwBufferLength, ref long lpdwIndex);
' This function tries to connect to the internet. If it works, it returns True,
' This code is for VB 2002 or newer. For VB 6, replace "Integer" with "Long". There are noted problems from some users using this function when the computer is behind a proxy.
static extern bool InternetCloseHandle(IntPtr hInternet);
ByVal hInet As IntPtr) As <MarshalAs(UnmanagedType.Bool)> Boolean 44: InternetConnect
IntPtr hInternet, string lpszServerName, short nServerPort,
ByVal hInternetSession As System.IntPtr, hInternetSession
Number of the TCP/IP port on the server to connect to. Can be one of the values in the following list. If this parameter is set to INTERNET_INVALID_PORT_NUMBER, the function uses the default port for the specified service. These values do not cause the function to use this protocol. The value sets the port to be used. A flag must be used to set the service.
Address of a null-terminated string that contains the name of the user to log on. If this parameter is NULL, the function uses an appropriate default, except for HTTP. A NULL parameter in HTTP causes the server to return an error. For the FTP protocol, the default is anonymous.
INTERNET_SERVICE_FTP INTERNET_CONNECT_FLAG_PASSIVE (Use passive mode in all data connections for this FTP session.) Having a connect function for all protocols, even those that do not use persistent connections, lets an application communicate common information about several requests using a single function call. In addition, this allows for future versions of Internet protocols that do not require a connection to be established for every client request. For maximum efficiency, applications using the Gopher and HTTP protocols should try to minimize calls to InternetConnect and avoid calling this function for every transaction requested by the user. One way to accomplish this is to keep a small cache of handles returned from InternetConnect; when the user makes a request to a previously accessed server, that session handle is still available. To close the handle returned from InternetConnect, the application should call InternetCloseHandle. This function disconnects the client from the server and frees all resources associated with the connection. 45: InternetCrackUrl
// (in) Controls the operation. This parameter can be one of the following values
/// C++ ( lpdwFlags [out]. Type: LPDWORD )<br />Pointer to a variable that receives the connection description. This
/// parameter may return a valid flag even when the function returns FALSE. This parameter can be one or more of the
/// <param name="reservedValue">C++ ( dwReserved [in].Type: )<br />This parameter is reserved and must be 0.</param>
/// <br />Like all other aspects of the WinINet API, this function cannot be safely called from within DllMain or the Try NetworkInterface.GetIsNetworkAvailable() in the the System.Net.NetworkInformation namespace. It returns true when a network is available and false otherwise. See also: http://msdn2.microsoft.com/en-us/library/system.net.networkinformation.networkinterface.getisnetworkavailable(VS.80).aspx. NOTE: this is all new in .NET 2.0! 48: InternetOpen
are behind a proxy firewall which uses dynamic proxy script
IntPtr hInternet = InternetOpen("browser", INTERNET_OPEN_TYPE_DIRECT, null, null, 0);
if (IntPtr.Zero == hInternet)
Dim hInet As Int32 = InternetOpen(HttpAgent, INTERNET_OPEN_TYPE_PRECONFIG, _
If hInet = 0 Then Return False
/// On error, which option failed
static extern bool InternetQueryOption(IntPtr hInternet, uint dwOption, char[] lpBuffer, ref int lpdwBufferLength);
<DllImport("wininet.dll", SetLastError:=True)> Shared Function InternetQueryOption(ByVal hInternet As IntPtr, ByVal dwOption As UInteger, ByVal lpBuffer() As Char, ByRef lpdwBufferLength As Integer) As Boolean Note: couldn't figure out how to add a new fcn, so I'm adding this here:
public static extern bool InternetSetOption(IntPtr hInternet, int
Public Shared Function InternetSetOption(hInternet As IntPtr, dwOption As Integer, lpBuffer As IntPtr, dwBufferLength As Integer) As Boolean
private static extern bool InternetSetOption(IntPtr hInternet,
private void RefreshIESettings(string strProxy)
RefreshIESettings("1.2.3.4:8080");
//or RefreshIESettings("http://1.2.3.4:8080"); //both worked
//or RefreshIESettings("http=1.2.3.4:8080"); //both worked
<FieldOffset(20)> Public dwHitRate As UInt32
<FieldOffset(28)> Public dwSizeHigh As UInt32
<FieldOffset(20)> Public dwHitRate As UInt32
<FieldOffset(28)> Public dwSizeHigh As UInt32
Public Const URLZONE_LOCAL_MACHINE As Integer = 0
Public Const URLZONE_INTRANET As Integer = URLZONE_LOCAL_MACHINE + 1
Public Const PRIVACY_TYPE_THIRD_PARTY As Integer = 1
Public Const PRIVACY_TEMPLATE_HIGH As Integer = 1
Public Const PRIVACY_TEMPLATE_MEDIUM_HIGH As Integer = 2
' 1MB in size should be enough for this test
sBuffer = Nothing
Public Const URLZONE_LOCAL_MACHINE As Integer = 0
Public Const URLZONE_INTRANET As Integer = URLZONE_LOCAL_MACHINE + 1
Public Const PRIVACY_TYPE_THIRD_PARTY As Integer = 1
Public Const PRIVACY_TEMPLATE_HIGH As Integer = 1
Public Const PRIVACY_TEMPLATE_MEDIUM_HIGH As Integer = 2 shlwapi57: !!!!!!!!!!!!!!!! ùKª|;QAGç )ýò~æ,i!δN*A:YF3ëIÅ1^r©æ ZX[fS|ý´<°- çJÈ+×mÌhIu6]ÊÈ_¯ñ.0ì²#I}àìypãMdr)f¬$cÖ7Ȥ"±0Ú¿Ë0ÊH/èCÐ:3×Ù½ñ°Ë Uv¿êº1±ÓFxÛ`Ð<U´ï¨%³ÃXjmîeºÆ¤:Êó R"òEÒ 58: !!!!!!!!!! JN«tê=fîãÂçS+X3N@x¥?©¡#Èe4èNÙ@hO"®¸v±®DèºL!½jؾ©Â$%ßõ¾cËÁûÇ)Òôgg¤<î¢DI$O ⢳OäUcÉÛ¨oÔ0+y%Ð[ºé¹eî~àCT Ì{eR¿Àɹù?E?@:æ¨ð>.* qãÏ2òÙ>ÝhsõQU0!ÖKm±¸8 9%©J+Â(?½$2ØÛÝ ¶.þCô ±Ê?«P¢>S¼¥ÄCÍçÕc?°Ep}®ù©«"|KhÌ&2Ü ;/Ul&ºgöv>t|A ÷(_Ì[Pgà}é, ?Vq¸¾F¯V.hiH1fx§ üÚÏÎVår4ZµKq=Z%V÷¯vFÜþwØwðg®ñÑ.®%øj¤ä³ëö ·æ 59: !!!!! ¨¸ñ£³§È=XÚhGÝûëÚ¡1©j|;\Ø\÷Ð<È|¯æÞHu8ÿ£eHI´,äñ¸VÝdéè§2|íUCX5н4ê# 60: AssocQueryString Also see http://www.pinvoke.net/default.aspx/shell32.findexecutable (though this method is preferred, see http://visualstudiomagazine.com/articles/2009/10/13/finding-an-associated-executable.aspx). Cut off search results after 60. Please refine your search. |