mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 09:50:02 +00:00
Delete wininet
svn path=/branches/xmlbuildsystem/; revision=14985
This commit is contained in:
parent
96f75639c4
commit
0922a0e8e5
6 changed files with 0 additions and 372 deletions
|
@ -1,4 +0,0 @@
|
|||
$Id$
|
||||
|
||||
This only contains enough stubs at the moment to satisfy the AbiWord installer.
|
||||
Please feel free to dump this and replace with something better.
|
|
@ -1,26 +0,0 @@
|
|||
# $Id$
|
||||
|
||||
PATH_TO_TOP = ../..
|
||||
|
||||
TARGET_TYPE = dynlink
|
||||
|
||||
TARGET_NAME = wininet
|
||||
|
||||
TARGET_BASE = $(TARGET_BASE_LIB_WININET)
|
||||
|
||||
# require os code to explicitly request A/W version of structs/functions
|
||||
TARGET_CFLAGS += -Wall -Werror
|
||||
|
||||
TARGET_SDKLIBS = kernel32.a ntdll.a
|
||||
|
||||
TARGET_OBJECTS = stubs.o
|
||||
|
||||
TARGET_NORC = yes
|
||||
|
||||
DEP_OBJECTS = $(TARGET_OBJECTS)
|
||||
|
||||
include $(PATH_TO_TOP)/rules.mak
|
||||
|
||||
include $(TOOLS_PATH)/helper.mk
|
||||
|
||||
include $(TOOLS_PATH)/depend.mk
|
|
@ -1,272 +0,0 @@
|
|||
#include <windows.h>
|
||||
#include <winerror.h>
|
||||
#include <wininet.h>
|
||||
|
||||
#define NDEBUG
|
||||
#include <debug.h>
|
||||
|
||||
BOOL WINAPI
|
||||
DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
|
||||
{
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
BOOL WINAPI
|
||||
InternetAutodial(DWORD Flags, DWORD /* FIXME: should be HWND */ Parent)
|
||||
{
|
||||
DPRINT1("InternetAutodial not implemented\n");
|
||||
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
DWORD WINAPI
|
||||
InternetAttemptConnect(DWORD Reserved)
|
||||
{
|
||||
DPRINT1("InternetAttemptConnect not implemented\n");
|
||||
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
BOOL WINAPI
|
||||
InternetGetConnectedState(LPDWORD Flags, DWORD Reserved)
|
||||
{
|
||||
DPRINT1("InternetGetConnectedState not implemented\n");
|
||||
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
BOOL WINAPI
|
||||
InternetAutodialHangup(DWORD Reserved)
|
||||
{
|
||||
DPRINT1("InternetAutodialHangup not implemented\n");
|
||||
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
BOOL WINAPI InternetCloseHandle( HINTERNET hInternet )
|
||||
{
|
||||
DPRINT1("InternetCloseHandle not implemented\n");
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
BOOL WINAPI
|
||||
InternetReadFile( HINTERNET hFile,
|
||||
PVOID lpBuffer,
|
||||
DWORD dwNumberOfBytesToRead,
|
||||
PDWORD lpdwNumberOfBytesRead )
|
||||
{
|
||||
DPRINT1("InternetReadFile not implemented\n");
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
BOOL WINAPI
|
||||
HttpQueryInfoW( HINTERNET hRequest,
|
||||
DWORD dwInfoLevel,
|
||||
PVOID lpvBuffer,
|
||||
PDWORD lpdwBufferLength,
|
||||
PDWORD lpdwIndex )
|
||||
{
|
||||
DPRINT1("HttpQueryInfoW not implemented\n");
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
BOOL WINAPI
|
||||
HttpQueryInfoA( HINTERNET hRequest,
|
||||
DWORD dwInfoLevel,
|
||||
PVOID lpvBuffer,
|
||||
PDWORD lpdwBufferLength,
|
||||
PDWORD lpdwIndex )
|
||||
{
|
||||
DPRINT1("HttpQueryInfoW not implemented\n");
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
BOOL WINAPI
|
||||
HttpSendRequestW( HINTERNET hRequest,
|
||||
LPCWSTR lpszHeaders,
|
||||
DWORD dwHeadersLength,
|
||||
PVOID lpOptional,
|
||||
DWORD dwOptionalLength )
|
||||
{
|
||||
DPRINT1("HttpSendRequestW not implemented\n");
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
BOOL WINAPI
|
||||
HttpSendRequestA( HINTERNET hRequest,
|
||||
LPCSTR lpszHeaders,
|
||||
DWORD dwHeadersLength,
|
||||
PVOID lpOptional,
|
||||
DWORD dwOptionalLength )
|
||||
{
|
||||
DPRINT1("HttpSendRequestA not implemented\n");
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
HINTERNET WINAPI
|
||||
HttpOpenRequestW( HINTERNET hConnect,
|
||||
LPCWSTR lpszVerb,
|
||||
LPCWSTR lpszObjectName,
|
||||
LPCWSTR lpszVersion,
|
||||
LPCWSTR lpszReferer,
|
||||
LPCWSTR* lpszAcceptTypes,
|
||||
DWORD dwFlags,
|
||||
DWORD dwContext )
|
||||
{
|
||||
DPRINT1("HttpOpenRequestW not implemented\n");
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
HINTERNET WINAPI
|
||||
HttpOpenRequestA( HINTERNET hConnect,
|
||||
LPCSTR lpszVerb,
|
||||
LPCSTR lpszObjectName,
|
||||
LPCSTR lpszVersion,
|
||||
LPCSTR lpszReferer,
|
||||
LPCSTR *lpszAcceptTypes,
|
||||
DWORD dwFlags,
|
||||
DWORD dwContext )
|
||||
{
|
||||
DPRINT1("HttpOpenRequestA not implemented\n");
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
HINTERNET WINAPI
|
||||
InternetConnectW( HINTERNET hInternet,
|
||||
LPCWSTR lpszServerName,
|
||||
INTERNET_PORT nServerPort,
|
||||
LPCWSTR lpszUsername,
|
||||
LPCWSTR lpszPassword,
|
||||
DWORD dwService,
|
||||
DWORD dwFlags,
|
||||
DWORD dwContext )
|
||||
{
|
||||
DPRINT1("InternetConnectW not implemented\n");
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
HINTERNET WINAPI
|
||||
InternetConnectA( HINTERNET hInternet,
|
||||
LPCTSTR lpszServerName,
|
||||
INTERNET_PORT nServerPort,
|
||||
LPCSTR lpszUsername,
|
||||
LPCSTR lpszPassword,
|
||||
DWORD dwService,
|
||||
DWORD dwFlags,
|
||||
DWORD dwContext )
|
||||
{
|
||||
DPRINT1("InternetConnectA not implemented\n");
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
BOOL WINAPI
|
||||
InternetCrackUrlW( LPCWSTR lpszUrl,
|
||||
DWORD dwUrlLength,
|
||||
DWORD dwFlags,
|
||||
LPURL_COMPONENTSW lpUrlComponents )
|
||||
{
|
||||
DPRINT1("InternetCrackUrlW not implemented\n");
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
BOOL WINAPI
|
||||
InternetCrackUrlA( LPCSTR lpszUrl,
|
||||
DWORD dwUrlLength,
|
||||
DWORD dwFlags,
|
||||
LPURL_COMPONENTSA lpUrlComponents )
|
||||
{
|
||||
DPRINT1("InternetCrackUrlA not implemented\n");
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
HINTERNET WINAPI
|
||||
InternetOpenW( LPCWSTR lpszAgent,
|
||||
DWORD dwAccessType,
|
||||
LPCWSTR lpszProxyName,
|
||||
LPCWSTR lpszProxyBypass,
|
||||
DWORD dwFlags )
|
||||
{
|
||||
DPRINT1("InternetOpenW not implemented\n");
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
HINTERNET WINAPI
|
||||
InternetOpenA( LPCSTR lpszAgent,
|
||||
DWORD dwAccessType,
|
||||
LPCSTR lpszProxyName,
|
||||
LPCSTR lpszProxyBypass,
|
||||
DWORD dwFlags )
|
||||
{
|
||||
DPRINT1("InternetOpenA not implemented\n");
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
||||
HINTERNET WINAPI
|
||||
InternetOpenUrlA(
|
||||
HINTERNET hInternet,
|
||||
LPCSTR Url,
|
||||
LPCSTR Headers,
|
||||
DWORD dwHeadersLength,
|
||||
DWORD dwFlags,
|
||||
DWORD_PTR dwContext
|
||||
)
|
||||
{
|
||||
DPRINT1("InternetOpenUrlA not implemented\n");
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
||||
HINTERNET WINAPI
|
||||
InternetOpenUrlW(
|
||||
HINTERNET hInternet,
|
||||
LPCWSTR Url,
|
||||
LPCWSTR Headers,
|
||||
DWORD dwHeadersLength,
|
||||
DWORD dwFlags,
|
||||
DWORD_PTR dwContext
|
||||
)
|
||||
{
|
||||
DPRINT1("InternetOpenUrlW not implemented\n");
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
|
||||
return FALSE;
|
||||
}
|
|
@ -1,23 +0,0 @@
|
|||
; $Id$
|
||||
LIBRARY WININET.DLL
|
||||
EXPORTS
|
||||
InternetAutodial@8
|
||||
InternetAttemptConnect@4
|
||||
InternetGetConnectedState@8
|
||||
InternetAutodialHangup@4
|
||||
InternetCloseHandle@4
|
||||
InternetReadFile@16
|
||||
HttpQueryInfoW@20
|
||||
HttpQueryInfoA@20
|
||||
HttpSendRequestW@20
|
||||
HttpSendRequestA@20
|
||||
HttpOpenRequestW@32
|
||||
HttpOpenRequestA@32
|
||||
InternetConnectW@32
|
||||
InternetConnectA@32
|
||||
InternetCrackUrlW@16
|
||||
InternetCrackUrlA@16
|
||||
InternetOpenW@20
|
||||
InternetOpenA@20
|
||||
InternetOpenUrlA@24
|
||||
InternetOpenUrlW@24
|
|
@ -1,39 +0,0 @@
|
|||
#include <defines.h>
|
||||
#include <reactos/resource.h>
|
||||
|
||||
|
||||
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
|
||||
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
FILEVERSION 42,RES_UINT_FV_MINOR,RES_UINT_FV_REVISION,RES_UINT_FV_BUILD
|
||||
PRODUCTVERSION RES_UINT_PV_MAJOR,RES_UINT_PV_MINOR,RES_UINT_PV_REVISION,RES_UINT_PV_BUILD
|
||||
FILEFLAGSMASK 0x3fL
|
||||
#ifdef _DEBUG
|
||||
FILEFLAGS 0x1L
|
||||
#else
|
||||
FILEFLAGS 0x0L
|
||||
#endif
|
||||
FILEOS 0x40004L
|
||||
FILETYPE 0x2L
|
||||
FILESUBTYPE 0x0L
|
||||
BEGIN
|
||||
BLOCK "StringFileInfo"
|
||||
BEGIN
|
||||
BLOCK "040904b0"
|
||||
BEGIN
|
||||
VALUE "CompanyName", RES_STR_COMPANY_NAME
|
||||
VALUE "FileDescription", "Internet access\0"
|
||||
VALUE "FileVersion", RES_STR_FILE_VERSION
|
||||
VALUE "InternalName", "wininet\0"
|
||||
VALUE "LegalCopyright", RES_STR_LEGAL_COPYRIGHT
|
||||
VALUE "OriginalFilename", "wininet.dll\0"
|
||||
VALUE "ProductName", RES_STR_PRODUCT_NAME
|
||||
VALUE "ProductVersion", RES_STR_PRODUCT_VERSION
|
||||
VALUE "Build Date", RES_STR_BUILD_DATE
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
BEGIN
|
||||
VALUE "Translation", 0x409, 1200
|
||||
END
|
||||
END
|
|
@ -1,8 +0,0 @@
|
|||
<module name="wininet" type="win32dll" baseaddress="${BASEADDRESS_WININET}" installbase="system32" installname="wininet.dll">
|
||||
<importlibrary definition="wininet.def" />
|
||||
<include base="wininet">.</include>
|
||||
<library>ntdll</library>
|
||||
<library>kernel32</library>
|
||||
<file>stubs.c</file>
|
||||
<file>wininet.rc</file>
|
||||
</module>
|
Loading…
Reference in a new issue