Skip to content

Latest commit

 

History

History
43 lines (26 loc) · 976 Bytes

GdiGetBatchLimit.md

File metadata and controls

43 lines (26 loc) · 976 Bytes

Home

Function name : GdiGetBatchLimit

Group: Painting and Drawing - Library: gdi32


Returns the maximum number of function calls that can be accumulated in the calling thread's current batch.


Declaration:

DWORD GdiGetBatchLimit(VOID);  

FoxPro declaration:

DECLARE LONG GdiGetBatchLimit IN gdi32  

Parameters:

This function has no parameters.


Return value:

If the function succeeds, the return value is the batch limit. If the function fails, the return value is zero.


Comments:

The batch limit is set by using the GdiSetBatchLimit function. Setting the limit to 1 effectively disables batching.

See also: GdiSetBatchLimit, GdiFlush.