mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 18:23:07 +00:00
Create a branch for cmake bringup.
svn path=/branches/cmake-bringup/; revision=48236
This commit is contained in:
parent
a28e798006
commit
c424146e2c
20602 changed files with 0 additions and 1140137 deletions
223
dll/win32/setupapi/stubs.c
Normal file
223
dll/win32/setupapi/stubs.c
Normal file
|
@ -0,0 +1,223 @@
|
|||
/*
|
||||
* SetupAPI stubs
|
||||
*
|
||||
* Copyright 2000 James Hatheway
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
|
||||
#include "setupapi_private.h"
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(setupapi);
|
||||
|
||||
/***********************************************************************
|
||||
* TPWriteProfileString (SETUPX.62)
|
||||
*/
|
||||
BOOL WINAPI TPWriteProfileString16( LPCSTR section, LPCSTR entry, LPCSTR string )
|
||||
{
|
||||
FIXME( "%s %s %s: stub\n", debugstr_a(section), debugstr_a(entry), debugstr_a(string) );
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* suErrorToIds (SETUPX.61)
|
||||
*/
|
||||
DWORD WINAPI suErrorToIds16( WORD w1, WORD w2 )
|
||||
{
|
||||
FIXME( "%x %x: stub\n", w1, w2 );
|
||||
return 0;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* RegistryDelnode(SETUPAPI.@)
|
||||
*/
|
||||
BOOL WINAPI RegistryDelnode(DWORD x, DWORD y)
|
||||
{
|
||||
FIXME("%08x %08x: stub\n", x, y);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* SetupCloseLog(SETUPAPI.@)
|
||||
*/
|
||||
void WINAPI SetupCloseLog(void)
|
||||
{
|
||||
FIXME("() stub\n");
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* SetupLogErrorW(SETUPAPI.@)
|
||||
*/
|
||||
BOOL WINAPI SetupLogErrorW(LPCWSTR MessageString, LogSeverity Severity)
|
||||
{
|
||||
FIXME("(%s, %d) stub\n", debugstr_w(MessageString), Severity);
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* SetupOpenLog(SETUPAPI.@)
|
||||
*/
|
||||
BOOL WINAPI SetupOpenLog(BOOL Reserved)
|
||||
{
|
||||
FIXME("(%d) stub\n", Reserved);
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* SetupPromptReboot(SETUPAPI.@)
|
||||
*/
|
||||
INT WINAPI SetupPromptReboot( HSPFILEQ file_queue, HWND owner, BOOL scan_only )
|
||||
{
|
||||
FIXME("%p, %p, %d\n", file_queue, owner, scan_only);
|
||||
return 0;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* SetupSetSourceListA (SETUPAPI.@)
|
||||
*/
|
||||
BOOL WINAPI SetupSetSourceListA(DWORD flags, PCSTR *list, UINT count)
|
||||
{
|
||||
FIXME("0x%08x %p %d\n", flags, list, count);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* SetupSetSourceListW (SETUPAPI.@)
|
||||
*/
|
||||
BOOL WINAPI SetupSetSourceListW(DWORD flags, PCWSTR *list, UINT count)
|
||||
{
|
||||
FIXME("0x%08x %p %d\n", flags, list, count);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* SetupPromptForDiskA (SETUPAPI.@)
|
||||
*/
|
||||
UINT WINAPI SetupPromptForDiskA(HWND hwndParent, PCSTR DialogTitle, PCSTR DiskName,
|
||||
PCSTR PathToSource, PCSTR FileSought, PCSTR TagFile, DWORD DiskPromptStyle,
|
||||
PSTR PathBuffer, DWORD PathBufferSize, PDWORD PathRequiredSize)
|
||||
{
|
||||
FIXME("%p %s %s %s %s %s %d %p %d %p: stub\n", hwndParent, debugstr_a(DialogTitle),
|
||||
debugstr_a(DiskName), debugstr_a(PathToSource), debugstr_a(FileSought),
|
||||
debugstr_a(TagFile), DiskPromptStyle, PathBuffer, PathBufferSize,
|
||||
PathRequiredSize);
|
||||
return 0;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* SetupPromptForDiskW (SETUPAPI.@)
|
||||
*/
|
||||
UINT WINAPI SetupPromptForDiskW(HWND hwndParent, PCWSTR DialogTitle, PCWSTR DiskName,
|
||||
PCWSTR PathToSource, PCWSTR FileSought, PCWSTR TagFile, DWORD DiskPromptStyle,
|
||||
PWSTR PathBuffer, DWORD PathBufferSize, PDWORD PathRequiredSize)
|
||||
{
|
||||
FIXME("%p %s %s %s %s %s %d %p %d %p: stub\n", hwndParent, debugstr_w(DialogTitle),
|
||||
debugstr_w(DiskName), debugstr_w(PathToSource), debugstr_w(FileSought),
|
||||
debugstr_w(TagFile), DiskPromptStyle, PathBuffer, PathBufferSize,
|
||||
PathRequiredSize);
|
||||
return 0;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* SetupDiRemoveDevice(SETUPAPI.@)
|
||||
*/
|
||||
BOOL WINAPI
|
||||
SetupDiRemoveDevice(
|
||||
IN HDEVINFO DeviceInfoSet,
|
||||
IN PSP_DEVINFO_DATA DeviceInfoData)
|
||||
{
|
||||
FIXME ("Stub %p %p\n", DeviceInfoSet, DeviceInfoData);
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* SetupDiUnremoveDevice(SETUPAPI.@)
|
||||
*/
|
||||
BOOL WINAPI
|
||||
SetupDiUnremoveDevice(
|
||||
IN HDEVINFO DeviceInfoSet,
|
||||
IN PSP_DEVINFO_DATA DeviceInfoData)
|
||||
{
|
||||
FIXME ("Stub %p %p\n", DeviceInfoSet, DeviceInfoData);
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* CMP_RegisterNotification(SETUPAPI.@)
|
||||
*/
|
||||
CONFIGRET
|
||||
WINAPI
|
||||
CMP_RegisterNotification(
|
||||
IN HANDLE hRecipient,
|
||||
IN LPVOID lpvNotificationFilter,
|
||||
IN DWORD dwFlags,
|
||||
OUT PULONG pluhDevNotify)
|
||||
{
|
||||
FIXME ("Stub %p %p %lu %p\n", hRecipient, lpvNotificationFilter, dwFlags, pluhDevNotify);
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return CR_FAILURE;
|
||||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* CMP_UnregisterNotification(SETUPAPI.@)
|
||||
*/
|
||||
CONFIGRET
|
||||
WINAPI
|
||||
CMP_UnregisterNotification(IN HDEVNOTIFY handle)
|
||||
{
|
||||
FIXME ("Stub %p\n", handle);
|
||||
return CR_SUCCESS;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* CM_Get_Device_Interface_List_Size_ExA (SETUPAPI.@)
|
||||
*/
|
||||
CONFIGRET WINAPI CM_Get_Device_Interface_List_Size_ExA(PULONG len, LPGUID class, DEVINSTID_A id,
|
||||
ULONG flags, HMACHINE machine)
|
||||
{
|
||||
FIXME("%p %p %s 0x%08x %p: stub\n", len, class, debugstr_a(id), flags, machine);
|
||||
return CR_FAILURE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* CM_Get_Device_Interface_List_Size_ExW (SETUPAPI.@)
|
||||
*/
|
||||
CONFIGRET WINAPI CM_Get_Device_Interface_List_Size_ExW(PULONG len, LPGUID class, DEVINSTID_W id,
|
||||
ULONG flags, HMACHINE machine)
|
||||
{
|
||||
FIXME("%p %p %s 0x%08x %p: stub\n", len, class, debugstr_w(id), flags, machine);
|
||||
return CR_FAILURE;
|
||||
}
|
||||
|
||||
WINSETUPAPI BOOL WINAPI SetupDiGetDeviceInterfaceAlias(IN HDEVINFO DeviceInfoSet, IN PSP_DEVICE_INTERFACE_DATA DeviceInterfaceData, IN CONST GUID *AliasInterfaceClassGuid, OUT PSP_DEVICE_INTERFACE_DATA AliasDeviceInterfaceData)
|
||||
{
|
||||
FIXME("%p %p %p %p %p stub\n", DeviceInfoSet, DeviceInterfaceData, AliasInterfaceClassGuid, AliasDeviceInterfaceData);
|
||||
SetLastError(ERROR_INVALID_PARAMETER);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
WINSETUPAPI BOOL WINAPI SetupSetNonInteractiveMode(BOOL NonInteractiveFlag)
|
||||
{
|
||||
FIXME("(%d) stub\n", NonInteractiveFlag);
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return FALSE;
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue