equal
deleted
inserted
replaced
175 /* DJM: If the user isn't watching for private |
175 /* DJM: If the user isn't watching for private |
176 messages in her SDL event loop, then pass it |
176 messages in her SDL event loop, then pass it |
177 along to any win32 specific window proc. |
177 along to any win32 specific window proc. |
178 */ |
178 */ |
179 } else if (userWindowProc) { |
179 } else if (userWindowProc) { |
180 return userWindowProc(hwnd, msg, wParam, lParam); |
180 return CallWindowProc(userWindowProc, hwnd, msg, wParam, lParam); |
181 } |
181 } |
182 } |
182 } |
183 break; |
183 break; |
184 } |
184 } |
185 return(DefWindowProc(hwnd, msg, wParam, lParam)); |
185 return(DefWindowProc(hwnd, msg, wParam, lParam)); |