summaryrefslogtreecommitdiff
path: root/serial/VirtualSerial2/ReadMe.md
diff options
context:
space:
mode:
authorJ M Rossy <[email protected]>2015-07-29 15:40:09 -0700
committerJ M Rossy <[email protected]>2015-07-29 16:34:40 -0700
commit5d61a4a79a1e96dc5d9af1e5e712c84507307544 (patch)
tree49ed270893578cd18758b74ffcca16dc7ab948d6 /serial/VirtualSerial2/ReadMe.md
parent5d41613e26e147d2300c786bb2b34cb4b4067a25 (diff)
Samples update for public Windows 10 release
Fix #2 Enabling WPP Recorder in Sensors Samples causes errors Fix #4 Add back fixed KMDOD sample Add new BarcodeScanner sample in pos folder Add new MagneticStripeReader sample in pos folder Add new SynpaticsTouch sample in input folder Add new Power Engine Plugin sample in pofx folder Add new DeviceMft sample in avstream folder Add new AvsCamera sample in root Add new SimBatt sample in root Add other pre-existing samples not yet released for Win10
Diffstat (limited to 'serial/VirtualSerial2/ReadMe.md')
-rw-r--r--serial/VirtualSerial2/ReadMe.md33
1 files changed, 9 insertions, 24 deletions
diff --git a/serial/VirtualSerial2/ReadMe.md b/serial/VirtualSerial2/ReadMe.md
index 2b1bc513..3c5baf78 100644
--- a/serial/VirtualSerial2/ReadMe.md
+++ b/serial/VirtualSerial2/ReadMe.md
@@ -13,47 +13,32 @@ For more information, see [Serial Controller and Device Drivers](http://msdn.mic
Code tour
---------
-File manifest
-
-Description
-
-comsup.cpp & comsup.h
-
+#### comsup.cpp & comsup.h
COM Support code - specifically base classes which provide implementations for the standard COM interfaces **IUnknown** and **IClassFactory** which are used throughout the sample.
-
The implementation of **IClassFactory** is designed to create instances of the CMyDriver class. If you should change the name of your base driver class, you would also need to modify this file.
-dllsup.cpp
-
+#### dllsup.cpp
DLL Support code - provides the DLL's entry point as well as the single required export (**DllGetClassObject**).
-
These depend on comsup.cpp to perform the necessary class creation.
-exports.def
-
+#### exports.def
This file lists the functions that the driver DLL exports.
-internal.h
-
+#### internal.h
This is the main header file for the sample driver.
-driver.cpp & driver.h
-
+#### driver.cpp & driver.h
Definition and implementation of the driver callback class (CMyDriver) for the sample. This includes **DriverEntry** and events on the framework driver object.
-device.cpp & driver.h
-
+#### device.cpp & driver.h
Definition and implementation of the device callback class (CMyDriver) for the sample. This includes events on the framework device object.
-queue.cpp & queue.h
-
+#### queue.cpp & queue.h
Definition and implementation of the base queue callback class (CMyQueue). This includes events on the framework I/O queue object.
-VirtualSerial.rc /FakeModem.rc
-
+#### VirtualSerial.rc /FakeModem.rc
This file defines resource information for the sample driver.
-VirtualSerial.inf / FakeModem.inf
-
+#### VirtualSerial.inf / FakeModem.inf
INF file that contains installation information for this driver.