From: Michael Müller michael@fds-team.de
Signed-off-by: Alex Henrie alexhenrie24@gmail.com --- Patch split off from https://github.com/wine-staging/wine-staging/blob/master/patches/ntoskrnl-Dr...
Wine already has an implementation of this function, so adding it to the corresponding header file will benefit both programs compiled with Winelib and future Wine development.
include/ddk/ntddk.h | 1 + 1 file changed, 1 insertion(+)
diff --git a/include/ddk/ntddk.h b/include/ddk/ntddk.h index 5c124ca944..e76ccc9f8a 100644 --- a/include/ddk/ntddk.h +++ b/include/ddk/ntddk.h @@ -214,6 +214,7 @@ NTSTATUS WINAPI IoQueryDeviceDescription(PINTERFACE_TYPE,PULONG,PCONFIGURATION_ PCONFIGURATION_TYPE,PULONG,PIO_QUERY_DEVICE_ROUTINE,PVOID); void WINAPI IoRegisterDriverReinitialization(PDRIVER_OBJECT,PDRIVER_REINITIALIZE,PVOID); NTSTATUS WINAPI IoRegisterShutdownNotification(PDEVICE_OBJECT); +BOOLEAN WINAPI MmIsAddressValid(void *); NTSTATUS WINAPI PsSetLoadImageNotifyRoutine(PLOAD_IMAGE_NOTIFY_ROUTINE); void WINAPI RtlInitializeGenericTableAvl(PRTL_AVL_TABLE,PRTL_AVL_COMPARE_ROUTINE,PRTL_AVL_ALLOCATE_ROUTINE, PRTL_AVL_FREE_ROUTINE,void *); void WINAPI RtlInsertElementGenericTableAvl(PRTL_AVL_TABLE,void *,ULONG,BOOL*);
From: Michael Müller michael@fds-team.de
Signed-off-by: Alex Henrie alexhenrie24@gmail.com --- Patch split off from https://github.com/wine-staging/wine-staging/blob/master/patches/setupapi-Di...
Wine already has an implementation of this function, so adding it to the corresponding header file will benefit both programs compiled with Winelib and future Wine development.
include/setupapi.h | 3 +++ 1 file changed, 3 insertions(+)
diff --git a/include/setupapi.h b/include/setupapi.h index 76e255cc44..ceea64e947 100644 --- a/include/setupapi.h +++ b/include/setupapi.h @@ -1415,6 +1415,9 @@ DWORD WINAPI OpenAndMapForRead(PCWSTR, PDWORD, PHANDLE, PHANDLE, PVOID *); LONG WINAPI QueryRegistryValue(HKEY, PCWSTR, PBYTE *, PDWORD, PDWORD); /* RetreiveFileSecurity is not a typo, as per Microsoft's dlls */ DWORD WINAPI RetreiveFileSecurity(PCWSTR, PSECURITY_DESCRIPTOR *); +BOOL WINAPI SetupAddInstallSectionToDiskSpaceListA(HDSKSPC, HINF, HINF, PCSTR, PVOID, UINT); +BOOL WINAPI SetupAddInstallSectionToDiskSpaceListW(HDSKSPC, HINF, HINF, PCWSTR, PVOID, UINT); +#define SetupAddInstallSectionToDiskSpaceList WINELIB_NAME_AW(SetupAddInstallSectionToDiskSpaceList) BOOL WINAPI SetupAddSectionToDiskSpaceListA(HDSKSPC, HINF, HINF, PCSTR, UINT, PVOID, UINT); BOOL WINAPI SetupAddSectionToDiskSpaceListW(HDSKSPC, HINF, HINF, PCWSTR, UINT, PVOID, UINT); #define SetupAddSectionToDiskSpaceList WINELIB_NAME_AW(SetupAddSectionToDiskSpaceList)
Alex Henrie alexhenrie24@gmail.com writes:
From: Michael Müller michael@fds-team.de
Signed-off-by: Alex Henrie alexhenrie24@gmail.com
Patch split off from https://github.com/wine-staging/wine-staging/blob/master/patches/setupapi-Di...
Wine already has an implementation of this function, so adding it to the corresponding header file will benefit both programs compiled with Winelib and future Wine development.
I don't see much point in committing this separately from the implementation, particularly since the W function doesn't even exist yet.