Exemplo n.º 1
0
BOOL META WINAPI BeginPath(HDC hdc)
{
    BOOL bRet = FALSE;

    FIXUP_HANDLE(hdc);

    if (IS_ALTDC_TYPE(hdc))
    {
        PLDC pldc;

        if (IS_METADC16_TYPE(hdc))
            return(bRet);

        DC_PLDC(hdc,pldc,bRet);

        if ((pldc->iType == LO_METADC) &&
            !MF_Record(hdc,EMR_BEGINPATH))
        {
            return(bRet);
        }
    }

    return(NtGdiBeginPath(hdc));

}
Exemplo n.º 2
0
/*
 * @implemented
 */
BOOL
WINAPI
BeginPath(
    HDC	hdc
)
{
    return NtGdiBeginPath( hdc );
}
Exemplo n.º 3
0
Arquivo: path.c Projeto: GYGit/reactos
/*
 * @implemented
 */
BOOL
WINAPI
BeginPath(
    HDC hdc)
{
    HANDLE_METADC0P(BOOL, BeginPath, FALSE, hdc);
    return NtGdiBeginPath(hdc);
}