示例#1
0
文件: path.c 项目: Gaikokujin/WinNT4
BOOL META WINAPI EndPath(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_ENDPATH))
        {
            return(bRet);
        }
    }


    return(NtGdiEndPath(hdc));

}
示例#2
0
/*
 * @implemented
 */
BOOL
WINAPI
EndPath(
    HDC	hdc
)
{
    return NtGdiEndPath( hdc );
}
示例#3
0
文件: path.c 项目: GYGit/reactos
/*
 * @implemented
 */
BOOL
WINAPI
EndPath(
    HDC hdc)
{
    HANDLE_METADC0P(BOOL, EndPath, FALSE, hdc);
    return NtGdiEndPath( hdc );
}