L_StopCapture

#include "l_bitmap.h"

L_INT L_StopCapture (L_VOID)

Stops the current capture process.

Returns

SUCCESS

The function was successful.

< 1

An error occurred. Refer to Return Codes.

Comments

This function stops the current capture process.

You should stop a previously started capture process before beginning another, or before the calling thread terminates.

Required DLLs and Libraries

LTSCR

For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application.

See Also

Functions

L_IsCaptureActive, L_CaptureActiveClient, L_CaptureActiveWindow, L_CaptureFullScreen, L_CaptureArea, L_CaptureFromEXE, L_CaptureFromEXEDlg, L_CaptureMenuUnderCursor, L_CaptureMouseCursor, L_CaptureSelectedObject, L_CaptureWallPaper, L_CaptureWindowUnderCursor

Example

int MyMain()
{

      /* To call the L_CaptureStopCapture */
     L_StopCapture();

    return 0;
}