"Paul Vriens" paul.vriens.wine@gmail.com wrote:
(Independent from the other user32/tests patch "Run tests on win95 again").
Basically the same patch/logic as in commit 5cf418f5218d46e28c00f15ba2eb5748888794f6 but now for user32. The GetProcAddress is needed as GetComboBoxInfo is not available on win95.
I've also changed the ok() test to test for all outcomes of the SendMessageA(hCombo, CB_ADDSTRING, 0, (LPARAM)&buffer).
That's of course is not your fault, but the above SendMessage call is invalid, it should be SendMessageA(hCombo, CB_ADDSTRING, 0, (LPARAM)buffer) instead, notice the removal of '&'.