一个在Windows环境下允许用户程序访问USB设备的接口库的源代码.

源代码在线查看: debug.c

软件大小: 67 K
上传用户: hudun2006
关键词: Windows USB 环境 接口
下载地址: 免注册下载 普通下载 VIP

相关代码

				#include "libusb_filter.h"								#include 				#include 				#include 																#define DEBUG_BUFFER_SIZE 1024								static int debug_level = DEBUG_MSG;								void debug_print_nl(void)				{				  if(debug_level) KdPrint((" "));				}								void debug_set_level(int level)				{				  debug_level = level;				}								void debug_printf(int level, char *format, ...)				 {				  char tmp[DEBUG_BUFFER_SIZE];				  va_list args;								  if(level 				    {				      va_start(args, format);				      vsprintf(tmp, format, args);				      va_end(args);				      KdPrint(("LIBUSB_FILTER - %s\n", tmp));				    }				}							

相关资源