⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cmflt.h

📁 WDK 自带的xpsdrv filter之 color
💻 H
字号:
/*++

Copyright (c) 2005 Microsoft Corporation

All rights reserved.

THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
PARTICULAR PURPOSE.

File Name:

   cmflt.h

Abstract:

   Implementation of the color management filter which handles page parts from the
   XPS document container.

--*/

#pragma once

#include "xdrchflt.h"
#include "ptmanage.h"

typedef map<CStringXDW, BOOL> ResDeleteMap;

class CColorManageFilter : public CXDXpsFilter
{
public:
    CColorManageFilter();

    virtual ~CColorManageFilter();

    static CONST CLSID&
    GetCLSID(
        VOID
        );

private:
    virtual HRESULT
    ProcessPart(
        __inout IFixedPage* pFP
        );

private:
    //
    // {8E56FC37-0799-447e-A643-16F4FB18244C}
    //
    static CLSID  CLSID_ColorManageFilter;

    //
    // Create a resource cache object to manage the storage of bitmaps and
    // color profiles in the container
    //
    CFileResourceCache m_resCache;
};


⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -