mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 12:11:42 +00:00
[SHELL32_APITEST] Improve the existing PCH and make use of it. Convert AddCommas.c to c++ in order to have it benefit from the PCH.
This commit is contained in:
parent
95ec9464d3
commit
8ed8eec17c
14 changed files with 39 additions and 63 deletions
|
@ -7,6 +7,13 @@
|
|||
|
||||
#include "shelltest.h"
|
||||
|
||||
#include <shlwapi.h>
|
||||
#include <unknownbase.h>
|
||||
#include <shlguid_undoc.h>
|
||||
|
||||
#define test_S_OK(hres, message) ok(hres == S_OK, "%s (0x%lx instead of S_OK)\n",message, hResult);
|
||||
#define test_HRES(hres, hresExpected, message) ok(hres == hresExpected, "%s (0x%lx instead of 0x%lx)\n",message, hResult,hresExpected);
|
||||
|
||||
BOOL CheckWindowClass(HWND hwnd, PCWSTR className)
|
||||
{
|
||||
ULONG size = (wcslen(className) + 1)* sizeof(WCHAR);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue