Esempio n. 1
0
BOOL META WINAPI WidenPath(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_WIDENPATH))
        {
            return(bRet);
        }
    }

    return(NtGdiWidenPath(hdc));

}
Esempio n. 2
0
/*
 * @implemented
 */
BOOL
WINAPI
WidenPath(
    HDC	hdc
)
{
    return NtGdiWidenPath ( hdc );
}
Esempio n. 3
0
File: path.c Progetto: GYGit/reactos
/*
 * @implemented
 */
BOOL
WINAPI
WidenPath(
    HDC	hdc)
{
    HANDLE_METADC0P(BOOL, WidenPath, FALSE, hdc);
    return NtGdiWidenPath ( hdc );
}