Added try-catch to get meet WndProc nothrow requirement, changed sleep to use Duration

This commit is contained in:
cal 2012-10-06 14:18:59 -08:00
parent fd7bfd5c25
commit 8ef905c906
1 changed files with 12 additions and 8 deletions

View File

@ -441,13 +441,17 @@ version(Windows) {
alias HWND NativeWindowHandle;
extern(Windows)
int WndProc(HWND hWnd, UINT iMessage, WPARAM wParam, LPARAM lParam) {
if(hWnd in windowObjects) {
auto window = windowObjects[hWnd];
return window.windowProcedure(hWnd, iMessage, wParam, lParam);
} else {
return DefWindowProc(hWnd, iMessage, wParam, lParam);
}
int WndProc(HWND hWnd, UINT iMessage, WPARAM wParam, LPARAM lParam) nothrow {
try {
if(hWnd in windowObjects) {
auto window = windowObjects[hWnd];
return window.windowProcedure(hWnd, iMessage, wParam, lParam);
} else {
return DefWindowProc(hWnd, iMessage, wParam, lParam);
}
} catch (Exception e) {
assert(false, "Exception caught in WndProc");
}
}
mixin template NativeScreenPainterImplementation() {
@ -772,7 +776,7 @@ version(Windows) {
if(!done && handlePulse !is null)
handlePulse();
Thread.sleep(pulseTimeout * 10000);
Thread.sleep(dur!"msecs"(pulseTimeout));
}
} else {
while((ret = GetMessage(&message, hwnd, 0, 0)) != 0) {