commit | 007f1335c167ae94f8f3ecf00cbc76728bb98c3c | [log] [tgz] |
---|---|---|
author | Zygo Blaxell <uj22kfbc@umail.furryterror.org> | Thu Apr 15 16:40:16 1999 +0000 |
committer | Alexandre Julliard <julliard@winehq.org> | Thu Apr 15 16:40:16 1999 +0000 |
tree | 7b25bbb725bed2f9ab40a0292471cb0de87d4e2f | |
parent | f31ec0b08a616c5d3bd32c2494beaa128aad3601 [diff] [blame] |
ReleaseCapture() is supposed to return a BOOL value.
diff --git a/windows/input.c b/windows/input.c index 3ddee08..17233d7 100644 --- a/windows/input.c +++ b/windows/input.c
@@ -371,9 +371,9 @@ /********************************************************************** * ReleaseCapture (USER.19) (USER32.439) */ -void WINAPI ReleaseCapture(void) +BOOL WINAPI ReleaseCapture(void) { - EVENT_Capture( 0, 0 ); + return (EVENT_Capture( 0, 0 ) != 0); }