Displaying 7 results from an estimated 7 matches for "internetclosehandl".
Did you mean:
internetclosehandle
2005 Aug 30
2
Replacing WinInet functions with OpenSSH API Calls
...the requirements are to not change the server
side daemon, and only change my client calls.
While I'm fine with this, my current implementation takes advantage of
WinINets ability to completely manage the file transfer session. I'm
simply making calls to InternetOpen(), FtpPutFile() and
InternetCloseHandle(). Is there a possibility that I can make API level
calls with OpenSSH and replace my WinINet calls? If so, I have not been
able to locate API's to do so, and would appreciate some pointers to
documentation.
If there is an API available, or an API based solution, I'm interested
in FREE...
2011 Feb 04
0
Wine release 1.3.13
...urlmon: Fixed key name size and format in open_zone_key.
jscript: Fixed some clang warnings.
mshtml: Added script execution time tests.
mshtml: Added support for recursive script runners.
wininet: Handles handling clean up.
wininet: Keep handles invalid but reserved in InternetCloseHandle.
wininet: Added more InternetCloseHandle tests.
wininet: Moved creation of an object and allocating handles to common function.
mshtml: Don't try forwarding calls to Gecko that are not implemented there anyways.
wininet: Moved freeing object to WININET_Release.
wi...
2007 Jul 27
0
Wine release 0.9.42
...or internet status callbacks.
urlmon: Fix HttpProtocol behavior when InternetQueryDataAvailable returns ERROR_IO_PENDING.
wininet: Fix behavior of InternetQueryDataAvailable if INTERNET_FLAG_ASYNC is set.
urlmon: Remove FLAG_CALLED_SWITCH, which is now redundant.
urlmon: Use InternetCloseHandle instead of CloseHandle.
urlmon/tests: Fix http_protocol tests to succeed on Win98.
urlmon/tests: Fix http_protocol tests to succeed when called more than once.
urlmon: Fix HttpProtocol behavior when it is called without the BINDF_FROMURLMON flag.
urlmon: Implement HttpProto...
2006 Nov 10
0
Wine release 0.9.25
...NW pointer in WININETFTPFINDNEXTW.
wininet: Store WININETFTPSESSIONW pointer in WININETFTPFILEW.
wininet: Remove lpwhparent from WININETHANDLERHEADER.
wininet: Store handle in WININETHANDLEHEADER and use it in SendCallback.
wininet: Call SendCallback in destructor instead of InternetCloseHandle.
shlwapi: Added SHQueueUserWorkItem implementation.
mshtml: Added put_innerHTML implementation.
wininet: Use handle stored in WININETHANDLEHEADER instead of WININET_FindHandle.
wininet: Inherit INET_CALLBACKW from parent handler.
wininet: Revert commit 760043c2455a90c...
2007 Sep 28
0
Wine release 0.9.46
...riptorToSecurityDescriptor.
shell32: Make the shell view control Unicode.
shell32: shlview: Change some more ANSI calls to Unicode.
Misha Koshelev (3):
wininet: Track child handles, free all child handles on WININET_FreeHandle as native.
wininet/tests: Add test to show that InternetCloseHandle closes open child handles too.
wininet: When sending INTERNET_STATUS_HANDLE_CLOSING make sure the freed handle is not yet available.
Peter Oberndorfer (5):
configure: Recognize i686-mingw32 prefix for crosscompiling.
include: Add new processor feature constants.
user32/tes...
2018 Dec 04
3
patch to support custom HTTP headers in download.file() and url()
...= INTERNET_FLAG_PRAGMA_NOCACHE;
- wictxt->session = InternetOpenUrl(wictxt->hand, url, NULL, 0, flags, 0);
+ wictxt->session = InternetOpenUrl(wictxt->hand, url, headers,
headers ? -1 : 0, flags, 0);
if(!wictxt->session) {
DWORD err1 = GetLastError(), err2, blen = 101;
InternetCloseHandle(wictxt->hand);
diff --git a/src/modules/internet/libcurl.c b/src/modules/internet/libcurl.c
index 669c7240ef..6bf01ef175 100644
--- a/src/modules/internet/libcurl.c
+++ b/src/modules/internet/libcurl.c
@@ -222,7 +222,6 @@ static int curlMultiCheckerrs(CURLM *mhnd)
}
return retval;
}...
2012 Jan 09
4
"timeGetTimeā function in winmm.dll
...ormers is with the new wine 1.3.
BUT if I run some EA Experts Advisors I get on two of it problems and the application crashes.
The EA`s with crashes have custom .dll (FCS300.dll) and I try to debug this errors.
Code:
0028:Ret ntdll.RtlFreeHeap() retval=00000001 ret=7d7984a2
0028:Ret wininet.InternetCloseHandle() retval=00000001 ret=004222c2
0028:Call KERNEL32.LoadLibraryA(01b4e770 "C:\\Programme\\MetaTrader 4 \\experts\\libraries\\FCS300.dll") ret=00421df4
0009:Call hook proc 0x4f2290 (id=WH_CALLWNDPROC,code=0,wp=00000001,lp=0033669c)
0009:Call user32.CallNextHookEx(00010068,00000000,00000001,...