-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6a38d5e
commit 9fa85c5
Showing
7 changed files
with
6,177 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
############################################################################# | ||
# | ||
# Microsoft Confidential | ||
# Copyright (C) Microsoft Corporation 1995 | ||
# All Rights Reserved. | ||
# | ||
# MAKEFILE for WDM device driver kit | ||
# | ||
############################################################################# | ||
|
||
# | ||
# DO NOT EDIT THIS FILE!!! Edit .\sources. if you want to add a new source | ||
# file to this component. This file merely indirects to the real make file | ||
# that is shared by all the driver components of the Windows NT DDK | ||
# | ||
|
||
!INCLUDE $(NTMAKEENV)\makefile.def | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
#**************************************************************** | ||
#* | ||
#* File: Sources | ||
#* | ||
#* build information file for the WDM build.exe utility | ||
#* | ||
#* Date: February 12, 1999 | ||
#* Version: 1.00.00 | ||
#* | ||
#* Notes: | ||
#* Copyright (c) 1997,1998,1999 Anchor Chips, Inc. May not be reproduced without | ||
#* permission. See the license agreement for more details. | ||
#* | ||
#* Environment: | ||
#* WDM Build utility information file | ||
#* | ||
#* Revision History: | ||
#* | ||
#**************************************************************** | ||
|
||
TARGETNAME=ezusb | ||
TARGETTYPE=DRIVER | ||
TARGETPATH=.\LIB | ||
DRIVERTYPE=WDM | ||
|
||
|
||
INCLUDES=$(BASEDIR)\inc; \ | ||
$(BASEDIR)\src\usb\inc; \ | ||
$(BASEDIR)\src\wdm\usb\inc; \ | ||
..\..\inc | ||
|
||
C_DEFINES=$(C_DEFINES) /DDRIVER | ||
|
||
#TARGETLIBS=$(BASEDIR)\lib\*\free\usbd.lib | ||
|
||
# to build this driver using the Windows 2000 DDK, uncomment the following line: | ||
TARGETLIBS=$(DDK_LIB_PATH)\usbd.lib | ||
|
||
USE_MAPSYM=1 | ||
|
||
SOURCES= ezusbsys.rc \ | ||
ezusbsys.c | ||
|
||
#SOURCES = ezusbsys.c |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
#ifndef VERSION_INCLUDED | ||
#define VERSION_INCLUDED | ||
|
||
////////////////////////////////////////////////////////////////////// | ||
// | ||
// File: version.h | ||
// $Archive: /USB/Drivers/ezusbdrv/Version.h $ | ||
// | ||
// Purpose: | ||
// Version information header file for EZ-USB General Purpose Driver | ||
// | ||
// Environment: | ||
// kernel mode | ||
// | ||
// $Author: Tpm $ | ||
// | ||
// | ||
// Copyright (c) 1997 Anchor Chips, Inc. May not be reproduced without | ||
// permission. See the license agreement for more details. | ||
// | ||
////////////////////////////////////////////////////////////////////// | ||
|
||
// | ||
// Make sure to keep these in sync with the version | ||
// information in ezusbsys.rc | ||
// | ||
#define EZUSB_MAJOR_VERSION 01 | ||
#define EZUSB_MINOR_VERSION 01 | ||
#define EZUSB_BUILD_VERSION 0000 | ||
|
||
#endif // VERSION_INCLUDED | ||
|
Oops, something went wrong.