Stops playing an AVI clip in an animation control. You can send this message explicitly or by using the Animate_Stop macro.
Syntax
To send this message, call the
SendMessage
function as follows.
|
lResult = SendMessage(
| // returns LRESULT in lResult
|
| (HWND) hWndControl,
| // handle to destination control
|
| (UINT) ACM_STOP,
| // message ID
|
| (WPARAM) wParam,
| // = 0; not used, must be zero |
| (LPARAM) lParam
| // = 0; not used, must be zero |
|
);
| |
Parameters
- wParam
-
Must be zero.
- lParam
-
Must be zero.
Return Value
Returns nonzero if successful, or zero otherwise.
Message Information
| Header | commctrl.h |
|---|
| Minimum operating systems |
Windows NT 3.51, Windows 95 |
|---|