Fix redundant uses of MAKEINTRESOURCE.
This commit is contained in:
parent
7f092818f0
commit
41cf63148a
|
@ -1175,7 +1175,7 @@ static void test_data_cache(void)
|
|||
fmtetc.cfFormat = CF_METAFILEPICT;
|
||||
stgmedium.tymed = TYMED_MFPICT;
|
||||
U(stgmedium).hMetaFilePict = OleMetafilePictFromIconAndLabel(
|
||||
LoadIcon(NULL, MAKEINTRESOURCE(IDI_APPLICATION)), wszPath, wszPath, 0);
|
||||
LoadIcon(NULL, IDI_APPLICATION), wszPath, wszPath, 0);
|
||||
stgmedium.pUnkForRelease = NULL;
|
||||
|
||||
fmtetc.dwAspect = DVASPECT_CONTENT;
|
||||
|
|
|
@ -83,7 +83,7 @@ START_TEST(systray)
|
|||
wc.cbWndExtra = 0;
|
||||
wc.hInstance = GetModuleHandleA(NULL);
|
||||
wc.hIcon = NULL;
|
||||
wc.hCursor = LoadCursorA(NULL, MAKEINTRESOURCEA(IDC_IBEAM));
|
||||
wc.hCursor = LoadCursorA(NULL, IDC_IBEAM);
|
||||
wc.hbrBackground = GetSysColorBrush(COLOR_WINDOW);
|
||||
wc.lpszMenuName = NULL;
|
||||
wc.lpszClassName = "MyTestWnd";
|
||||
|
|
Loading…
Reference in New Issue