Synced riched20_winetest, riched32_winetest with Wine HEAD

svn path=/trunk/; revision=35729
This commit is contained in:
Pierre Schweitzer 2008-08-28 10:54:35 +00:00
parent f381a715d2
commit 687df0212a
4 changed files with 842 additions and 32 deletions

File diff suppressed because it is too large Load diff

View file

@ -26,17 +26,13 @@
#include <winbase.h>
#include <wingdi.h>
#include <winuser.h>
#include <initguid.h>
#include <ole2.h>
#include <richedit.h>
#include <richole.h>
#include <tom.h>
#include <wine/test.h>
#include <initguid.h>
DEFINE_GUID(IID_ITextDocument, 0x8cc497c0, 0xa1df, 0x11ce, 0x80, 0x98, 0x00, 0xaa, 0x00, 0x47, 0xbe, 0x5d);
DEFINE_GUID(IID_ITextRange, 0x8cc497c2, 0xa1df, 0x11ce, 0x80, 0x98, 0x00, 0xaa, 0x00, 0x47, 0xbe, 0x5d);
DEFINE_GUID(IID_ITextSelection, 0x8cc497c1, 0xa1df, 0x11ce, 0x80, 0x98, 0x00, 0xaa, 0x00, 0x47, 0xbe, 0x5d);
static HMODULE hmoduleRichEdit;
static HWND new_window(LPCTSTR lpClassName, DWORD dwStyle, HWND parent)

View file

@ -6,12 +6,8 @@
#define STANDALONE
#include "wine/test.h"
extern void func_editor(void);
extern void func_richole(void);
const struct test winetest_testlist[] =
{
{ "editor", func_editor },
{ "richole", func_richole },
{ 0, 0 }
};

View file

@ -6,10 +6,8 @@
#define STANDALONE
#include "wine/test.h"
extern void func_editor(void);
const struct test winetest_testlist[] =
{
{ "editor", func_editor },
{ 0, 0 }
};