资源简介
琢磨了很久 终于搞定了
WDK7.1 下面的范例 我修改为在VC2010编译,内含编译环境设置供大家分享!
代码片段和文件信息
/*++
Copyright (c) 1997-1998 Microsoft Corporation
Module Name:
DEBUG.C
Abstract:
This source file contains debug routines.
Environment:
user mode
Revision History:
07-08-97 : created
--*/
//*****************************************************************************
// I N C L U D E S
//*****************************************************************************
#include
#include setyps.h>
#include
#include
#include “usbview.h“
#if DBG
//*****************************************************************************
// T Y P E D E F S
//*****************************************************************************
typedef struct _ALLOCHEADER
{
LIST_ENTRY ListEntry;
PCTSTR File;
ULONG Line;
} ALLOCHEADER *PALLOCHEADER;
//*****************************************************************************
// G L O B A L S
//*****************************************************************************
LIST_ENTRY AllocListHead =
{
&AllocListHead
&AllocListHead
};
//*****************************************************************************
//
// MyAlloc()
//
//*****************************************************************************
HGLOBAL
MyAlloc (
__in PCTSTR File
ULONG Line
DWORD dwBytes
)
{
PALLOCHEADER header;
if (dwBytes)
{
dwBytes += sizeof(ALLOCHEADER);
header = (PALLOCHEADER)GlobalAlloc(GPTR dwBytes);
if (header != NULL)
{
InsertTailList(&AllocListHead &header->ListEntry);
header->File = File;
header->Line = Line;
return (HGLOBAL)(header + 1);
}
}
return NULL;
}
//*****************************************************************************
//
// MyReAlloc()
//
//*****************************************************************************
HGLOBAL
MyReAlloc (
HGLOBAL hMem
DWORD dwBytes
)
{
PALLOCHEADER header;
PALLOCHEADER headerNew;
if (hMem)
{
header = (PALLOCHEADER)hMem;
header--;
// Remove the old address from the allocation list
//
RemoveEntryList(&header->ListEntry);
headerNew = GlobalReAlloc((HGLOBAL)header dwBytes GMEM_MOVEABLE|GMEM_ZEROINIT);
if (headerNew != NULL)
{
// Add the new address to the allocation list
//
InsertTailList(&AllocListHead &headerNew->ListEntry);
return (HGLOBAL)(headerNew + 1);
}
else
{
// If GlobalReAlloc fails the original memory is not freed
// and the original handle and pointer are still valid.
// Add the old address back to the allocation list.
//
InsertTailList(&AllocListHead &header->ListEntry)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2012-03-08 03:39 usbview_VS10\
文件 1846 2010-01-13 22:32 usbview_VS10\bang.ico
文件 4171 2010-02-08 18:26 usbview_VS10\debug.c
文件 4397 2010-02-08 18:26 usbview_VS10\devnode.c
文件 34534 2010-02-08 18:26 usbview_VS10\dispaud.c
文件 38076 2010-02-08 18:26 usbview_VS10\display.c
文件 68682 2010-02-08 18:26 usbview_VS10\enum.c
文件 766 2010-01-13 22:32 usbview_VS10\hub.ico
目录 0 2012-03-08 00:48 usbview_VS10\ipch\
目录 0 2012-03-08 00:48 usbview_VS10\ipch\usbview_vs10-9ea7f94e\
文件 33488896 2012-03-08 00:48 usbview_VS10\ipch\usbview_vs10-9ea7f94e\usbview_vs10-f6154151.ipch
文件 1090 2010-02-08 18:26 usbview_VS10\makefile
文件 1060 2010-02-08 18:26 usbview_VS10\makefile.mk
文件 10134 2010-01-13 22:32 usbview_VS10\monitor.ico
文件 766 2010-01-13 22:32 usbview_VS10\port.ico
文件 978 2010-02-08 18:26 usbview_VS10\resource.h
文件 978 2010-02-08 18:26 usbview_VS10\sources
文件 326 2010-01-13 22:32 usbview_VS10\split.cur
文件 766 2010-01-13 22:32 usbview_VS10\usb.ico
文件 9258 2010-02-08 18:26 usbview_VS10\usbdesc.h
文件 23351 2010-02-08 18:26 usbview_VS10\usbview.c
文件 7797 2010-02-08 18:26 usbview_VS10\usbview.h
文件 19985 2010-02-08 18:26 usbview_VS10\usbview.htm
文件 3339 2012-03-08 01:03 usbview_VS10\usbview.rc
目录 0 2012-03-08 03:14 usbview_VS10\usbview_VS10\
文件 24793088 2012-03-08 03:39 usbview_VS10\usbview_VS10.sdf
文件 53 2012-03-08 03:37 usbview_VS10\usbview_VS10.SearchResults
文件 1395 2012-03-08 02:51 usbview_VS10\usbview_VS10.sln
文件 13312 2012-03-08 03:39 usbview_VS10\usbview_VS10.suo
文件 24071 2012-03-08 03:37 usbview_VS10\usbview_VS10.WK3
文件 8011 2012-03-08 03:36 usbview_VS10\usbview_VS10\usbview_VS10.vcxproj
............此处省略74个文件信息
相关资源
- WDK驱动开发微软官方帮助文档
- wdfcoinstaller.msi
- Nt式过滤驱动 keyfilter 键盘过滤驱动源
- Windows Driver Kit 7.1.0 (WDK 7600.16385.1 f
- usbview 的vs2005工程
- DriverStudio3.2补丁DSDDKEnv.zip
- 史上最简单的VS2008+WINDDK驱动开发环境
- NTDDK 文件
- wdk 7600 iso
- 驱动环境搭建必备DDKWizard_helpDDKWizar
- usbview 工具包
- usbviewer.rar
- USBViewer源码
- NTDDK开发包(usb驱动开发相关)
- window DDK/WDK 经典中文帮助文档
- Windows DDK 中文版
- usbview 查看USB 设备描述符
- USBView usb端口查看器
- de4dot-Reactor5.0 By ddk313.rar
- Windbg 10.0.18362.1__win10 1903版 (最新版)
- sdkddkver.h
- Windows Kits v10.0.14393.0
评论
共有 条评论