| commit | 9a36a2f2f0b39d9944f7b8b07cb66efc881d3aec | [log] [tgz] |
|---|---|---|
| author | François Gouget <fgouget@codeweavers.com> | Fri Jan 05 03:43:40 2001 +0000 |
| committer | Alexandre Julliard <julliard@winehq.org> | Fri Jan 05 03:43:40 2001 +0000 |
| tree | 269ba20fe5845c215a1820d3023cd41bf1f1a2a0 | |
| parent | 2a6480231a0c8754879161e9c4c43b1b8b30334f [diff] [blame] |
The WndProc function was missing the CALLBACK modifier.
diff --git a/programs/progman/program.c b/programs/progman/program.c index 9effcc3..15346be 100644 --- a/programs/progman/program.c +++ b/programs/progman/program.c
@@ -14,7 +14,7 @@ * PROGRAM_ProgramWndProc */ -static LRESULT PROGRAM_ProgramWndProc (HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) +static LRESULT CALLBACK PROGRAM_ProgramWndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) { switch (msg) {