mirror of
https://github.com/reactos/reactos.git
synced 2025-01-07 06:45:24 +00:00
[URL]
* Sync to Wine 1.5.4. svn path=/trunk/; revision=56636
This commit is contained in:
parent
9f4e3a2396
commit
e46d08cab2
4 changed files with 12 additions and 9 deletions
|
@ -10,11 +10,7 @@ list(APPEND SOURCE
|
|||
${CMAKE_CURRENT_BINARY_DIR}/url.def)
|
||||
|
||||
add_library(url SHARED ${SOURCE})
|
||||
|
||||
set_module_type(url win32dll)
|
||||
|
||||
target_link_libraries(url wine)
|
||||
|
||||
add_importlibs(url shell32 shlwapi msvcrt kernel32 ntdll)
|
||||
|
||||
add_cd_file(TARGET url DESTINATION reactos/system32 FOR all)
|
||||
|
|
|
@ -1,7 +1,5 @@
|
|||
@ stdcall AddMIMEFileTypesPS(ptr ptr)
|
||||
@ stub AutodialHookCallback
|
||||
@ stub -private DllCanUnloadNow
|
||||
@ stub -private DllGetClassObject
|
||||
@ stub DummyEntryPoint
|
||||
@ stub DummyEntryPointA
|
||||
@ stdcall FileProtocolHandler(long ptr str long) FileProtocolHandlerA
|
||||
|
@ -13,8 +11,8 @@
|
|||
@ stub MailToProtocolHandlerA
|
||||
@ stub NewsProtocolHandler
|
||||
@ stub NewsProtocolHandlerA
|
||||
@ stub OpenURL
|
||||
@ stub OpenURLA
|
||||
@ stdcall OpenURL(long long str long) OpenURLA
|
||||
@ stdcall OpenURLA(long long str long)
|
||||
@ stdcall TelnetProtocolHandler(long str) TelnetProtocolHandlerA
|
||||
@ stdcall TelnetProtocolHandlerA(long str)
|
||||
@ stub TranslateURLA
|
||||
|
|
|
@ -105,6 +105,15 @@ HRESULT WINAPI FileProtocolHandlerA(HWND hWnd, HINSTANCE hInst, LPCSTR pszUrl,
|
|||
return S_OK;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* OpenURLA (URL.@)
|
||||
*
|
||||
*/
|
||||
void WINAPI OpenURLA(HWND hwnd, HINSTANCE inst, LPCSTR cmdline, INT show)
|
||||
{
|
||||
FIXME("(%p, %p, %s, %d): stub!\n", hwnd, inst, debugstr_a(cmdline), show);
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* TelnetProtocolHandlerA (URL.@)
|
||||
*
|
||||
|
|
|
@ -166,7 +166,7 @@ reactos/dll/win32/tapi32 # Autosync
|
|||
reactos/dll/win32/traffic # Synced to Wine-1.5.4
|
||||
reactos/dll/win32/twain_32 # Out of sync
|
||||
reactos/dll/win32/updspapi # Synced to Wine-1.3.37
|
||||
reactos/dll/win32/url # Autosync
|
||||
reactos/dll/win32/url # Synced to Wine-1.5.4
|
||||
reactos/dll/win32/urlmon # Autosync
|
||||
reactos/dll/win32/usp10 # Synced to Wine-1.4
|
||||
reactos/dll/win32/uxtheme # Forked
|
||||
|
|
Loading…
Reference in a new issue