mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 21:21:33 +00:00

Fixes the release with debug information build target (RelWithDebInfo), complete a backport for CORE-19496, and import VirtualBox guest additions fixes from Ratin Gao (RatinCN). In addition, comment out bogus asserts in the USB stack that can prevent ReactOS from booting over USB on real hardware. Also adjust boot options in both LiveCD and BootCD to boot by default into the non-debug version. Finally, remove some bugchecks in our memory manager for common issues that do not bugcheck on release versions anyways. The text for the readme document on the desktop was also updated. This includes a squashed backport of the following commits:6c7d2a2e25
[SDK] Fix RelWithDebInfo (#7811)275c40d26d
[CRYPT32] Initial implementation of CertEnumSystemStoreLocation() (#7746)7a9c744b70
[SETUPAPI] Stub implement SetupQueryInfVersionInformation (#7769)49a55a099e
[SETUPAPI] Refactor SetupInstallServicesFromInfSectionExW (#7770)cfcc8d85b2
[NEWDEV] Fix HardwareId match logic in UpdateDriverForPlugAndPlayDevicesW (#7808)2ffc6d281b
[BOOTDATA] Follow-up of #7795; Modify NLS registry (#7799)
13 lines
250 B
C
13 lines
250 B
C
#define __ROS_LONG64__
|
|
|
|
#define STANDALONE
|
|
#include <apitest.h>
|
|
|
|
extern void func_CertEnumSystemStoreLocation(void);
|
|
|
|
const struct test winetest_testlist[] =
|
|
{
|
|
{ "CertEnumSystemStoreLocation", func_CertEnumSystemStoreLocation },
|
|
|
|
{ 0, 0 }
|
|
};
|