Save the select test info on close.

The browse dialog now lists all winetest dlls and allows selection of either all tests in all dlls, all tests within a dll, or the option to choose individual tests. (rewuires a modified winetest framework)

svn path=/trunk/; revision=34034
This commit is contained in:
Ged Murphy 2008-06-20 11:20:26 +00:00
parent 938f407a80
commit 0537163f8d
4 changed files with 49 additions and 20 deletions

View file

@ -32,7 +32,7 @@ typedef struct _MAIN_WND_INFO
LPWSTR lpDllList;
INT numDlls;
PTEST_ITEM SelectedTest;
TEST_ITEM SelectedTest;
} MAIN_WND_INFO, *PMAIN_WND_INFO;
@ -46,7 +46,7 @@ BOOL CALLBACK BrowseDlgProc(HWND hDlg, UINT Message, WPARAM wParam, LPARAM lPara
/* misc.c */
HIMAGELIST InitImageList(UINT StartResource, UINT EndResource, UINT Width, UINT Height);
VOID DisplayString(LPWSTR lpMsg);
VOID DisplayMessage(LPWSTR lpMsg);
VOID DisplayError(INT err);
DWORD AnsiToUnicode(LPCSTR lpSrcStr, LPWSTR *lpDstStr);