Commit 65493cf1 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

atl: Use atlbase.h in tests.

parent 6e485f13
...@@ -24,76 +24,33 @@ ...@@ -24,76 +24,33 @@
#define COBJMACROS #define COBJMACROS
#include <wine/test.h> #include <atlbase.h>
#include <windef.h>
#include <winbase.h>
#include <winuser.h>
#include <wingdi.h>
#include <winnls.h>
#include <winerror.h>
#include <winnt.h>
#include <wtypes.h>
#include <olectl.h>
#include <ocidl.h>
struct _ATL_OBJMAP_ENTRYW;
struct _AtlCreateWndData;
struct _ATL_TERMFUNC_ELEM;
struct _ATL_MODULEW
{
UINT cbSize;
HINSTANCE m_hInst;
HINSTANCE m_hInstResource;
HINSTANCE m_hInstTypeLib;
struct _ATL_OBJMAP_ENTRYW* m_pObjMap;
LONG m_nLockCnt;
HANDLE m_hHeap;
union
{
CRITICAL_SECTION m_csTypeInfoHolder;
CRITICAL_SECTION m_csStaticDataInit;
} u;
CRITICAL_SECTION m_csWindowCreate;
CRITICAL_SECTION m_csObjMap;
DWORD dwAtlBuildVer;
struct _AtlCreateWndData* m_pCreateWndList;
BOOL m_bDestroyHeap;
GUID* pguidVer;
DWORD m_dwHeaps;
HANDLE* m_phHeaps;
int m_nHeap;
struct _ATL_TERMFUNC_ELEM* m_pTermFuncs;
};
HRESULT WINAPI AtlModuleInit(struct _ATL_MODULEW* pM, struct _ATL_OBJMAP_ENTRYW* p, HINSTANCE h); #include <wine/test.h>
#define MAXSIZE 512 #define MAXSIZE 512
static void test_StructSize(void) static void test_StructSize(void)
{ {
struct _ATL_MODULEW *tst; _ATL_MODULEW *tst;
HRESULT hres; HRESULT hres;
int i; int i;
tst = HeapAlloc (GetProcessHeap(),HEAP_ZERO_MEMORY,MAXSIZE); tst = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, MAXSIZE);
for (i=0;i<MAXSIZE;i++) { for (i=0;i<MAXSIZE;i++) {
tst->cbSize = i; tst->cbSize = i;
hres = AtlModuleInit(tst, NULL, NULL); hres = AtlModuleInit(tst, NULL, NULL);
switch (i) { switch (i) {
case FIELD_OFFSET( struct _ATL_MODULEW, dwAtlBuildVer ): case FIELD_OFFSET(_ATL_MODULEW, dwAtlBuildVer):
case sizeof(struct _ATL_MODULEW): case sizeof(_ATL_MODULEW):
#ifdef _WIN64 #ifdef _WIN64
case sizeof(struct _ATL_MODULEW) + sizeof(void *): case sizeof(_ATL_MODULEW) + sizeof(void *):
#endif #endif
ok (hres == S_OK, "AtlModuleInit with %d failed (0x%x).\n", i, (int)hres); ok (hres == S_OK, "AtlModuleInit with %d failed (0x%x).\n", i, (int)hres);
break; break;
default: default:
ok (FAILED(hres) || ok (FAILED(hres), "AtlModuleInit with %d succeeded? (0x%x).\n", i, (int)hres);
broken((i > FIELD_OFFSET( struct _ATL_MODULEW, dwAtlBuildVer )) && (hres == S_OK)), /* Win95 */
"AtlModuleInit with %d succeeded? (0x%x).\n", i, (int)hres);
break; break;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment