Пример #1
0
C_IMPL void captureGetSize( CCapture* capture, int* width, int* height )
{
    const Capture obj = c_to_cpp(capture);
    *width = obj.getWidth();
    *height = obj.getHeight();
}