diff options
| author | Barry Golden <[email protected]> | 2015-08-06 20:06:07 -0700 |
|---|---|---|
| committer | Barry Golden <[email protected]> | 2015-08-06 20:06:07 -0700 |
| commit | 9026073a419b5ef68fb46d4f7fae52dbef09dbe1 (patch) | |
| tree | b81f73f650af9ac82a7e8739e989456f6e192b37 /storage | |
| parent | bd17fd844b4f074821b9d4c7bc86b9dc7f0e4a59 (diff) | |
Remove obsolete readme.htm files
Diffstat (limited to 'storage')
| -rw-r--r-- | storage/class/cdrom/src/cdrom.htm | 86 | ||||
| -rw-r--r-- | storage/class/classpnp/src/classpnp.htm | 273 | ||||
| -rw-r--r-- | storage/class/disk/src/disk.htm | 42 | ||||
| -rw-r--r-- | storage/filters/addfilter/src/addfiltr.htm | 245 | ||||
| -rw-r--r-- | storage/sfloppy/src/sfloppy.htm | 187 | ||||
| -rw-r--r-- | storage/tools/spti/src/spti.htm | bin | 109034 -> 0 bytes |
6 files changed, 0 insertions, 833 deletions
diff --git a/storage/class/cdrom/src/cdrom.htm b/storage/class/cdrom/src/cdrom.htm deleted file mode 100644 index 483d3c85..00000000 --- a/storage/class/cdrom/src/cdrom.htm +++ /dev/null @@ -1,86 +0,0 @@ -<HTML> -<HEAD> -<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=windows-1252"> -<META NAME="Generator" CONTENT="Microsoft Word 97"> -<TITLE>CD ROM</TITLE> -<META NAME="Template" CONTENT="C:\PROGRAM FILES\MICROSOFT OFFICE\OFFICE\html.dot"> -</HEAD> -<BODY TEXT="#000000" LINK="#0000ff" VLINK="#800080" BGCOLOR="#ffffff" leftmargin="8"> -<FONT FACE="Verdana"><H2><A NAME="MYSAMPLE">CD ROM</A> </H2> - -<H3>SUMMARY</H3></FONT><FONT FACE="Verdana" SIZE=2><P> -The CD ROM driver is used to provide access to CD, DVD and Blu-ray drives. It supports Plug and Play, Power Management, and AutoRun (media change notification). It is a 64-bit compliant driver. - -<H3>BUILDING THE SAMPLE</H3></FONT><FONT FACE="Verdana" SIZE=2><P> -To build cdrom.sys, you must first set up the DDK/WDK environment on your host machine. The "Installation and Release Notes" in the Windows 2000/XP/Server 2003/Vista/Server 2008/Windows 7 DDK/WDK has a complete description on how to do this. -<UL> - <LI>Click the <B>Free Build Environment</B> or <B>Checked Build Environment</B> icon under your Windows Driver Kit program group to set basic environment variables need by the build utility.</LI> - <LI>Change to the directory containing the driver source code, such as "cd src\storage\class\cdrom".</LI> - <LI>Build the driver by typing <B>BLD</B>.</LI> -</UL> - -Macro <B>BLD</B> invokes the Microsoft make routines that produce log file called buildxxx_yyy_zzz.log, and also buildxxx_yyy_zzz.wrn and buildxxx_yyy_zzz.err if there are any warnings or errors, where xxx stands for <B>fre</B> or <B>chk</B> depending on the environment chosen, yyy stands for the OS version (W2k, WXP, Wnet or Win7), and zzz stands for platform version (x86, ia64 or amd64). - -<P>If the build succeeds, the driver will be placed in the binary output directory specified for the build environment. You can get the output path from the buildxxx_yyy_zzz.log file. - -<H3>INSTALLATION</H3></FONT><FONT FACE="Verdana" SIZE=2><P> -The in-box CD ROM driver is protected by the system, and thus a normal device driver update attempt through the Device Manager will fail. Users are not encouraged to replace the in-box CD ROM driver. The following work-around is provided in case there is a need, but the users are warned that this may harm the system. -<UL> - <LI>Click the <B>Free Build Environment</B> or <B>Checked Build Environment</B> icon under your Windows Driver Kit program group to set basic environment variables need by the build utility.</LI> - <LI>Change to the directory containing the driver source code, such as "cd src\storage\class\cdrom".</LI> - <LI>Update the "sources" file by changing the "TARGETNAME" from "cdrom" to "mycdrom".</LI> - <LI>Build the driver by typing <B>BLD</B>.</LI> - <LI>Locate the "cdrom.inf" file in the binary output directory, and update the file by replacing all "cdrom.sys" occurrences with "mycdrom.sys".</LI> - <LI>Rename the "cdrom.inf" file to "mycdrom.inf".</LI> - <LI>Copy "mycdrom.sys" and "mycdrom.inf" from the binary output directory to the test machine, if applicable.</LI> - <LI>Launch the Device Manager (by clicking on Windows Start, Run option and typing "devmgmt.msc").</LI> - <LI>Select the appropriate device under the "DVD/CD-ROM drives" category.</LI> - <LI>On the right-click menu, select "Update Driver Software...".</LI> - <LI>Select "Browse my computer for driver software".</LI> - <LI>Select "Let me pick from a list of device drivers on my computer".</LI> - <LI>Click "Have Disk...", and point to the directory that contains "mycdrom.inf" and "mycdrom.sys".</LI> - <LI>Click "Next". If you get a warning dialog about installing unsigned driver, click "Yes".</LI> - <LI>Click "Next" to complete the driver upgrade.</LI> -</UL> - -<B>NOTE:</B> After installation completes successfully, "mycdrom.sys" will be the effective driver for the device, "cdrom.sys" will no longer be used. - -<H3>CODE TOUR</H3> -<H4>File Manifest</H4> -</FONT><U><PRE>File		 Description -</U> - -aacs.c		 The CDROM class driver implementation of handling AACS IOCTLs -autorun.c	 Code for supporting media change detection in the cd/dvd driver -cdrom.c		 Main code base -cdrom.h		 Main header file for cdrom.sys -cdrom.htm	 This file -cdrom.inf	 The CDROM class driver configuration file -cdrom.rc	 Resource file -cdromp.h	 Private header file for cdrom.sys modules -common.c	 Shared private routines for cdrom.sys -data.c		 Global data definitions -guid.c		 GUIDs needed for cdrom.sys -init.c		 Initialization routines for cdrom.sys -ioctl.c		 Ioctl dispatch handlers -ioctl.h		 Ioctl dispatch handlers - header file -makefile	 Makefile -makefile.inc	 Makefile used to generate custom targets required by the module -mmc.c		 All functions related to MMC -mmc.h		 All functions related to MMC - header file -pnppower.c	 Functions to handle PnP and Power IRPs -scratch.c	 Functions for using common scratch buffer -scratch.h	 Functions for using common scratch buffer - header file -sense.c		 Functions needed to accurately determine how to retry requests on CDROM device types -sources		 Macro definitions that are recognized by the Build utility - - -</FONT><P ALIGN="CENTER"><A HREF="#top"><FONT FACE="Verdana" SIZE=2>Top of page</FONT></A><FONT FACE="Verdana" SIZE=2> </P></FONT> -<TABLE CELLSPACING=0 BORDER=0 WIDTH=624> -<TR><TD VALIGN="MIDDLE" BGCOLOR="#00ffff" HEIGHT=2> -<P></TD> -</TR> -</TABLE> - -<FONT FACE="MS Sans Serif" SIZE=1><P>© 2008 Microsoft Corporation</FONT><FONT FACE="Verdana" SIZE=2> </P></FONT></BODY> -</HTML> diff --git a/storage/class/classpnp/src/classpnp.htm b/storage/class/classpnp/src/classpnp.htm deleted file mode 100644 index 4c2b159e..00000000 --- a/storage/class/classpnp/src/classpnp.htm +++ /dev/null @@ -1,273 +0,0 @@ -<html xmlns:v="urn:schemas-microsoft-com:vml" -xmlns:o="urn:schemas-microsoft-com:office:office" -xmlns:w="urn:schemas-microsoft-com:office:word" -xmlns="http://www.w3.org/TR/REC-html40"> - -<head> -<meta http-equiv=Content-Type content="text/html; charset=windows-1252"> -<meta name=ProgId content=Word.Document> -<meta name=Generator content="Microsoft Word 11"> -<meta name=Originator content="Microsoft Word 11"> -<link rel=File-List href="classpnp_files/filelist.xml"> -<title>ClassPnP</title> -<!--[if gte mso 9]><xml> - <w:WordDocument> - <w:Zoom>BestFit</w:Zoom> - <w:SpellingState>Clean</w:SpellingState> - <w:GrammarState>Clean</w:GrammarState> - <w:ValidateAgainstSchemas/> - <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> - <w:IgnoreMixedContent>false</w:IgnoreMixedContent> - <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> - <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> - </w:WordDocument> -</xml><![endif]--><!--[if gte mso 9]><xml> - <w:LatentStyles DefLockedState="false" LatentStyleCount="156"> - </w:LatentStyles> -</xml><![endif]--> -<style> -<!-- - /* Font Definitions */ - @font-face - {font-family:"MS Mincho"; - panose-1:2 2 6 9 4 2 5 8 3 4; - mso-font-alt:"\FF2D\FF33 \660E\671D"; - mso-font-charset:128; - mso-generic-font-family:roman; - mso-font-format:other; - mso-font-pitch:fixed; - mso-font-signature:1 134676480 16 0 131072 0;} -@font-face - {font-family:Verdana; - panose-1:2 11 6 4 3 5 4 4 2 4; - mso-font-alt:Tahoma; - mso-font-charset:0; - mso-generic-font-family:swiss; - mso-font-pitch:variable; - mso-font-signature:536871559 0 0 0 415 0;} -@font-face - {font-family:"MS Sans Serif"; - panose-1:0 0 0 0 0 0 0 0 0 0; - mso-font-alt:"Times New Roman"; - mso-font-charset:0; - mso-generic-font-family:roman; - mso-font-format:other; - mso-font-pitch:auto; - mso-font-signature:0 0 0 0 0 0;} -@font-face - {font-family:"\@MS Mincho"; - mso-font-charset:128; - mso-generic-font-family:modern; - mso-font-pitch:fixed; - mso-font-signature:-1610612033 1757936891 16 0 131231 0;} - /* Style Definitions */ - p.MsoNormal, li.MsoNormal, div.MsoNormal - {mso-style-parent:""; - margin:0in; - margin-bottom:.0001pt; - mso-pagination:widow-orphan; - font-size:12.0pt; - font-family:"Times New Roman"; - mso-fareast-font-family:"MS Mincho"; - color:black;} -h2 - {mso-margin-top-alt:auto; - margin-right:0in; - mso-margin-bottom-alt:auto; - margin-left:0in; - mso-pagination:widow-orphan; - mso-outline-level:2; - font-size:18.0pt; - font-family:"Times New Roman"; - mso-fareast-font-family:"Times New Roman"; - color:black; - font-weight:bold;} -h3 - {mso-margin-top-alt:auto; - margin-right:0in; - mso-margin-bottom-alt:auto; - margin-left:0in; - mso-pagination:widow-orphan; - mso-outline-level:3; - font-size:13.5pt; - font-family:"Times New Roman"; - mso-fareast-font-family:"Times New Roman"; - color:black; - font-weight:bold;} -h4 - {mso-margin-top-alt:auto; - margin-right:0in; - mso-margin-bottom-alt:auto; - margin-left:0in; - mso-pagination:widow-orphan; - mso-outline-level:4; - font-size:12.0pt; - font-family:"Times New Roman"; - mso-fareast-font-family:"Times New Roman"; - color:black; - font-weight:bold;} -a:link, span.MsoHyperlink - {color:blue; - text-decoration:underline; - text-underline:single;} -a:visited, span.MsoHyperlinkFollowed - {color:purple; - text-decoration:underline; - text-underline:single;} -p - {mso-margin-top-alt:auto; - margin-right:0in; - mso-margin-bottom-alt:auto; - margin-left:0in; - mso-pagination:widow-orphan; - font-size:12.0pt; - font-family:"Times New Roman"; - mso-fareast-font-family:"MS Mincho"; - color:black;} -pre - {margin:0in; - margin-bottom:.0001pt; - mso-pagination:widow-orphan; - tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt; - font-size:10.0pt; - font-family:"Courier New"; - mso-fareast-font-family:"MS Mincho"; - color:black;} -span.SpellE - {mso-style-name:""; - mso-spl-e:yes;} -span.GramE - {mso-style-name:""; - mso-gram-e:yes;} -@page Section1 - {size:8.5in 11.0in; - margin:1.0in 1.25in 1.0in 1.25in; - mso-header-margin:.5in; - mso-footer-margin:.5in; - mso-paper-source:0;} -div.Section1 - {page:Section1;} ---> -</style> -<!--[if gte mso 10]> -<style> - /* Style Definitions */ - table.MsoNormalTable - {mso-style-name:"Table Normal"; - mso-tstyle-rowband-size:0; - mso-tstyle-colband-size:0; - mso-style-noshow:yes; - mso-style-parent:""; - mso-padding-alt:0in 5.4pt 0in 5.4pt; - mso-para-margin:0in; - mso-para-margin-bottom:.0001pt; - mso-pagination:widow-orphan; - font-size:10.0pt; - font-family:"Times New Roman"; - mso-ansi-language:#0400; - mso-fareast-language:#0400; - mso-bidi-language:#0400;} -</style> -<![endif]--> -<meta name=Template content="C:\PROGRAM FILES\MICROSOFT OFFICE\OFFICE\html.dot"> -<!--[if gte mso 9]><xml> - <o:shapedefaults v:ext="edit" spidmax="3074"/> -</xml><![endif]--><!--[if gte mso 9]><xml> - <o:shapelayout v:ext="edit"> - <o:idmap v:ext="edit" data="1"/> - </o:shapelayout></xml><![endif]--> -</head> - -<body bgcolor=white lang=EN-US link=blue vlink=purple style='tab-interval:.5in' -leftmargin=8> - -<div class=Section1> - -<h2><a name=classpnp></a><span class=SpellE><span style='mso-bookmark:classpnp'><span -style='font-family:Verdana'>ClassPnP</span></span></span><span -style='mso-bookmark:classpnp'></span><span style='font-family:Verdana'> <o:p></o:p></span></h2> - -<h3><span style='font-family:Verdana'>Summary<o:p></o:p></span></h3> - -<p><span style='font-size:10.0pt;font-family:Verdana'>This is the library for -all storage drivers. It simplifies writing a storage driver by implementing 90 percent -of the code required to support Plug and Play, Power Management, et cetera. -This library is used by <span class=SpellE>disk.sys</span>, <span class=SpellE>cdrom.sys</span> -and the tape class drivers.<o:p></o:p></span></p> - -<p><span style='font-size:10.0pt;font-family:Verdana'>No INF file is needed to -install this library. The library is 64-bit compliant.<o:p></o:p></span></p> - -<h3><span style='font-family:Verdana'>Building the Sample<o:p></o:p></span></h3> - -<p><span style='font-size:10.0pt;font-family:Verdana'>To build the sample, run <b>build</b>. -Once built, one binary will be created: <span class=SpellE>classpnp.sys</span>. -This sample is based on live source code, and only builds in the current OS -build environment.<span style='mso-spacerun:yes'>� </span><o:p></o:p></span></p> - -<h3><span style='font-family:Verdana'>CODE TOUR<o:p></o:p></span></h3> - -<h4><span style='font-family:Verdana'>File Manifest<o:p></o:p></span></h4> - -<pre><u>File<span style='mso-tab-count:3'>������������������ </span>Description<o:p></o:p></u></pre><pre><o:p> </o:p></pre><pre><span -class=SpellE>Autorun.c</span><span style='mso-tab-count:2'>������������� </span>Media change notification (MCN) code</pre><pre><span -class=SpellE>Class.c</span><span style='mso-tab-count:2'>������� </span><span -style='mso-tab-count:1'>������� </span>Main code base</pre><pre><span -class=SpellE>Class.rc</span><span style='mso-tab-count:2'>�������������� </span>Resource file</pre><pre><span -class=SpellE>Class.src</span><span style='mso-tab-count:2'>������������� </span>Exports</pre><pre><span -class=SpellE>Classp.h</span><span style='mso-tab-count:2'>�������������� </span>Private <span -class=GramE>header</span></pre><pre><span class=SpellE>Classwmi.c</span><span -style='mso-tab-count:2'>������������ </span>WMI functionality</pre><pre><span -class=SpellE>Clntirp.c</span><span style='mso-tab-count:2'>������������� </span>Client IRP queuing code</pre><pre><span -class=SpellE>Create.c</span><span style='mso-tab-count:2'>�������������� </span>Create IRP code</pre><pre><span -class=SpellE>Data.c</span><span style='mso-tab-count:2'>�������� </span><span -style='mso-tab-count:1'>������� </span>Static driver data</pre><pre><span -class=SpellE>Debug.c</span><span style='mso-tab-count:2'>������� </span><span -style='mso-tab-count:1'>������� </span>Debug code and data</pre><pre><span -class=SpellE>Debug.h</span><span style='mso-tab-count:2'>������� </span><span -style='mso-tab-count:1'>������� </span>Debug header file</pre><pre><span -class=SpellE>Dictlib.c</span><span style='mso-tab-count:2'>������������� </span>File system dictionary code</pre><pre><span -class=SpellE>Lock.c</span><span style='mso-tab-count:2'>�������� </span><span -style='mso-tab-count:1'>������� </span>Storage <span class=GramE>remove</span> lock implementation</pre><pre><span -class=SpellE>Makefile</span><span style='mso-tab-count:2'>�������������� </span><span -class=SpellE>Makefile</span></pre><pre><span class=SpellE>Obsolete.c</span><span -style='mso-tab-count:2'>������������ </span>Obsolete code used by legacy drivers</pre><pre><span -class=SpellE>Power.c</span><span style='mso-tab-count:2'>������� </span><span -style='mso-tab-count:1'>������� </span>Power code</pre><pre><span class=SpellE>Retry.c</span><span -style='mso-tab-count:2'>������� </span><span style='mso-tab-count:1'>������� </span>Transfer <span -class=GramE>packet retry</span> code</pre><pre>Sources<span style='mso-tab-count: -2'>������� </span><span style='mso-tab-count:1'>������� </span>Sources file</pre><pre><span -class=SpellE>Utils.c</span><span style='mso-tab-count:2'>������� </span><span -style='mso-tab-count:1'>������� </span>Utility code</pre><pre><span -class=SpellE>Xferpkt.c</span><span style='mso-tab-count:2'>������������� </span>Transfer packet processing code</pre><pre><o:p> </o:p></pre><pre><o:p> </o:p></pre> - -<p align=center style='text-align:center;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><span -style='font-size:10.0pt;font-family:"Courier New"'><a href="#top"><span -style='font-family:Verdana'>Top of page</span></a></span><span -style='font-size:10.0pt;font-family:Verdana;mso-bidi-font-family:"Courier New"'> -<o:p></o:p></span></p> - -<pre><o:p> </o:p></pre> - -<table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0 width=624 - style='width:6.5in;mso-cellspacing:0in;mso-padding-alt:0in 5.4pt 0in 5.4pt'> - <tr style='mso-yfti-irow:0;mso-yfti-firstrow:yes;mso-yfti-lastrow:yes; - height:1.5pt'> - <td style='background:aqua;padding:.75pt .75pt .75pt .75pt;height:1.5pt'> - <p class=MsoNormal><o:p> </o:p></p> - </td> - </tr> -</table> - -<pre><o:p> </o:p></pre><pre><o:p> </o:p></pre> - -<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><span -style='font-size:7.5pt;font-family:"MS Sans Serif";mso-bidi-font-family:"Courier New"'>� -2004 Microsoft Corporation</span><span style='font-size:10.0pt;font-family: -Verdana;mso-bidi-font-family:"Courier New"'> <o:p></o:p></span></p> - -</div> - -</body> - -</html> diff --git a/storage/class/disk/src/disk.htm b/storage/class/disk/src/disk.htm deleted file mode 100644 index bb77f1fd..00000000 --- a/storage/class/disk/src/disk.htm +++ /dev/null @@ -1,42 +0,0 @@ -<HTML> -<HEAD> -<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=windows-1252"> -<META NAME="Generator" CONTENT="Microsoft Word 97"> -<TITLE>Disk</TITLE> -<META NAME="Template" CONTENT="C:\PROGRAM FILES\MICROSOFT OFFICE\OFFICE\html.dot"> -</HEAD> -<BODY TEXT="#000000" LINK="#0000ff" VLINK="#800080" BGCOLOR="#ffffff" leftmargin="8"> -<FONT FACE="Verdana"><H2><A NAME="disk">Disk</A> </H2> - -<H3>Summary</H3></FONT><FONT FACE="Verdana" SIZE=2><P> -The Disk sample is used with Classpnp.sys as disk driver. The sample supports Plug and Play, Power Management, WMI, and failure prediction (S.M.A.R.T.), and it is 64-bit compliant. - -<H3>Building the Sample</H3></FONT><FONT FACE="Verdana" SIZE=2><P> -To build the sample, run the <b>build</B> command. Once built, this sample will create one binary: Disk.sys. - -<H3>CODE TOUR</H3> -<H4>File Manifest</H4> -</FONT><U><PRE>File		 Description -</U> -Data.c	 List of workarounds for some drives (no code) -Disk.c	 Main code base -Disk.h	 Private header files -Disk.rc	 Resource file -Diskwmi.c	 S.M.A.R.T. WMI implementation -Drivesup.c	 No longer used -Drivesup.h	 No longer used -Enum.c	 Enumeration routines for disk drives -Makefile	 Makefile -Pnp.c	 Start/add/pnp code -Sources	 Sources - - -</FONT><P ALIGN="CENTER"><A HREF="#top"><FONT FACE="Verdana" SIZE=2>Top of page</FONT></A><FONT FACE="Verdana" SIZE=2> </P></FONT> -<TABLE CELLSPACING=0 BORDER=0 WIDTH=624> -<TR><TD VALIGN="MIDDLE" BGCOLOR="#00ffff" HEIGHT=2> -<P></TD> -</TR> -</TABLE> - -<FONT FACE="MS Sans Serif" SIZE=1><P>© 1999 Microsoft Corporation</FONT><FONT FACE="Verdana" SIZE=2> </P></FONT></BODY> -</HTML> diff --git a/storage/filters/addfilter/src/addfiltr.htm b/storage/filters/addfilter/src/addfiltr.htm deleted file mode 100644 index c5a6d676..00000000 --- a/storage/filters/addfilter/src/addfiltr.htm +++ /dev/null @@ -1,245 +0,0 @@ -<html xmlns:o="urn:schemas-microsoft-com:office:office" -xmlns:w="urn:schemas-microsoft-com:office:word" -xmlns="http://www.w3.org/TR/REC-html40"> - -<head> -<meta http-equiv=Content-Type content="text/html; charset=us-ascii"> -<meta name=ProgId content=Word.Document> -<meta name=Generator content="Microsoft Word 11"> -<meta name=Originator content="Microsoft Word 11"> -<link rel=File-List href="addfiltr_files/filelist.xml"> -<title>Addfilter </title> -<!--[if gte mso 9]><xml> - <w:WordDocument> - <w:Zoom>BestFit</w:Zoom> - <w:SpellingState>Clean</w:SpellingState> - <w:GrammarState>Clean</w:GrammarState> - <w:ValidateAgainstSchemas/> - <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> - <w:IgnoreMixedContent>false</w:IgnoreMixedContent> - <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> - <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> - </w:WordDocument> -</xml><![endif]--><!--[if gte mso 9]><xml> - <w:LatentStyles DefLockedState="false" LatentStyleCount="156"> - </w:LatentStyles> -</xml><![endif]--> -<style> -<!-- - /* Font Definitions */ - @font-face - {font-family:Verdana; - panose-1:2 11 6 4 3 5 4 4 2 4; - mso-font-alt:Tahoma; - mso-font-charset:0; - mso-generic-font-family:swiss; - mso-font-pitch:variable; - mso-font-signature:536871559 0 0 0 415 0;} -@font-face - {font-family:"MS Sans Serif"; - panose-1:0 0 0 0 0 0 0 0 0 0; - mso-font-alt:"Times New Roman"; - mso-font-charset:0; - mso-generic-font-family:roman; - mso-font-format:other; - mso-font-pitch:auto; - mso-font-signature:0 0 0 0 0 0;} - /* Style Definitions */ - p.MsoNormal, li.MsoNormal, div.MsoNormal - {mso-style-parent:""; - margin:0in; - margin-bottom:.0001pt; - mso-pagination:widow-orphan; - font-size:12.0pt; - font-family:"Times New Roman"; - mso-fareast-font-family:"Times New Roman";} -a:link, span.MsoHyperlink - {color:blue; - text-decoration:underline; - text-underline:single;} -a:visited, span.MsoHyperlinkFollowed - {color:blue; - text-decoration:underline; - text-underline:single;} -p - {mso-margin-top-alt:auto; - margin-right:0in; - mso-margin-bottom-alt:auto; - margin-left:0in; - mso-pagination:widow-orphan; - font-size:12.0pt; - font-family:"Times New Roman"; - mso-fareast-font-family:"Times New Roman";} -pre - {margin:0in; - margin-bottom:.0001pt; - mso-pagination:widow-orphan; - tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt; - font-size:10.0pt; - font-family:"Courier New"; - mso-fareast-font-family:"Times New Roman";} -span.SpellE - {mso-style-name:""; - mso-spl-e:yes;} -span.GramE - {mso-style-name:""; - mso-gram-e:yes;} -@page Section1 - {size:8.5in 11.0in; - margin:1.0in 1.25in 1.0in 1.25in; - mso-header-margin:.5in; - mso-footer-margin:.5in; - mso-paper-source:0;} -div.Section1 - {page:Section1;} ---> -</style> -<!--[if gte mso 10]> -<style> - /* Style Definitions */ - table.MsoNormalTable - {mso-style-name:"Table Normal"; - mso-tstyle-rowband-size:0; - mso-tstyle-colband-size:0; - mso-style-noshow:yes; - mso-style-parent:""; - mso-padding-alt:0in 5.4pt 0in 5.4pt; - mso-para-margin:0in; - mso-para-margin-bottom:.0001pt; - mso-pagination:widow-orphan; - font-size:10.0pt; - font-family:"Times New Roman"; - mso-ansi-language:#0400; - mso-fareast-language:#0400; - mso-bidi-language:#0400;} -</style> -<![endif]--> -</head> - -<body lang=EN-US link=blue vlink=blue style='tab-interval:.5in'> - -<div class=Section1> - -<h2><span class=SpellE><span style='font-family:Verdana'>Addfilter</span></span><span -style='font-family:Verdana'> <o:p></o:p></span></h2> - -<h3><span style='font-family:Verdana'>SUMMARY<o:p></o:p></span></h3> - -<p><span class=SpellE><span style='font-size:10.0pt;font-family:Verdana'>Addfilter</span></span><span -style='font-size:10.0pt;font-family:Verdana'> is a command-line application which -adds and removes filter drivers for a given drive or volume. It is intended to -demonstrate how to insert a filter driver into the driver stack of a device. -The sample illustrates how to do this by using the <span class=SpellE>SetupDi</span> -APIs. The sample works on the <span class=GramE>x86 platform</span>. It has -only been tested in a 32-bit environment. Since <span class=SpellE>Addfilter</span> -is not a driver, it does not deal with Plug and Play or Power Management. <o:p></o:p></span></p> - -<p><span style='font-size:10.0pt;font-family:Verdana'>No INF file is needed to -install this application. <o:p></o:p></span></p> - -<h3><span style='font-family:Verdana'>BUILDING THE SAMPLE<o:p></o:p></span></h3> - -<p><span style='font-size:10.0pt;font-family:Verdana'>Enter the checked or free -build environment. Then, while in the <span class=SpellE>Addfilter</span> -sample directory, type <b>build</b>. A successful build produces the executable -Addfilter.exe. <o:p></o:p></span></p> - -<h3><span style='font-family:Verdana'>RELEASE NOTES<o:p></o:p></span></h3> - -<p><span style='font-size:10.0pt;font-family:Verdana'>1. This initial sample -does not check the filter for validity before it is added to the driver stack. -If an invalid filter is added, the specified device may no longer be -accessible. <o:p></o:p></span></p> - -<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'> - -<p class=MsoNormal><b><span style='font-size:10.0pt;font-family:Verdana'>Important:</span></b><span -style='font-size:10.0pt;font-family:Verdana'> If you attempt to add a -non-existent filter to a boot device and then reboot, the system may show the -error message INACCESSIBLE_BOOT_DEVICE. If this happens, you will be unable to -start the computer. To fix this, when the boot menu is displayed at startup, go -to the Advanced Options screen and select <b>Use Last Known Good Profile</b>. <o:p></o:p></span></p> - -</blockquote> - -<p><span style='font-size:10.0pt;font-family:Verdana'>If you attempt to add a -non-existent filter to a normal (non-boot) device (CD drive, floppy drive, -etc.), you will need to go into the Device Manager, uninstall the device, -reboot, and re-add the device from Add Hardware. Also, be careful not to add a -filter to a driver with which it is not designed to operate. Unpredictable -results may ensue. <o:p></o:p></span></p> - -<p><span style='font-size:10.0pt;font-family:Verdana'>2. The sample is intended -for use with upper filter drivers only. <o:p></o:p></span></p> - -<p><span style='font-size:10.0pt;font-family:Verdana'>3. When you add a filter -to a device, that device needs to be restarted. Depending on the device, this -may necessitate restarting your computer. The <span class=SpellE><b>RestartDevice</b></span> -function (in <span class=SpellE>Addfilter.c</span>) stops the specified device -and then restarts it. If the device has been stopped but not restarted, and the -machine is restarted, the reboot will not necessarily restart the device. You -will need to call the <span class=SpellE><b>RestartDevice</b></span> function -to restart your device. <o:p></o:p></span></p> - -<p><span style='font-size:10.0pt;font-family:Verdana'>4. Since the sample -currently enumerates only disk devices, the sample can only operate on devices -of this class. One way in which you could extend this sample code is by adding -another command-line argument that handles other device types. <o:p></o:p></span></p> - -<p><span style='font-size:10.0pt;font-family:Verdana'>5. The sample runs in -user mode only. <o:p></o:p></span></p> - -<p><b><span style='font-size:10.0pt;font-family:Verdana'>Usage:</span></b><span -style='font-size:10.0pt;font-family:Verdana'> <span class=SpellE>addfilter</span> -[/<span class=SpellE>listdevices</span>] [/device <span class=SpellE>device_name</span>] -[/add filter] [/remove filter] <o:p></o:p></span></p> - -<p><span style='font-size:10.0pt;font-family:Verdana'>If the device name is not -supplied, settings will apply to all devices. <o:p></o:p></span></p> - -<p><span style='font-size:10.0pt;font-family:Verdana'>If there is no /add or -/remove argument, a list of currently installed drivers will be printed. <o:p></o:p></span></p> - -<h3><span style='font-family:Verdana'>CODE TOUR<o:p></o:p></span></h3> - -<h4><span style='font-family:Verdana'>File Manifest<o:p></o:p></span></h4> - -<pre><u>File<span style='mso-tab-count:2'> </span>Description<o:p></o:p></u></pre><pre><o:p> </o:p></pre><pre><span -class=SpellE>Addfilter.c</span><span style='mso-tab-count:1'> </span>Main source file</pre><pre><span -class=SpellE>Addfilter.rc</span><span style='mso-tab-count:1'> </span>Version resource file</pre><pre>Sources<span -style='mso-tab-count:2'> </span>Sources file</pre><pre><span -class=SpellE>Makefile</span><span style='mso-tab-count:1'> </span><span -class=SpellE>Makefile</span></pre><pre><o:p> </o:p></pre><pre><o:p> </o:p></pre> - -<p align=center style='text-align:center;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><span -style='font-size:10.0pt;font-family:"Courier New"'><a href="#top"><span -style='font-family:Verdana'>Top of page</span></a></span><span -style='font-size:10.0pt;font-family:Verdana;mso-bidi-font-family:"Courier New"'> -<o:p></o:p></span></p> - -<pre><o:p> </o:p></pre> - -<table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0 width=624 - style='width:6.5in;mso-cellspacing:0in;mso-padding-alt:0in 5.4pt 0in 5.4pt'> - <tr style='mso-yfti-irow:0;mso-yfti-firstrow:yes;mso-yfti-lastrow:yes; - height:1.5pt'> - <td style='background:aqua;padding:.75pt .75pt .75pt .75pt;height:1.5pt'> - <p class=MsoNormal><o:p> </o:p></p> - </td> - </tr> -</table> - -<pre><o:p> </o:p></pre><pre><o:p> </o:p></pre> - -<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><span -style='font-size:7.5pt;font-family:"MS Sans Serif";mso-bidi-font-family:"Courier New"'>© -2004</span><span style='font-size:10.0pt;font-family:Verdana;mso-bidi-font-family: -"Courier New"'> </span><span style='font-size:7.5pt;font-family:"MS Sans Serif"; -mso-bidi-font-family:"Courier New"'>Microsoft Corporation </span><span -style='font-size:10.0pt;font-family:Verdana;mso-bidi-font-family:"Courier New"'><o:p></o:p></span></p> - -</div> - -</body> - -</html> diff --git a/storage/sfloppy/src/sfloppy.htm b/storage/sfloppy/src/sfloppy.htm deleted file mode 100644 index d46a7567..00000000 --- a/storage/sfloppy/src/sfloppy.htm +++ /dev/null @@ -1,187 +0,0 @@ -<html xmlns:o="urn:schemas-microsoft-com:office:office" -xmlns:w="urn:schemas-microsoft-com:office:word" -xmlns="http://www.w3.org/TR/REC-html40"> - -<head> -<meta http-equiv=Content-Type content="text/html; charset=us-ascii"> -<meta name=ProgId content=Word.Document> -<meta name=Generator content="Microsoft Word 11"> -<meta name=Originator content="Microsoft Word 11"> -<link rel=File-List href="sfloppy_files/filelist.xml"> -<title>SFloppy</title> -<!--[if gte mso 9]><xml> - <w:WordDocument> - <w:SpellingState>Clean</w:SpellingState> - <w:GrammarState>Clean</w:GrammarState> - <w:ValidateAgainstSchemas/> - <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> - <w:IgnoreMixedContent>false</w:IgnoreMixedContent> - <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> - <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> - </w:WordDocument> -</xml><![endif]--><!--[if gte mso 9]><xml> - <w:LatentStyles DefLockedState="false" LatentStyleCount="156"> - </w:LatentStyles> -</xml><![endif]--> -<style> -<!-- - /* Font Definitions */ - @font-face - {font-family:Verdana; - panose-1:2 11 6 4 3 5 4 4 2 4; - mso-font-charset:0; - mso-generic-font-family:swiss; - mso-font-pitch:variable; - mso-font-signature:536871559 0 0 0 415 0;} -@font-face - {font-family:"MS Sans Serif"; - panose-1:0 0 0 0 0 0 0 0 0 0; - mso-font-alt:"Times New Roman"; - mso-font-charset:0; - mso-generic-font-family:roman; - mso-font-format:other; - mso-font-pitch:auto; - mso-font-signature:0 0 0 0 0 0;} - /* Style Definitions */ - p.MsoNormal, li.MsoNormal, div.MsoNormal - {mso-style-parent:""; - margin:0in; - margin-bottom:.0001pt; - mso-pagination:widow-orphan; - font-size:12.0pt; - font-family:"Times New Roman"; - mso-fareast-font-family:"Times New Roman";} -h1 - {mso-style-next:Normal; - margin-top:12.0pt; - margin-right:0in; - margin-bottom:3.0pt; - margin-left:0in; - mso-pagination:widow-orphan; - page-break-after:avoid; - mso-outline-level:1; - font-size:16.0pt; - font-family:Arial; - mso-font-kerning:16.0pt; - font-weight:bold;} -a:link, span.MsoHyperlink - {color:blue; - text-decoration:underline; - text-underline:single;} -p - {font-size:12.0pt; - font-family:"Times New Roman"; - mso-fareast-font-family:"Times New Roman";} -pre - {margin-top:0in; - margin-bottom:0in; - margin-bottom:.0001pt; - font-size:10.0pt; - font-family:"Courier New"; - mso-fareast-font-family:"Times New Roman";} -span.SpellE - {mso-style-name:""; - mso-spl-e:yes;} -span.GramE - {mso-style-name:""; - mso-gram-e:yes;} -@page Section1 - {size:8.5in 11.0in; - margin:1.0in 1.25in 1.0in 1.25in; - mso-header-margin:.5in; - mso-footer-margin:.5in; - mso-paper-source:0;} -div.Section1 - {page:Section1;} ---> -</style> -<!--[if gte mso 10]> -<style> - /* Style Definitions */ - table.MsoNormalTable - {mso-style-name:"Table Normal"; - mso-tstyle-rowband-size:0; - mso-tstyle-colband-size:0; - mso-style-noshow:yes; - mso-style-parent:""; - mso-padding-alt:0in 5.4pt 0in 5.4pt; - mso-para-margin:0in; - mso-para-margin-bottom:.0001pt; - mso-pagination:widow-orphan; - font-size:10.0pt; - font-family:"Times New Roman"; - mso-ansi-language:#0400; - mso-fareast-language:#0400; - mso-bidi-language:#0400;} -</style> -<![endif]--> -</head> - -<body lang=EN-US link=blue vlink=blue style='tab-interval:.5in'> - -<div class=Section1> - -<h1><span class=SpellE><span style='font-size:20.0pt'>Sfloppy</span></span><span -style='font-size:20.0pt'><o:p></o:p></span></h1> - -<h3><span style='font-family:Verdana'>SUMMARY<o:p></o:p></span></h3> - -<p><span style='font-size:10.0pt;font-family:Verdana'>The <span class=SpellE>sfloppy</span> -sample is a super floppy driver that resides in the directory -\\Ntddk\Src\Storage\sfloppy. It is a class driver for Super Floppy disk drives. -It sits a level above the port driver (ATAPI, USB, etc) in the driver stack, -and brokers communication between the application level and the port driver. -The floppy driver takes requests from <span class=SpellE>filesystem</span> -drivers and then sends the appropriate SCSI_REQUEST_BLOCK (SRB) to the port -driver. It is compatible with x86 and IA64 platforms.<o:p></o:p></span></p> - -<h3><span style='font-family:Verdana'>BUILDING THE SAMPLE<o:p></o:p></span></h3> - -<p><span class=GramE><span style='font-size:10.0pt;font-family:Verdana'>Type <b>build</b></span></span><span -style='font-size:10.0pt;font-family:Verdana'> in the -\\Ntddk\Src\Storage\Sfloppy directory. A successful build produces <span -class=SpellE>sfloppy.sys</span> <o:p></o:p></span></p> - -<h3><span style='font-family:Verdana'>CODE TOUR<o:p></o:p></span></h3> - -<h4><span style='font-family:Verdana'>File Manifest<o:p></o:p></span></h4> - -<pre><u>File<span style='mso-tab-count:2'> </span>Description<o:p></o:p></u></pre><pre><o:p> </o:p></pre><pre><span -class=SpellE>Floppy.c</span><span style='mso-tab-count:1'> </span>Super Floppy diskette driver<span style='mso-spacerun:yes'> </span></pre><pre><span -class=SpellE>SFloppy.rc</span><span style='mso-tab-count:1'> </span>Resource file</pre><pre>Sources<span -style='mso-tab-count:2'> </span>Sources for build</pre><pre><span -class=SpellE>Sfloppy.inf</span><span style='mso-tab-count:1'> </span>INF file super floppy driver</pre> - -<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><span -style='font-size:10.0pt;font-family:"Courier New"'><o:p> </o:p></span></p> - -<p align=center style='text-align:center;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><span -style='font-size:10.0pt;font-family:"Courier New"'><a href="#top"><span -style='font-family:Verdana'>Top of page</span></a></span><span -style='font-size:10.0pt;font-family:Verdana;mso-bidi-font-family:"Courier New"'> -<o:p></o:p></span></p> - -<pre><o:p> </o:p></pre> - -<table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0 width=624 - style='width:6.5in;mso-cellspacing:0in'> - <tr style='mso-yfti-irow:0;mso-yfti-firstrow:yes;mso-yfti-lastrow:yes; - height:1.5pt'> - <td style='background:aqua;padding:.75pt .75pt .75pt .75pt;height:1.5pt'> - <p class=MsoNormal><o:p> </o:p></p> - </td> - </tr> -</table> - -<pre><o:p> </o:p></pre><pre><o:p> </o:p></pre> - -<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><span -style='font-size:7.5pt;font-family:"MS Sans Serif";mso-bidi-font-family:"Courier New"'>© -2004 Microsoft Corporation</span><span style='font-size:10.0pt;font-family: -Verdana;mso-bidi-font-family:"Courier New"'> <o:p></o:p></span></p> - -</div> - -</body> - -</html> diff --git a/storage/tools/spti/src/spti.htm b/storage/tools/spti/src/spti.htm Binary files differdeleted file mode 100644 index 17da4a11..00000000 --- a/storage/tools/spti/src/spti.htm +++ /dev/null |
