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

📄 stdafx.h

📁 winddk src目录下的WDM源码压缩!
💻 H
字号:
#pragma once

#define SAFE_DELETE(p) \
{                       \
    if(p)               \
    {                   \
        delete p;       \
        p = NULL;       \
    }                   \
}

///////////////////////////////////////////////////////////////////////////////
// Windows system headers
//

#include <windows.h>            // Windows defines
#include <stdio.h>              // std out defines
#include <coguid.h>             // COM defines
#include <objbase.h>            // COM defines
#include <shobjidl.h>           // Shell UI Extension
#include <shlobj.h>             // Shell UI Extension
#include <gdiplus.h>            // GDI+
#include <shlwapi.h>            // Shell light weight API

///////////////////////////////////////////////////////////////////////////////
// WIA driver core headers
//

#include <sti.h>                // STI defines
#include <stiusd.h>             // IStiUsd interface
#include <wiamindr.h>           // IWiaMinidrv interface
#include <wiadevd.h>            // IWiaUIExtension interface
#include <wiamdef.h>

///////////////////////////////////////////////////////////////////////////////
// WIA common library headers
//

#include "basicstr.h"
#include "basicarray.h"           // CSimpleDynamicArray

///////////////////////////////////////////////////////////////////////////////
// WIA driver common headers

#define DEFAULT_BUFFER_SIZE             (128 * 1024)

#include "wiapropertymanager.h"     // WIA driver property manager class
#include "wiacapabilitymanager.h"   // WIA driver capability manager class
#include "wiahelpers.h"             // WIA driver helper functions

#include "resource.h"               // WIA driver resource defines
#include "WiaDevice.h"              // WIA simulated device class
#include "wiadriver.h"              // WIA driver header


⌨️ 快捷键说明

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