├── README.md ├── StartSamples.htm ├── Touch ├── MTGestures │ ├── CS │ │ ├── AssemblyInfo.cs │ │ ├── DrawingObject.cs │ │ ├── MTGestures.Designer.cs │ │ ├── MTGestures.cs │ │ ├── MTGestures.csproj │ │ ├── MTGestures.resx │ │ ├── MTGestures.sln │ │ ├── Program.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ ├── Settings.settings │ │ └── readme.txt │ └── cpp │ │ ├── DrawingObject.cpp │ │ ├── DrawingObject.h │ │ ├── GestureEngine.cpp │ │ ├── GestureEngine.h │ │ ├── MTGestures.cpp │ │ ├── MTGestures.rc │ │ ├── MTGestures.sln │ │ ├── MTGestures.vcproj │ │ ├── MyGestureEngine.cpp │ │ ├── MyGestureEngine.h │ │ ├── Resource.h │ │ └── readme.txt ├── MTManipulation │ └── cpp │ │ ├── CDrawingObject.cpp │ │ ├── CDrawingObject.h │ │ ├── CManipulationEventSink.cpp │ │ ├── CManipulationEventSink.h │ │ ├── MTManipulation.cpp │ │ ├── MTManipulation.rc │ │ ├── MTManipulation.sln │ │ ├── MTManipulation.vcproj │ │ ├── Resource.h │ │ └── readme.txt ├── MTManipulationInertia │ └── cpp │ │ ├── ComTouchDriver.cpp │ │ ├── ComTouchDriver.h │ │ ├── CoreObject.cpp │ │ ├── CoreObject.h │ │ ├── D2DDriver.cpp │ │ ├── D2DDriver.h │ │ ├── DrawingObject.cpp │ │ ├── DrawingObject.h │ │ ├── ManipulationEventsink.cpp │ │ ├── ManipulationEventsink.h │ │ ├── ManipulationSample.cpp │ │ ├── ManipulationSample.rc │ │ ├── ManipulationSample.sln │ │ ├── ManipulationSample.vcproj │ │ ├── Readme.txt │ │ └── resource.h ├── MTScratchpadRTStylus │ ├── CS │ │ ├── AssemblyInfo.cs │ │ ├── MTScratchpadRTStylus.Designer.cs │ │ ├── MTScratchpadRTStylus.cs │ │ ├── MTScratchpadRTStylus.csproj │ │ ├── MTScratchpadRTStylus.resx │ │ ├── MTScratchpadRTStylus.sln │ │ ├── Program.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ ├── Settings.settings │ │ └── readme.txt │ └── cpp │ │ ├── MTScratchpadRTStylus.cpp │ │ ├── MTScratchpadRTStylus.rc │ │ ├── MTScratchpadRTStylus.sln │ │ ├── MTScratchpadRTStylus.vcproj │ │ ├── Resource.h │ │ └── readme.txt └── MTScratchpadWMTouch │ ├── CS │ ├── AssemblyInfo.cs │ ├── MTScratchpadWMTouch.Designer.cs │ ├── MTScratchpadWMTouch.cs │ ├── MTScratchpadWMTouch.csproj │ ├── MTScratchpadWMTouch.resx │ ├── MTScratchpadWMTouch.sln │ ├── Program.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ ├── Settings.settings │ ├── Stroke.cs │ ├── WMTouchForm.cs │ └── readme.txt │ └── cpp │ ├── MTScratchpadWMTouch.cpp │ ├── MTScratchpadWMTouch.rc │ ├── MTScratchpadWMTouch.sln │ ├── MTScratchpadWMTouch.vcproj │ ├── Resource.h │ ├── Stroke.cpp │ ├── Stroke.h │ └── readme.txt ├── begin ├── dll │ ├── Demo.Def │ ├── Demo.Rc │ ├── Demo.c │ ├── Demo.h │ ├── Makefile │ ├── ReadMe.Txt │ ├── Select.Def │ ├── Select.c │ └── Select.h ├── sdkdiff │ ├── ErrorOut.cpp │ ├── ErrorOut.h │ ├── Makefile │ ├── bar.cpp │ ├── compitem.cpp │ ├── compitem.h │ ├── complist.cpp │ ├── complist.h │ ├── file.cpp │ ├── file.h │ ├── findgoto.cpp │ ├── findgoto.h │ ├── gfile.cpp │ ├── gutils.cpp │ ├── gutils.h │ ├── gutilsrc.h │ ├── horzline.cur │ ├── line.cpp │ ├── line.h │ ├── list.cpp │ ├── list.h │ ├── precomp.cpp │ ├── precomp.h │ ├── profile.cpp │ ├── profile.h │ ├── profile.key │ ├── readme.txt │ ├── scandir.cpp │ ├── scandir.h │ ├── sdkdiff.chm │ ├── sdkdiff.cpp │ ├── sdkdiff.def │ ├── sdkdiff.h │ ├── sdkdiff.ico │ ├── sdkdiff.rc │ ├── sdkdiff.sln │ ├── sdkdiff.vcproj │ ├── section.cpp │ ├── section.h │ ├── state.h │ ├── status.cpp │ ├── table.cpp │ ├── table.h │ ├── tpaint.cpp │ ├── tprint.cpp │ ├── tpriv.h │ ├── tree.cpp │ ├── tree.h │ ├── tscroll.cpp │ ├── utils.cpp │ ├── vertline.cur │ ├── view.cpp │ ├── view.h │ └── wdiffrc.h ├── simple │ ├── Makefile │ ├── ReadMe.Txt │ └── Simple.c └── winsdkver_button │ ├── WinSDKVer_Button.sln │ └── winsdkver_button │ ├── ReadMe.txt │ ├── WinSDKVer_Button.cpp │ ├── WinSDKVer_Button.h │ ├── WinSDKVer_Button.ico │ ├── WinSDKVer_Button.rc │ ├── WinSDKVer_Button.vcproj │ ├── resource.h │ ├── small.ico │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── com ├── Readme.Htm ├── administration │ ├── Admin.Htm │ ├── explore.vc │ │ ├── AppExportDlg.Cpp │ │ ├── AppExportDlg.h │ │ ├── AppInstallDlg.Cpp │ │ ├── AppInstallDlg.h │ │ ├── AppUtilDlg.Cpp │ │ ├── AppUtilDlg.h │ │ ├── CompImportDlg.Cpp │ │ ├── CompImportDlg.h │ │ ├── CompInstallDlg.Cpp │ │ ├── CompInstallDlg.h │ │ ├── ConnectDlg.Cpp │ │ ├── ConnectDlg.h │ │ ├── Explore.VC.sln │ │ ├── Explore.VC.vcproj │ │ ├── ReadMe.Htm │ │ ├── Resource.h │ │ ├── StdAfx.Cpp │ │ ├── StdAfx.h │ │ ├── UtilitiesDlg.Cpp │ │ ├── UtilitiesDlg.h │ │ ├── VCExplore.Cpp │ │ ├── VCExplore.Rc │ │ ├── VCExplore.clw │ │ ├── VCExplore.h │ │ ├── VCExplore.xml │ │ ├── VCExploreDlg.Cpp │ │ ├── VCExploreDlg.h │ │ └── res │ │ │ ├── About.Ico │ │ │ ├── AppIcon.Ico │ │ │ ├── Back.Ico │ │ │ ├── ComAdmin.Ico │ │ │ ├── Connect.Ico │ │ │ ├── Create.Ico │ │ │ ├── CreateQComp.Ico │ │ │ ├── Delete.Ico │ │ │ ├── Export.Ico │ │ │ ├── Import.Ico │ │ │ ├── Install.Ico │ │ │ ├── NavigateTo.Ico │ │ │ ├── New2.Ico │ │ │ ├── Refresh.Ico │ │ │ ├── Roles.Ico │ │ │ ├── Save2.Ico │ │ │ ├── Start.Ico │ │ │ ├── Stop.Ico │ │ │ ├── Utilities.Ico │ │ │ ├── VCExplore.Ico │ │ │ ├── VCExplore.Rc2 │ │ │ ├── database.Ico │ │ │ └── toolbar1.Bmp │ ├── scripted administration │ │ ├── comadmin.vbs │ │ └── readme.htm │ └── spy │ │ ├── ReadMe.Htm │ │ ├── comspy │ │ ├── ComSpy.Cpp │ │ ├── ComSpy.Rc │ │ ├── ComSpy.Rgs │ │ ├── ComSpy.vcproj │ │ ├── Icon1.Ico │ │ ├── Resource.h │ │ ├── SpyCon.Cpp │ │ ├── SpyCon.Rgs │ │ ├── SpyCon.h │ │ ├── StdAfx.Cpp │ │ └── StdAfx.h │ │ ├── comspyaudit │ │ ├── ComSpyAudit.Cpp │ │ ├── ComSpyAudit.Def │ │ ├── ComSpyAudit.Rc │ │ ├── ComSpyAudit.Sql │ │ ├── ComSpyAudit.vcproj │ │ ├── ComSpysqlAudit.Cpp │ │ ├── ComSpysqlAudit.Rgs │ │ ├── ComSpysqlAudit.h │ │ ├── Events.Cpp │ │ ├── Resource.h │ │ ├── StdAfx.Cpp │ │ └── StdAfx.h │ │ ├── comspyctl │ │ ├── Adminwrap.Cpp │ │ ├── Adminwrap.h │ │ ├── ComSpy.Cpp │ │ ├── ComSpy.Rgs │ │ ├── ComSpy1.bin │ │ ├── ComSpyCtl.Cpp │ │ ├── ComSpyCtl.Def │ │ ├── ComSpyCtl.Rc │ │ ├── ComSpyCtl.vcproj │ │ ├── ComSpyproppage.Cpp │ │ ├── ComSpyproppage.Rgs │ │ ├── ComSpyproppage.h │ │ ├── Icon1.Ico │ │ ├── Identitysub.h │ │ ├── Methodsub.Cpp │ │ ├── Methodsub.h │ │ ├── ObjPool2sub.h │ │ ├── ObjPoolsub.h │ │ ├── Objconstsub.h │ │ ├── Objsub.h │ │ ├── Resource.h │ │ ├── Resourcesub.Cpp │ │ ├── Resourcesub.h │ │ ├── StdAfx.Cpp │ │ ├── StdAfx.h │ │ ├── activitysub.h │ │ ├── appinfo.Cpp │ │ ├── appinfo.h │ │ ├── appsub.h │ │ ├── ccomspy.h │ │ ├── crmsub.Cpp │ │ ├── crmsub.h │ │ ├── evtstoresub.Cpp │ │ ├── evtstoresub.h │ │ ├── exceptionsub.h │ │ ├── instancesub.h │ │ ├── lbsub.h │ │ ├── qcsub.h │ │ ├── securitysub.h │ │ ├── selectEventsDlg.Cpp │ │ ├── selectEventsDlg.h │ │ ├── syslcesub.Cpp │ │ ├── syslcesub.h │ │ ├── threadsub.h │ │ ├── txsub.Cpp │ │ ├── txsub.h │ │ └── usersub.h │ │ ├── comspyface │ │ ├── ComSpy.idl │ │ ├── ComSpyAudit.Idl │ │ ├── ComSpyCtl.Idl │ │ └── ComSpyface.vcproj │ │ └── spy.sln ├── docs │ ├── 64bit_notes.htm │ ├── BuildEnv.htm │ ├── Styles.css │ ├── Troubleshooting.htm │ ├── comsdk.sln │ ├── comsdk.xml │ ├── default.htm │ ├── fixvbpref.htm │ ├── footer.htm │ ├── left_foot.htm │ ├── left_head.htm │ └── toc.xsl ├── fundamentals │ └── dcom │ │ ├── dcomperm │ │ ├── AclMgmt.Cpp │ │ ├── DComPerm.Cpp │ │ ├── DComPerm.h │ │ ├── DComPerm.sln │ │ ├── DComPerm.vcproj │ │ ├── ListAcl.Cpp │ │ ├── Makefile │ │ ├── SDMgmt.Cpp │ │ ├── SrvcMgmt.Cpp │ │ ├── UtilS.Cpp │ │ ├── Wrappers.Cpp │ │ └── readme.htm │ │ └── simple │ │ ├── Install.bat │ │ ├── readme.htm │ │ ├── sclient │ │ ├── sclient.cpp │ │ └── sclient.vcproj │ │ ├── simple.sln │ │ └── sserver │ │ ├── sserver.cpp │ │ ├── sserver.reg │ │ └── sserver.vcproj ├── images │ ├── Bullet-minus.Gif │ ├── Bullet-plus.Gif │ ├── Com_small.Gif │ └── help.gif └── uac │ ├── ElevationSample.sln │ ├── elevationsample │ ├── ElevationManager.cpp │ ├── ElevationManager.h │ ├── ElevationSample.aps │ ├── ElevationSample.ico │ ├── ElevationSample.rc │ ├── ElevationSample.vcproj │ ├── WinMain.cpp │ ├── WinMain.h │ ├── resource.h │ ├── small.ico │ ├── stdafx.cpp │ └── stdafx.h │ ├── mui.rcconfig │ ├── proxystub │ ├── ProxyStub.vcproj │ └── proxy.def │ ├── readme.txt │ └── registerserver │ ├── ElevationIcon.ico │ ├── Register.cpp │ ├── Register.h │ ├── RegisterServer.def │ ├── RegisterServer.h │ ├── RegisterServer.idl │ ├── RegisterServer.vcproj │ ├── RegisterServer_h.h │ ├── RegisterServer_i.c │ ├── RegisterServer_p.c │ ├── dlldata.c │ ├── resource.aps │ ├── resource.h │ └── resource.rc ├── dataaccess ├── OPC │ ├── MusicBundle │ │ ├── ConsumptionData │ │ │ └── SampleMusicBundle.zip │ │ ├── MusicBundle.cpp │ │ ├── MusicBundle.h │ │ ├── MusicBundle.sln │ │ ├── MusicBundle.vcproj │ │ ├── MusicBundleConsumption.cpp │ │ ├── MusicBundleProduction.cpp │ │ ├── ProductionData │ │ │ ├── AlbumArt │ │ │ │ └── jacqui.jpg │ │ │ ├── Lyrics │ │ │ │ ├── CrystalFree.txt │ │ │ │ ├── Sire.txt │ │ │ │ ├── SmallPines.txt │ │ │ │ └── Valparaiso.txt │ │ │ ├── Tracklist.wpl │ │ │ └── Tracks │ │ │ │ ├── CrystalFree.wma │ │ │ │ ├── Sire.wma │ │ │ │ ├── SmallPines.wma │ │ │ │ └── Valparaiso.wma │ │ ├── Util.cpp │ │ ├── Util.h │ │ └── readme.txt │ ├── SetAuthor │ │ ├── opclib.cpp │ │ ├── opclib.h │ │ ├── readme.txt │ │ ├── sample.docx │ │ ├── setauthor.cpp │ │ ├── setauthor.sln │ │ ├── setauthor.vcproj │ │ ├── util.h │ │ ├── wordlib.cpp │ │ └── wordlib.h │ └── musicbundlesignature │ │ ├── MusicBundleSignature.sln │ │ ├── MusicBundleSignature.vcproj │ │ ├── SampleMusicBundle.zip │ │ ├── Sign.cpp │ │ ├── Sign.h │ │ ├── Util.cpp │ │ ├── Util.h │ │ ├── Validate.cpp │ │ ├── Validate.h │ │ ├── main.cpp │ │ └── readme.txt ├── odbc │ └── odbcsql │ │ ├── odbcsql.c │ │ └── odbcsql.vcproj ├── oledb │ ├── omniprov │ │ ├── clients │ │ │ ├── adoclient │ │ │ │ ├── omniclient.frm │ │ │ │ ├── omniclient.vbp │ │ │ │ └── omniclient.vbw │ │ │ └── gridclient │ │ │ │ ├── gridclient.frm │ │ │ │ ├── gridclient.frx │ │ │ │ ├── gridclient.vbp │ │ │ │ └── gridclient.vbw │ │ ├── data │ │ │ ├── data.sxt │ │ │ └── data.txt │ │ ├── docs │ │ │ └── omniprov.doc │ │ └── source │ │ │ ├── cdbfile.cpp │ │ │ ├── cdbfile.h │ │ │ ├── crow.cpp │ │ │ ├── crow.h │ │ │ ├── irowsetchange.h │ │ │ ├── irowsetscroll.h │ │ │ ├── msomniprov.rgs │ │ │ ├── msomniprovds.h │ │ │ ├── msomniprovrs.cpp │ │ │ ├── msomniprovrs.h │ │ │ ├── msomniprovsess.h │ │ │ ├── resource.h │ │ │ ├── rncp.h │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ ├── theprovider.cpp │ │ │ ├── theprovider.def │ │ │ ├── theprovider.h │ │ │ ├── theprovider.idl │ │ │ ├── theprovider.rc │ │ │ └── theprovider.vcproj │ ├── prsample │ │ ├── command.cpp │ │ ├── datasource.cpp │ │ ├── enum.cpp │ │ ├── error.cpp │ │ ├── main.cpp │ │ ├── prsample.h │ │ ├── prsample.rc │ │ ├── prsample.vcproj │ │ ├── resource.h │ │ ├── rowset.cpp │ │ └── session.cpp │ ├── rowsetviewer │ │ ├── cbase.cpp │ │ ├── cbase.h │ │ ├── cbinder.cpp │ │ ├── cbinder.h │ │ ├── ccommand.cpp │ │ ├── ccommand.h │ │ ├── cdatalinks.cpp │ │ ├── cdatalinks.h │ │ ├── cdataset.cpp │ │ ├── cdataset.h │ │ ├── cdatasource.cpp │ │ ├── cdatasource.h │ │ ├── cdialog.cpp │ │ ├── cdialog.h │ │ ├── cdialoglite.cpp │ │ ├── cdialoglite.h │ │ ├── cenum.cpp │ │ ├── cenum.h │ │ ├── cerror.cpp │ │ ├── cerror.h │ │ ├── clistener.cpp │ │ ├── clistener.h │ │ ├── cmainwindow.cpp │ │ ├── cmainwindow.h │ │ ├── cmdichild.cpp │ │ ├── cmdichild.h │ │ ├── cmultipleresults.h │ │ ├── cmutipleresults.cpp │ │ ├── cobjtree.cpp │ │ ├── cobjtree.h │ │ ├── common.cpp │ │ ├── common.h │ │ ├── coptions.cpp │ │ ├── coptions.h │ │ ├── crow.cpp │ │ ├── crow.h │ │ ├── crowposition.cpp │ │ ├── crowposition.h │ │ ├── crowset.cpp │ │ ├── crowset.h │ │ ├── csession.cpp │ │ ├── csession.h │ │ ├── cstream.cpp │ │ ├── cstream.h │ │ ├── ctrace.cpp │ │ ├── ctrace.h │ │ ├── ctransaction.cpp │ │ ├── ctransaction.h │ │ ├── cwinapp.cpp │ │ ├── cwinapp.h │ │ ├── error.cpp │ │ ├── error.h │ │ ├── headers.cpp │ │ ├── headers.h │ │ ├── list.h │ │ ├── property.cpp │ │ ├── property.h │ │ ├── res │ │ │ ├── menu.bmp │ │ │ ├── readonly.bmp │ │ │ ├── rowsetviewer.ico │ │ │ ├── rowsetviewer.rc2 │ │ │ └── toolbar.bmp │ │ ├── resource.h │ │ ├── rowsetviewer.rc │ │ ├── rowsetviewer.vcproj │ │ ├── spy.cpp │ │ ├── spy.h │ │ └── version.h │ ├── sampclnt │ │ ├── customer.csv │ │ ├── dump.cpp │ │ ├── resource.h │ │ ├── sampclnt.cpp │ │ ├── sampclnt.dsp │ │ ├── sampclnt.h │ │ ├── sampclnt.rc │ │ ├── sampclnt.rc2 │ │ ├── sampclnt.vcproj │ │ └── sampver.h │ ├── sampprov │ │ ├── accessor.cpp │ │ ├── accessor.h │ │ ├── asserts.cpp │ │ ├── asserts.h │ │ ├── baseobj.cpp │ │ ├── baseobj.h │ │ ├── binder.cpp │ │ ├── binder.h │ │ ├── bitarray.cpp │ │ ├── bitarray.h │ │ ├── classfac.cpp │ │ ├── classfac.h │ │ ├── colinfo.cpp │ │ ├── command.cpp │ │ ├── command.h │ │ ├── common.cpp │ │ ├── common.h │ │ ├── crtsess.cpp │ │ ├── cvttype.cpp │ │ ├── datasrc.cpp │ │ ├── datasrc.h │ │ ├── dbinit.cpp │ │ ├── dbprop.cpp │ │ ├── dbsess.cpp │ │ ├── dbsess.h │ │ ├── extbuff.cpp │ │ ├── extbuff.h │ │ ├── fileidx.cpp │ │ ├── fileidx.h │ │ ├── fileio.cpp │ │ ├── fileio.h │ │ ├── globals.cpp │ │ ├── guids.h │ │ ├── hashtbl.cpp │ │ ├── hashtbl.h │ │ ├── headers.cpp │ │ ├── headers.h │ │ ├── igetrow.cpp │ │ ├── irowiden.cpp │ │ ├── irowset.cpp │ │ ├── opnrowst.cpp │ │ ├── persist.cpp │ │ ├── resource.h │ │ ├── row.cpp │ │ ├── row.h │ │ ├── rowchng.cpp │ │ ├── rowinfo.cpp │ │ ├── rowset.cpp │ │ ├── rowset.h │ │ ├── sampprov.def │ │ ├── sampprov.h │ │ ├── sampprov.rc │ │ ├── sampprov.rc2 │ │ ├── sampprov.vcproj │ │ ├── sampver.h │ │ ├── stream.cpp │ │ ├── stream.h │ │ ├── utilprop.cpp │ │ └── utilprop.h │ └── tablecopy │ │ ├── catalog.ico │ │ ├── column.ico │ │ ├── columnlong.ico │ │ ├── columnread.ico │ │ ├── common.cpp │ │ ├── common.h │ │ ├── datasource.cpp │ │ ├── datasource.h │ │ ├── error.cpp │ │ ├── error.h │ │ ├── index.ico │ │ ├── primarykey.ico │ │ ├── progress.cpp │ │ ├── progress.h │ │ ├── property.cpp │ │ ├── property.h │ │ ├── resource.h │ │ ├── schema.ico │ │ ├── step1.cpp │ │ ├── step2.cpp │ │ ├── step3.cpp │ │ ├── step4.cpp │ │ ├── synonym.ico │ │ ├── systable.ico │ │ ├── table.cpp │ │ ├── table.h │ │ ├── table.ico │ │ ├── table_co.ico │ │ ├── tablecopy.cpp │ │ ├── tablecopy.h │ │ ├── tablecopy.rc │ │ ├── tablecopy.rc2 │ │ ├── tablecopy.vcproj │ │ ├── type.ico │ │ ├── version.h │ │ ├── view.ico │ │ ├── winmain.cpp │ │ ├── winmain.h │ │ ├── wizard.cpp │ │ └── wizard.h ├── oledb_conformance │ ├── Conformance_Tests.sln │ ├── ado │ │ ├── adolvl0.vbp │ │ ├── adolvl0_tm.cls │ │ ├── adolvl1.vbp │ │ ├── adolvl1_tm.cls │ │ ├── adolvl2.vbp │ │ ├── adolvl2_tm.cls │ │ ├── adotrans.vbp │ │ ├── adotrans_tm.cls │ │ ├── adoupdat.vbp │ │ ├── adoupdat_tm.cls │ │ ├── cmdactcn.cls │ │ ├── cmdcmdto.cls │ │ ├── cmdcmdtx.cls │ │ ├── cmdexec.cls │ │ ├── cmdparam.cls │ │ ├── cmdprep.cls │ │ ├── cmdtype.cls │ │ ├── cnattrib.cls │ │ ├── cnclose.cls │ │ ├── cncmdto.cls │ │ ├── cncommit.cls │ │ ├── cndefdat.cls │ │ ├── cnexec.cls │ │ ├── cnisolat.cls │ │ ├── cnmode.cls │ │ ├── cnnotify.cls │ │ ├── cnopen.cls │ │ ├── cnprop.cls │ │ ├── cnprovid.cls │ │ ├── cnrollba.cls │ │ ├── cnstring.cls │ │ ├── cntimeou.cls │ │ ├── common.cls │ │ ├── fldactua.cls │ │ ├── fldappch.cls │ │ ├── fldattib.cls │ │ ├── flddefin.cls │ │ ├── fldgetch.cls │ │ ├── fldname.cls │ │ ├── fldorigi.cls │ │ ├── fldpreci.cls │ │ ├── fldtype.cls │ │ ├── fldunder.cls │ │ ├── fldvalue.cls │ │ ├── prmapck.cls │ │ ├── prmattr.cls │ │ ├── prmdir.cls │ │ ├── prmname.cls │ │ ├── prmnumpr.cls │ │ ├── prmnumsc.cls │ │ ├── prmsize.cls │ │ ├── prmtype.cls │ │ ├── prmvalue.cls │ │ ├── rsabspg.cls │ │ ├── rsabspos.cls │ │ ├── rsactive.cls │ │ ├── rsaddnew.cls │ │ ├── rsbof.cls │ │ ├── rsbookmk.cls │ │ ├── rscaches.cls │ │ ├── rscancel.cls │ │ ├── rscbatch.cls │ │ ├── rsclone.cls │ │ ├── rsclose.cls │ │ ├── rscurtyp.cls │ │ ├── rsdelete.cls │ │ ├── rseditmo.cls │ │ ├── rseof.cls │ │ ├── rsfilter.cls │ │ ├── rsfind.cls │ │ ├── rsgetrow.cls │ │ ├── rslockty.cls │ │ ├── rsmaxrec.cls │ │ ├── rsmove.cls │ │ ├── rsmovefi.cls │ │ ├── rsmovela.cls │ │ ├── rsmovene.cls │ │ ├── rsmovepr.cls │ │ ├── rsnextrs.cls │ │ ├── rsopen.cls │ │ ├── rspagesi.cls │ │ ├── rspgcnt.cls │ │ ├── rsreccnt.cls │ │ ├── rsrequer.cls │ │ ├── rsresync.cls │ │ ├── rssort.cls │ │ ├── rssource.cls │ │ ├── rsstatus.cls │ │ ├── rssuppor.cls │ │ ├── rsubatch.cls │ │ ├── rsupdate.cls │ │ ├── testmodule.tlb │ │ └── tools │ │ │ └── adopriv │ │ │ ├── adopriv.cpp │ │ │ ├── adopriv.def │ │ │ ├── adopriv.idl │ │ │ ├── adopriv.rc │ │ │ ├── adopriv.vcproj │ │ │ ├── adoprivps.def │ │ │ ├── adoprivps.mk │ │ │ ├── column.cpp │ │ │ ├── column.h │ │ │ ├── column.rgs │ │ │ ├── modinfo.cpp │ │ │ ├── modinfo.h │ │ │ ├── modinfo.rgs │ │ │ ├── parseinitfile.cpp │ │ │ ├── parseinitfile.h │ │ │ ├── parseinitfile.rgs │ │ │ ├── resource.h │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ ├── utils.cpp │ │ │ └── utils.h │ ├── include │ │ ├── ccol.hpp │ │ ├── cexterr.hpp │ │ ├── cmodinfo.hpp │ │ ├── coledb.hpp │ │ ├── cparsestrm.hpp │ │ ├── cstorage.hpp │ │ ├── csuperlog.hpp │ │ ├── ctable.hpp │ │ ├── ctranstn.hpp │ │ ├── ctree.hpp │ │ ├── dtmcommon.h │ │ ├── dtmguids.hpp │ │ ├── list.h │ │ ├── miscfunc.h │ │ ├── modclasses.hpp │ │ ├── moderror.hpp │ │ ├── modmacros.hpp │ │ ├── modstandard.hpp │ │ ├── modulecore.h │ │ ├── privcnst.h │ │ ├── privlib.h │ │ ├── privstd.h │ │ ├── prvtrace.h │ │ ├── strings.h │ │ ├── svcprov.h │ │ └── version.h │ ├── modulecore │ │ ├── modulecore.vcproj │ │ └── src │ │ │ ├── csuperlog.cpp │ │ │ ├── dtmguids.c │ │ │ ├── moderror.cpp │ │ │ ├── modulecore.cpp │ │ │ └── modulecoreguids.c │ └── oledb │ │ ├── datalite │ │ ├── datalite.cpp │ │ ├── datalite.h │ │ ├── datalite.rc │ │ └── datalite.vcproj │ │ ├── errormsg │ │ ├── errormsg.cpp │ │ ├── errormsg.rc │ │ └── errormsg.vcproj │ │ ├── iaccessr │ │ ├── iaccessr.cpp │ │ ├── iaccessr.h │ │ ├── iaccessr.rc │ │ └── iaccessr.vcproj │ │ ├── ialterindex │ │ ├── ialterindex.cpp │ │ ├── ialterindex.h │ │ ├── ialterindex.rc │ │ └── ialterindex.vcproj │ │ ├── ialtertable │ │ ├── ialtertable.cpp │ │ ├── ialtertable.h │ │ ├── ialtertable.rc │ │ └── ialtertable.vcproj │ │ ├── ibindresource │ │ ├── ibindresource.cpp │ │ ├── ibindresource.h │ │ ├── ibindresource.rc │ │ └── ibindresource.vcproj │ │ ├── iclsfact │ │ ├── iclsfact.cpp │ │ ├── iclsfact.h │ │ ├── iclsfact.rc │ │ └── iclsfact.vcproj │ │ ├── icmdprep │ │ ├── icmdprep.cpp │ │ ├── icmdprep.h │ │ ├── icmdprep.rc │ │ └── icmdprep.vcproj │ │ ├── icmdprpt │ │ ├── icmdprpt.cpp │ │ ├── icmdprpt.h │ │ ├── icmdprpt.rc │ │ └── icmdprpt.vcproj │ │ ├── icmdstream │ │ ├── icmdstream.cpp │ │ ├── icmdstream.h │ │ ├── icmdstream.rc │ │ └── icmdstream.vcproj │ │ ├── icmdtext │ │ ├── icmdtext.cpp │ │ ├── icmdtext.h │ │ ├── icmdtext.rc │ │ └── icmdtext.vcproj │ │ ├── icmdwpar │ │ ├── icmdwpar.cpp │ │ ├── icmdwpar.h │ │ ├── icmdwpar.rc │ │ └── icmdwpar.vcproj │ │ ├── icnvttyp │ │ ├── icnvttyp.cpp │ │ ├── icnvttyp.h │ │ ├── icnvttyp.rc │ │ └── icnvttyp.vcproj │ │ ├── icolinfo │ │ ├── icolinfo.cpp │ │ ├── icolinfo.h │ │ ├── icolinfo.rc │ │ └── icolinfo.vcproj │ │ ├── icolrow │ │ ├── icolrow.cpp │ │ ├── icolrow.h │ │ ├── icolrow.rc │ │ └── icolrow.vcproj │ │ ├── icommand │ │ ├── icommand.cpp │ │ ├── icommand.h │ │ ├── icommand.rc │ │ └── icommand.vcproj │ │ ├── icpoint │ │ ├── icpoint.cpp │ │ ├── icpoint.h │ │ ├── icpoint.rc │ │ └── icpoint.vcproj │ │ ├── idatainitialize │ │ ├── idatainitialize.cpp │ │ ├── idatainitialize.h │ │ ├── idatainitialize.rc │ │ └── idatainitialize.vcproj │ │ ├── idbasynch │ │ ├── idbasynch.cpp │ │ ├── idbasynch.h │ │ ├── idbasynch.rc │ │ └── idbasynch.vcproj │ │ ├── idbbinderproperties │ │ ├── idbbinderproperties.cpp │ │ ├── idbbinderproperties.h │ │ ├── idbbinderproperties.rc │ │ └── idbbinderproperties.vcproj │ │ ├── idbcrcmd │ │ ├── idbcrcmd.cpp │ │ ├── idbcrcmd.h │ │ ├── idbcrcmd.rc │ │ └── idbcrcmd.vcproj │ │ ├── idbcrses │ │ ├── idbcrses.cpp │ │ ├── idbcrses.h │ │ ├── idbcrses.rc │ │ └── idbcrses.vcproj │ │ ├── idbinfo │ │ ├── idbinfo.cpp │ │ ├── idbinfo.h │ │ ├── idbinfo.rc │ │ └── idbinfo.vcproj │ │ ├── idbinit │ │ ├── idbinit.cpp │ │ ├── idbinit.h │ │ ├── idbinit.rc │ │ └── idbinit.vcproj │ │ ├── idbprpts │ │ ├── idbprpts.cpp │ │ ├── idbprpts.h │ │ ├── idbprpts.rc │ │ └── idbprpts.vcproj │ │ ├── idbschmr │ │ ├── idbschmr.cpp │ │ ├── idbschmr.h │ │ ├── idbschmr.rc │ │ └── idbschmr.vcproj │ │ ├── ierror │ │ ├── ierror.cpp │ │ ├── ierror.h │ │ ├── ierror.rc │ │ └── ierror.vcproj │ │ ├── igetdso │ │ ├── igetdso.cpp │ │ ├── igetdso.h │ │ ├── igetdso.rc │ │ └── igetdso.vcproj │ │ ├── igetrow │ │ ├── igetrow.cpp │ │ ├── igetrow.h │ │ ├── igetrow.rc │ │ └── igetrow.vcproj │ │ ├── igetsession │ │ ├── igetsession.cpp │ │ ├── igetsession.h │ │ ├── igetsession.rc │ │ └── igetsession.vcproj │ │ ├── igetsourcerow │ │ ├── igetsourcerow.cpp │ │ ├── igetsourcerow.h │ │ ├── igetsourcerow.rc │ │ └── igetsourcerow.vcproj │ │ ├── iindxdef │ │ ├── iindxdef.cpp │ │ ├── iindxdef.h │ │ ├── iindxdef.rc │ │ └── iindxdef.vcproj │ │ ├── imultres │ │ ├── imultres.cpp │ │ ├── imultres.h │ │ ├── imultres.rc │ │ └── imultres.vcproj │ │ ├── include │ │ ├── CVectorEx.hpp │ │ ├── allocator.hpp │ │ ├── clib.hpp │ │ ├── cpropset.hpp │ │ ├── datasource.hpp │ │ ├── extralib.h │ │ ├── providerinfo.h │ │ ├── servicecomp.h │ │ ├── svcintfs.h │ │ └── txnbase.hpp │ │ ├── iopenrw │ │ ├── iopenrw.cpp │ │ ├── iopenrw.h │ │ ├── iopenrw.rc │ │ └── iopenrw.vcproj │ │ ├── ipersist │ │ ├── ipersist.cpp │ │ ├── ipersist.h │ │ ├── ipersist.rc │ │ └── ipersist.vcproj │ │ ├── iregisterprovider │ │ ├── iregisterprovider.cpp │ │ ├── iregisterprovider.h │ │ ├── iregisterprovider.rc │ │ └── iregisterprovider.vcproj │ │ ├── irnotify │ │ ├── irnotify.cpp │ │ ├── irnotify.h │ │ ├── irnotify.rc │ │ └── irnotify.vcproj │ │ ├── irow │ │ ├── irow.cpp │ │ ├── irow.h │ │ ├── irow.rc │ │ └── irow.vcproj │ │ ├── irowchange │ │ ├── irowchange.cpp │ │ ├── irowchange.h │ │ ├── irowchange.rc │ │ └── irowchange.vcproj │ │ ├── irowchng │ │ ├── irowchng.cpp │ │ ├── irowchng.h │ │ ├── irowchng.rc │ │ └── irowchng.vcproj │ │ ├── irowdel │ │ ├── irowdel.cpp │ │ ├── irowdel.h │ │ ├── irowdel.rc │ │ └── irowdel.vcproj │ │ ├── irowfind │ │ ├── irowfind.cpp │ │ ├── irowfind.h │ │ ├── irowfind.rc │ │ └── irowfind.vcproj │ │ ├── irowiden │ │ ├── irowiden.cpp │ │ ├── irowiden.h │ │ ├── irowiden.rc │ │ └── irowiden.vcproj │ │ ├── irowinfo │ │ ├── irowinfo.cpp │ │ ├── irowinfo.h │ │ ├── irowinfo.rc │ │ └── irowinfo.vcproj │ │ ├── irowloca │ │ ├── irowloca.cpp │ │ ├── irowloca.h │ │ ├── irowloca.rc │ │ └── irowloca.vcproj │ │ ├── irownew │ │ ├── irownew.cpp │ │ ├── irownew.h │ │ ├── irownew.rc │ │ └── irownew.vcproj │ │ ├── irowpos │ │ ├── irowpos.cpp │ │ ├── irowpos.h │ │ ├── irowpos.rc │ │ └── irowpos.vcproj │ │ ├── irowresy │ │ ├── irowresy.cpp │ │ ├── irowresy.h │ │ ├── irowresy.rc │ │ └── irowresy.vcproj │ │ ├── irowschemachange │ │ ├── irowschemachange.cpp │ │ ├── irowschemachange.h │ │ ├── irowschemachange.rc │ │ └── irowschemachange.vcproj │ │ ├── irowscrl │ │ ├── irowscrl.cpp │ │ ├── irowscrl.h │ │ ├── irowscrl.rc │ │ └── irowscrl.vcproj │ │ ├── irowset │ │ ├── irowset.cpp │ │ ├── irowset.h │ │ ├── irowset.rc │ │ └── irowset.vcproj │ │ ├── irupdate │ │ ├── irupdate.cpp │ │ ├── irupdate.h │ │ ├── irupdate.rc │ │ └── irupdate.vcproj │ │ ├── iscops │ │ ├── iscops.cpp │ │ ├── iscops.h │ │ ├── iscops.rc │ │ └── iscops.vcproj │ │ ├── isesprpt │ │ ├── isesprpt.cpp │ │ ├── isesprpt.h │ │ ├── isesprpt.rc │ │ └── isesprpt.vcproj │ │ ├── isrcrow │ │ ├── isrcrow.cpp │ │ ├── isrcrow.h │ │ ├── isrcrow.rc │ │ └── isrcrow.vcproj │ │ ├── istorage │ │ ├── istorage.cpp │ │ ├── istorage.h │ │ ├── istorage.rc │ │ └── istorage.vcproj │ │ ├── itbldef │ │ ├── itbldef.cpp │ │ ├── itbldef.h │ │ ├── itbldef.rc │ │ └── itbldef.vcproj │ │ ├── itranloc │ │ ├── itranloc.cpp │ │ ├── itranloc.h │ │ ├── itranloc.rc │ │ └── itranloc.vcproj │ │ ├── itrnjoin │ │ ├── itrnjoin.cpp │ │ ├── itrnjoin.h │ │ ├── itrnjoin.rc │ │ └── itrnjoin.vcproj │ │ ├── kagtest │ │ ├── kagtest.cpp │ │ ├── kagtest.h │ │ ├── kagtest.rc │ │ └── kagtest.vcproj │ │ ├── oraproc │ │ ├── oraproc.cpp │ │ ├── oraproc.h │ │ ├── oraproc.rc │ │ └── oraproc.vcproj │ │ ├── privlib │ │ ├── ReadMe.txt │ │ ├── privlib.vcproj │ │ └── src │ │ │ ├── ccol.cpp │ │ │ ├── ccommand.cpp │ │ │ ├── cdso.cpp │ │ │ ├── cexterr.cpp │ │ │ ├── cmodinfo.cpp │ │ │ ├── coledb.cpp │ │ │ ├── cparsestrm.cpp │ │ │ ├── crow.cpp │ │ │ ├── crowset.cpp │ │ │ ├── csession.cpp │ │ │ ├── cstorage.cpp │ │ │ ├── ctable.cpp │ │ │ ├── ctranstn.cpp │ │ │ ├── ctree.cpp │ │ │ ├── miscfunc.cpp │ │ │ ├── prvtrace.cpp │ │ │ └── strings.cpp │ │ ├── quiktest │ │ ├── quiktest.cpp │ │ ├── quiktest.h │ │ ├── quiktest.rc │ │ └── quiktest.vcproj │ │ ├── rootbinder │ │ ├── rootbinder.cpp │ │ ├── rootbinder.h │ │ ├── rootbinder.rc │ │ └── rootbinder.vcproj │ │ ├── scalar │ │ ├── scalar.cpp │ │ ├── scalar.h │ │ ├── scalar.rc │ │ └── scalar.vcproj │ │ ├── scopedcmd │ │ ├── scopedcmd.cpp │ │ ├── scopedcmd.h │ │ ├── scopedcmd.rc │ │ └── scopedcmd.vcproj │ │ ├── src │ │ ├── CPropSet.cpp │ │ ├── allocator.cpp │ │ ├── clib.cpp │ │ ├── datasource.cpp │ │ ├── extralib.cpp │ │ ├── modstub.cpp │ │ ├── modstub.def │ │ ├── providerinfo.cpp │ │ ├── servicecomp.cpp │ │ └── txnbase.cpp │ │ ├── template │ │ ├── modstub_mts.cpp │ │ ├── template.cpp │ │ ├── template.h │ │ ├── template.rc │ │ ├── template_mts.cpp │ │ ├── template_mts.h │ │ ├── template_mts.odl │ │ └── template_mts.rc │ │ ├── threads │ │ ├── threads.cpp │ │ ├── threads.h │ │ ├── threads.rc │ │ └── threads.vcproj │ │ └── tools │ │ └── tabledump │ │ ├── TableDump.vcproj │ │ └── src │ │ ├── common.cpp │ │ ├── common.h │ │ ├── error.cpp │ │ ├── error.h │ │ ├── resource.h │ │ ├── tabledump.cpp │ │ ├── tabledump.h │ │ ├── tabledump.rc │ │ ├── tabledump.rc2 │ │ └── tabledumpver.h └── osp │ ├── customer.txt │ ├── registerprovider.reg │ ├── registerprovider.txt │ ├── vb │ ├── mydatasource.cls │ ├── myospobject.cls │ ├── sampleosp_vb.reg │ └── sampleosp_vb.vbp │ └── vc │ ├── cexlist.h │ ├── common.cpp │ ├── common.h │ ├── myclassfactory.cpp │ ├── myclassfactory.h │ ├── mydatasource.cpp │ ├── mydatasource.h │ ├── myospobject.cpp │ ├── myospobject.h │ ├── sampleosp.rc │ ├── sampleosp_vc.def │ ├── sampleosp_vc.reg │ └── sampleosp_vc.vcproj ├── multimedia ├── Direct2D │ ├── DXGISample │ │ ├── DeclareDPIAware.manifest │ │ ├── DxgiSample.cpp │ │ ├── DxgiSample.h │ │ ├── DxgiSample.rc │ │ ├── DxgiSample.sln │ │ ├── DxgiSample.vcproj │ │ ├── d3dmath.h │ │ ├── dxgisample.fx │ │ ├── readme.txt │ │ ├── resource.h │ │ └── sampleImage.jpg │ ├── Direct2DHelloWorld │ │ ├── DeclareDPIAware.manifest │ │ ├── Direct2DHelloWorld.cpp │ │ ├── Direct2DHelloWorld.h │ │ ├── Direct2DHelloWorld.sln │ │ ├── Direct2DHelloWorld.vcproj │ │ └── readme.txt │ ├── GdiInteropSample │ │ ├── DeclareDPIAware.manifest │ │ ├── GdiInteropSample.cpp │ │ ├── GdiInteropSample.h │ │ ├── GdiInteropSample.sln │ │ ├── GdiInteropSample.vcproj │ │ └── readme.txt │ ├── GeometryRealizationSample │ │ ├── DeclareDPIAware.manifest │ │ ├── GeometryRealization.cpp │ │ ├── GeometryRealization.h │ │ ├── GeometryRealizationSample.cpp │ │ ├── GeometryRealizationSample.h │ │ ├── GeometryRealizationSample.rc │ │ ├── GeometryRealizationSample.sln │ │ ├── GeometryRealizationSample.vcproj │ │ ├── RingBuffer.h │ │ ├── image.jpg │ │ ├── readme.txt │ │ └── stdafx.h │ ├── Interactive3dTextSample │ │ ├── Array.h │ │ ├── DeclareDPIAware.manifest │ │ ├── Interactive3dTextSample.cpp │ │ ├── Interactive3dTextSample.h │ │ ├── Interactive3dTextSample.rc │ │ ├── Interactive3dTextSample.sln │ │ ├── Interactive3dTextSample.vcproj │ │ ├── d3dmath.h │ │ ├── extrusionsample.fx │ │ ├── readme.txt │ │ └── resource.h │ ├── ListViewSample │ │ ├── DeclareDPIAware.manifest │ │ ├── ListViewSample.cpp │ │ ├── ListViewSample.h │ │ ├── ListViewSample.sln │ │ ├── ListViewSample.vcproj │ │ └── readme.txt │ ├── MSAARenderingSample │ │ ├── DeclareDPIAware.manifest │ │ ├── MSAARenderingSample.cpp │ │ ├── MSAARenderingSample.h │ │ ├── MSAARenderingSample.sln │ │ ├── MSAARenderingSample.vcproj │ │ ├── RingBuffer.h │ │ └── readme.txt │ ├── SaveAsImageFileSample │ │ ├── SaveAsImageFileSample.cpp │ │ ├── SaveAsImageFileSample.sln │ │ ├── SaveAsImageFileSample.vcproj │ │ └── readme.txt │ ├── SimpleDirect2DApplication │ │ ├── DeclareDPIAware.manifest │ │ ├── SimpleDirect2dApplication.cpp │ │ ├── SimpleDirect2dApplication.h │ │ ├── SimpleDirect2dApplication.rc │ │ ├── SimpleDirect2dApplication.sln │ │ ├── SimpleDirect2dApplication.vcproj │ │ ├── readme.txt │ │ └── sampleImage.jpg │ ├── SimplePathAnimationSample │ │ ├── Animation.h │ │ ├── DeclareDPIAware.manifest │ │ ├── SimplePathAnimationSample.cpp │ │ ├── SimplePathAnimationSample.h │ │ ├── SimplePathAnimationSample.sln │ │ ├── SimplePathAnimationSample.vcproj │ │ └── readme.txt │ └── TextAnimationSample │ │ ├── DeclareDPIAware.manifest │ │ ├── RingBuffer.h │ │ ├── TextAnimationSample.cpp │ │ ├── TextAnimationSample.h │ │ ├── TextAnimationSample.sln │ │ ├── TextAnimationSample.vcproj │ │ └── readme.txt ├── DirectWrite │ ├── ChooseFont │ │ ├── ChooseFont.cpp │ │ ├── ChooseFont.h │ │ ├── ChooseFont.manifest │ │ ├── ChooseFont.rc │ │ ├── ChooseFont.sln │ │ ├── ChooseFont.vcproj │ │ ├── FontEnumeration.cpp │ │ ├── FontEnumeration.h │ │ ├── GdiTextRenderer.cpp │ │ ├── GdiTextRenderer.h │ │ ├── readme.txt │ │ └── resource.h │ ├── CustomFont │ │ ├── Common.h │ │ ├── CustomFont.cpp │ │ ├── CustomFont.h │ │ ├── CustomFont.manifest │ │ ├── CustomFont.rc │ │ ├── CustomFont.sln │ │ ├── CustomFont.vcproj │ │ ├── Fonts │ │ │ ├── kooten.ttf │ │ │ └── peric.ttf │ │ ├── Layout.cpp │ │ ├── Layout.h │ │ ├── ResourceFontCollectionLoader.cpp │ │ ├── ResourceFontCollectionLoader.h │ │ ├── ResourceFontContext.cpp │ │ ├── ResourceFontContext.h │ │ ├── ResourceFontFileEnumerator.cpp │ │ ├── ResourceFontFileEnumerator.h │ │ ├── ResourceFontFileLoader.cpp │ │ ├── ResourceFontFileLoader.h │ │ ├── ResourceFontFileStream.cpp │ │ ├── ResourceFontFileStream.h │ │ ├── readme.txt │ │ └── resource.h │ ├── CustomLayout │ │ ├── Common.h │ │ ├── CustomLayout.cpp │ │ ├── CustomLayout.h │ │ ├── CustomLayout.manifest │ │ ├── CustomLayout.rc │ │ ├── CustomLayout.sln │ │ ├── CustomLayout.vcproj │ │ ├── DWriteIcon.ico │ │ ├── FlowLayout.cpp │ │ ├── FlowLayout.h │ │ ├── FlowSink.cpp │ │ ├── FlowSink.h │ │ ├── FlowSource.cpp │ │ ├── FlowSource.h │ │ ├── TextAnalysis.cpp │ │ ├── TextAnalysis.h │ │ ├── readme.txt │ │ └── resource.h │ ├── FontEnumeration │ │ ├── FontEnumeration.cpp │ │ ├── FontEnumeration.sln │ │ ├── FontEnumeration.vcproj │ │ └── readme.txt │ ├── GdiInterop │ │ ├── DeclareDPIAware.manifest │ │ ├── GDIInterop.sln │ │ ├── GDIInterop.vcproj │ │ ├── GdiInterop.cpp │ │ ├── GdiInterop.h │ │ ├── GdiInterop.rc │ │ ├── GdiTextRenderer.cpp │ │ ├── GdiTextRenderer.h │ │ ├── ReadMe.txt │ │ └── Resource.h │ ├── HelloWorld │ │ ├── CustomText.cpp │ │ ├── CustomText.h │ │ ├── CustomTextRenderer.cpp │ │ ├── CustomTextRenderer.h │ │ ├── DWriteHelloWorld.h │ │ ├── DWriteHelloWorld.rc │ │ ├── DWriteHelloWorld.sln │ │ ├── DWriteHelloWorld.vcproj │ │ ├── DeclareDPIAware.manifest │ │ ├── MultiformattedText.cpp │ │ ├── MultiformattedText.h │ │ ├── SimpleText.cpp │ │ ├── SimpleText.h │ │ ├── TabWindow.cpp │ │ ├── TabWindow.h │ │ ├── img1.jpg │ │ ├── readme.txt │ │ └── winmain.cpp │ ├── PadWrite │ │ ├── Common.h │ │ ├── DWriteIcon.ico │ │ ├── DrawingEffect.h │ │ ├── EditableLayout.cpp │ │ ├── EditableLayout.h │ │ ├── InlineImage.cpp │ │ ├── InlineImage.h │ │ ├── InlineObjects.png │ │ ├── PadWrite.cpp │ │ ├── PadWrite.h │ │ ├── PadWrite.manifest │ │ ├── PadWrite.rc │ │ ├── PadWrite.sln │ │ ├── PadWrite.vcproj │ │ ├── RenderTarget.cpp │ │ ├── RenderTarget.h │ │ ├── TextEditor.cpp │ │ ├── TextEditor.h │ │ ├── readme.txt │ │ └── resource.h │ ├── RenderTest │ │ ├── Common.h │ │ ├── D2DRenderer.cpp │ │ ├── D2DRenderer.h │ │ ├── DWriteRenderer.cpp │ │ ├── DWriteRenderer.h │ │ ├── IRenderer.h │ │ ├── RenderTest.cpp │ │ ├── RenderTest.h │ │ ├── RenderTest.manifest │ │ ├── RenderTest.rc │ │ ├── RenderTest.sln │ │ ├── RenderTest.vcproj │ │ ├── TextHelpers.cpp │ │ ├── TextHelpers.h │ │ ├── readme.txt │ │ └── resource.h │ ├── SimpleHelloWorld │ │ ├── DeclareDPIAware.manifest │ │ ├── DemoApp.cpp │ │ ├── DemoApp.h │ │ ├── SimpleHelloWorld.h │ │ ├── SimpleHelloWorld.sln │ │ ├── SimpleHelloWorld.vcproj │ │ ├── readme.txt │ │ └── winmain.cpp │ └── TextDialogSample │ │ ├── DeclareDPIAware.manifest │ │ ├── ReadMe.txt │ │ ├── TextDialog.cpp │ │ ├── TextDialog.h │ │ ├── TextDialogSample.h │ │ ├── TextDialogSample.rc │ │ ├── TextDialogSample.sln │ │ ├── TextDialogSample.vcproj │ │ ├── resource.h │ │ └── winmain.cpp ├── WMP │ ├── Wizards │ │ ├── services │ │ │ ├── 1033 │ │ │ │ └── styles.css │ │ │ ├── html │ │ │ │ └── 1033 │ │ │ │ │ ├── Type1Settings.htm │ │ │ │ │ ├── Type2Settings.htm │ │ │ │ │ └── default.htm │ │ │ ├── images │ │ │ │ ├── logo.png │ │ │ │ └── spacer.gif │ │ │ ├── readme.txt │ │ │ ├── scripts │ │ │ │ └── 1033 │ │ │ │ │ └── default.js │ │ │ ├── templates │ │ │ │ └── 1033 │ │ │ │ │ ├── Templates.inf │ │ │ │ │ ├── Type1 │ │ │ │ │ ├── ContextMenu.cpp │ │ │ │ │ ├── Download.cpp │ │ │ │ │ ├── GetInfo.cpp │ │ │ │ │ ├── License.cpp │ │ │ │ │ ├── List.cpp │ │ │ │ │ ├── Login.cpp │ │ │ │ │ ├── Notify.cpp │ │ │ │ │ ├── Purchase.cpp │ │ │ │ │ ├── SendMessage.cpp │ │ │ │ │ ├── Threads.cpp │ │ │ │ │ ├── UpdateDevice.cpp │ │ │ │ │ ├── resource.h │ │ │ │ │ ├── sample.cpp │ │ │ │ │ ├── sample.def │ │ │ │ │ ├── sample.h │ │ │ │ │ ├── sample.rc │ │ │ │ │ ├── sample.rgs │ │ │ │ │ ├── stdafx.cpp │ │ │ │ │ └── stdafx.h │ │ │ │ │ └── Type2 │ │ │ │ │ ├── StdAfx.cpp │ │ │ │ │ ├── StdAfx.h │ │ │ │ │ ├── dll.cpp │ │ │ │ │ ├── resource.h │ │ │ │ │ ├── sample.cpp │ │ │ │ │ ├── sample.def │ │ │ │ │ ├── sample.h │ │ │ │ │ ├── sample.htm │ │ │ │ │ ├── sample.rc │ │ │ │ │ └── sample.rgs │ │ │ ├── wmpservices.ico │ │ │ ├── wmpservices.vsdir │ │ │ └── wmpservices.vsz │ │ └── wmpwiz │ │ │ ├── html │ │ │ └── 1033 │ │ │ │ ├── default.htm │ │ │ │ ├── dspchoice.htm │ │ │ │ ├── uichoice.htm │ │ │ │ ├── uisettings.htm │ │ │ │ └── vissettings.htm │ │ │ ├── images │ │ │ ├── logo.png │ │ │ └── spacer.gif │ │ │ ├── readme.txt │ │ │ ├── scripts │ │ │ └── 1033 │ │ │ │ └── default.js │ │ │ ├── templates │ │ │ └── 1033 │ │ │ │ ├── Templates.inf │ │ │ │ ├── common │ │ │ │ ├── CPropertyDialog.h │ │ │ │ └── events.cpp │ │ │ │ ├── dspplugin │ │ │ │ ├── PropertyPage.cpp │ │ │ │ ├── PropertyPage.h │ │ │ │ ├── PropertyPage.rgs │ │ │ │ ├── StdAfx.cpp │ │ │ │ ├── StdAfx.h │ │ │ │ ├── dll.cpp │ │ │ │ ├── dsppluginPS │ │ │ │ │ ├── ps.def │ │ │ │ │ ├── ps.h │ │ │ │ │ ├── ps.rc │ │ │ │ │ ├── ps_i.c │ │ │ │ │ ├── resource.h │ │ │ │ │ └── sample.idl │ │ │ │ ├── resource.h │ │ │ │ ├── sample.cpp │ │ │ │ ├── sample.def │ │ │ │ ├── sample.h │ │ │ │ ├── sample.jpg │ │ │ │ ├── sample.rc │ │ │ │ ├── sample.rgs │ │ │ │ ├── sample_video.cpp │ │ │ │ └── sample_video.h │ │ │ │ ├── renderingplugin │ │ │ │ ├── PropertyPage.cpp │ │ │ │ ├── PropertyPage.h │ │ │ │ ├── PropertyPage.rgs │ │ │ │ ├── StdAfx.cpp │ │ │ │ ├── StdAfx.h │ │ │ │ ├── dll.cpp │ │ │ │ ├── resource.h │ │ │ │ ├── sample.cpp │ │ │ │ ├── sample.def │ │ │ │ ├── sample.h │ │ │ │ ├── sample.jpg │ │ │ │ ├── sample.rc │ │ │ │ └── sample.rgs │ │ │ │ ├── uiplugin │ │ │ │ ├── CPluginWindow.h │ │ │ │ ├── StdAfx.cpp │ │ │ │ ├── StdAfx.h │ │ │ │ ├── dll.cpp │ │ │ │ ├── resource.h │ │ │ │ ├── sample.cpp │ │ │ │ ├── sample.def │ │ │ │ ├── sample.h │ │ │ │ ├── sample.rc │ │ │ │ └── sample.rgs │ │ │ │ └── visplugin │ │ │ │ ├── StdAfx.cpp │ │ │ │ ├── StdAfx.h │ │ │ │ ├── dll.cpp │ │ │ │ ├── resource.h │ │ │ │ ├── sample.cpp │ │ │ │ ├── sample.def │ │ │ │ ├── sample.h │ │ │ │ ├── sample.idl │ │ │ │ ├── sample.rc │ │ │ │ ├── sample.rgs │ │ │ │ └── sample.wms │ │ │ ├── wmpwiz.ico │ │ │ ├── wmpwiz.vsdir │ │ │ └── wmpwiz.vsz │ ├── cpp │ │ ├── RemoteSkin │ │ │ ├── MainDlg.cpp │ │ │ ├── MainDlg.h │ │ │ ├── OpenURLDlg.cpp │ │ │ ├── OpenURLDlg.h │ │ │ ├── RemoteHost.cpp │ │ │ ├── RemoteHost.h │ │ │ ├── RemoteSkin.cpp │ │ │ ├── RemoteSkin.rc │ │ │ ├── RemoteSkin.sln │ │ │ ├── RemoteSkin.vcproj │ │ │ ├── RemoteSkin.wms │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── readme.txt │ │ │ └── resource.h │ │ ├── WMPHost │ │ │ ├── CWMPEventDispatch.cpp │ │ │ ├── CWMPEventDispatch.h │ │ │ ├── CWMPHost.cpp │ │ │ ├── CWMPHost.h │ │ │ ├── StdAfx.h │ │ │ ├── dialogs.h │ │ │ ├── readme.txt │ │ │ ├── resource.h │ │ │ ├── wmphost.cpp │ │ │ ├── wmphost.rc │ │ │ ├── wmphost.sln │ │ │ └── wmphost.vcproj │ │ └── WMPML │ │ │ ├── MainDlg.cpp │ │ │ ├── MainDlg.h │ │ │ ├── QueryDlg.cpp │ │ │ ├── QueryDlg.h │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── WmpML.rc │ │ │ ├── WmpML.sln │ │ │ ├── WmpML.vcproj │ │ │ ├── readme.txt │ │ │ └── resource.h │ ├── dotNet │ │ ├── SchemaReader │ │ │ ├── App.ico │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Form1.cs │ │ │ ├── Form1.resx │ │ │ ├── SchemaReader.csproj │ │ │ ├── SchemaReader.sln │ │ │ └── readme.txt │ │ ├── VB │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Form1.resx │ │ │ ├── Form1.vb │ │ │ ├── Library.resx │ │ │ ├── Library.vb │ │ │ ├── WMP_VB.sln │ │ │ ├── WMP_VB.vbproj │ │ │ ├── app.ico │ │ │ └── readme.txt │ │ └── csharp │ │ │ ├── App.ico │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Form1.cs │ │ │ ├── Form1.resx │ │ │ ├── Library.cs │ │ │ ├── Library.resx │ │ │ ├── WMPCSharp.csproj │ │ │ ├── WMPCSharp.sln │ │ │ └── readme.txt │ ├── media │ │ ├── ccsample.smi │ │ ├── glass.wmv │ │ ├── house.wma │ │ ├── jeanne.wma │ │ ├── laure.wma │ │ ├── laure_multi.wma │ │ ├── loader.hta │ │ ├── mellow.wma │ │ ├── multilang.wma │ │ ├── readme.txt │ │ ├── rendering.asf │ │ ├── seattle.wmv │ │ └── smooth.wmv │ ├── skins │ │ ├── bigdrawer │ │ │ ├── background.bmp │ │ │ ├── bigdrawer.js │ │ │ ├── bigdrawer.wms │ │ │ ├── dial.bmp │ │ │ ├── dialmap.bmp │ │ │ ├── hover.bmp │ │ │ ├── map.bmp │ │ │ ├── readme.txt │ │ │ ├── thumb.bmp │ │ │ └── videodrawer.bmp │ │ ├── logging │ │ │ ├── debugoff.reg │ │ │ ├── debugon.reg │ │ │ ├── logging.wms │ │ │ └── readme.txt │ │ ├── showplay │ │ │ ├── button.bmp │ │ │ ├── button_disabled.bmp │ │ │ ├── button_down.bmp │ │ │ ├── button_hover.bmp │ │ │ ├── readme.txt │ │ │ └── showplay.wms │ │ ├── textplay │ │ │ ├── readme.txt │ │ │ └── textplay.wms │ │ └── tiny │ │ │ ├── background.bmp │ │ │ ├── hover.bmp │ │ │ ├── map.bmp │ │ │ ├── readme.txt │ │ │ └── tiny.wms │ ├── stores │ │ ├── cpp │ │ │ ├── SetContentDistributor.cpp │ │ │ └── readme.txt │ │ └── html │ │ │ ├── readme.txt │ │ │ └── sample.asp │ └── webpages │ │ ├── closecap │ │ ├── closecap.htm │ │ └── readme.txt │ │ ├── detection │ │ ├── IEWMP64.htm │ │ ├── IEWMPobj.htm │ │ ├── NS71obj.htm │ │ ├── PlayerDetection.js │ │ ├── WMPDownload.htm │ │ ├── basic.css │ │ ├── detection.htm │ │ ├── readme.txt │ │ └── wmt-title.jpg │ │ ├── embedded │ │ ├── embedded.htm │ │ └── readme.txt │ │ ├── markers │ │ ├── markers.htm │ │ └── readme.txt │ │ ├── minocx │ │ ├── minocx.htm │ │ └── readme.txt │ │ ├── multilang │ │ ├── multilang.htm │ │ └── readme.txt │ │ ├── scriptcom │ │ ├── readme.txt │ │ └── scriptcom.htm │ │ └── urlflip │ │ ├── leftpage.htm │ │ ├── readme.txt │ │ ├── ritepage.htm │ │ └── urlflip.htm ├── WindowsAnimation │ ├── AppDriven │ │ ├── AppDriven.sln │ │ ├── AppDriven.vcproj │ │ ├── Application.cpp │ │ ├── MainWindow.cpp │ │ ├── MainWindow.h │ │ ├── ManagerEventHandler.h │ │ ├── UIAnimationHelper.h │ │ ├── UIAnimationSample.h │ │ └── readme.txt │ ├── CustomInterpolator │ │ ├── Application.cpp │ │ ├── CustomInterpolator.h │ │ ├── CustomInterpolator.sln │ │ ├── CustomInterpolator.vcproj │ │ ├── DeclareDPIAware.manifest │ │ ├── LayoutManager.cpp │ │ ├── LayoutManager.h │ │ ├── MainWindow.cpp │ │ ├── MainWindow.h │ │ ├── ManagerEventHandler.h │ │ ├── Thumbnail.cpp │ │ ├── Thumbnail.h │ │ ├── UIAnimationHelper.h │ │ ├── UIAnimationSample.h │ │ └── readme.txt │ ├── GridLayout │ │ ├── Application.cpp │ │ ├── DeclareDPIAware.manifest │ │ ├── GridLayout.sln │ │ ├── GridLayout.vcproj │ │ ├── LayoutManager.cpp │ │ ├── LayoutManager.h │ │ ├── MainWindow.cpp │ │ ├── MainWindow.h │ │ ├── ManagerEventHandler.h │ │ ├── Thumbnail.cpp │ │ ├── Thumbnail.h │ │ ├── UIAnimationHelper.h │ │ ├── UIAnimationSample.h │ │ └── readme.txt │ ├── PriorityComparison │ │ ├── Application.cpp │ │ ├── DeclareDPIAware.manifest │ │ ├── LayoutManager.cpp │ │ ├── LayoutManager.h │ │ ├── MainWindow.cpp │ │ ├── MainWindow.h │ │ ├── ManagerEventHandler.h │ │ ├── PriorityComparison.h │ │ ├── PriorityComparison.sln │ │ ├── PriorityComparison.vcproj │ │ ├── Thumbnail.cpp │ │ ├── Thumbnail.h │ │ ├── UIAnimationHelper.h │ │ ├── UIAnimationSample.h │ │ └── readme.txt │ └── TimerDriven │ │ ├── Application.cpp │ │ ├── MainWindow.cpp │ │ ├── MainWindow.h │ │ ├── TimerDriven.sln │ │ ├── TimerDriven.vcproj │ │ ├── TimerEventHandler.h │ │ ├── UIAnimationHelper.h │ │ ├── UIAnimationSample.h │ │ └── readme.txt ├── audio │ ├── CaptureSharedEventDriven │ │ ├── CmdLine.cpp │ │ ├── CmdLine.h │ │ ├── ReadMe.txt │ │ ├── WASAPICapture.cpp │ │ ├── WASAPICapture.h │ │ ├── WASAPICaptureSharedEventDriven.cpp │ │ ├── WASAPICaptureSharedEventDriven.sln │ │ ├── WASAPICaptureSharedEventDriven.vcproj │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ ├── CaptureSharedTimerDriven │ │ ├── CmdLine.cpp │ │ ├── CmdLine.h │ │ ├── ReadMe.txt │ │ ├── WASAPICapture.cpp │ │ ├── WASAPICapture.h │ │ ├── WASAPICaptureSharedTimerDriven.cpp │ │ ├── WASAPICaptureSharedTimerDriven.sln │ │ ├── WASAPICaptureSharedTimerDriven.vcproj │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ ├── DuckingCaptureSample │ │ ├── ChatTransport.h │ │ ├── DuckingCaptureSample.cpp │ │ ├── DuckingCaptureSample.ico │ │ ├── DuckingCaptureSample.rc │ │ ├── DuckingCaptureSample.sln │ │ ├── DuckingCaptureSample.vcproj │ │ ├── ReadMe.txt │ │ ├── WasapiChat.Cpp │ │ ├── WasapiChat.h │ │ ├── WaveChat.cpp │ │ ├── WaveChat.h │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ ├── DuckingMediaPlayer │ │ ├── DuckingMediaPlayerSample.cpp │ │ ├── DuckingMediaPlayerSample.ico │ │ ├── DuckingMediaPlayerSample.rc │ │ ├── DuckingMediaPlayerSample.sln │ │ ├── DuckingMediaPlayerSample.vcproj │ │ ├── MediaPlayer.cpp │ │ ├── MediaPlayer.h │ │ ├── ReadMe.txt │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ ├── EndpointVolume │ │ ├── CmdLine.cpp │ │ ├── CmdLine.h │ │ ├── EndpointVolumeChanger.sln │ │ ├── EndpointVolumeChanger.vcproj │ │ ├── ReadMe.txt │ │ ├── endpointvolumechanger.cpp │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ ├── RenderExclusiveEventDriven │ │ ├── CmdLine.cpp │ │ ├── CmdLine.h │ │ ├── ReadMe.txt │ │ ├── ToneGen.h │ │ ├── WASAPIRenderExclusiveEventDriven.cpp │ │ ├── WASAPIRenderExclusiveEventDriven.sln │ │ ├── WASAPIRenderExclusiveEventDriven.vcproj │ │ ├── WASAPIRenderer.cpp │ │ ├── WASAPIRenderer.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ ├── RenderExclusiveTimerDriven │ │ ├── CmdLine.cpp │ │ ├── CmdLine.h │ │ ├── ReadMe.txt │ │ ├── ToneGen.h │ │ ├── WASAPIRenderExclusiveTimerDriven.cpp │ │ ├── WASAPIRenderExclusiveTimerDriven.sln │ │ ├── WASAPIRenderExclusiveTimerDriven.vcproj │ │ ├── WASAPIRenderer.cpp │ │ ├── WASAPIRenderer.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ ├── RenderSharedEventDriven │ │ ├── CmdLine.cpp │ │ ├── CmdLine.h │ │ ├── ReadMe.txt │ │ ├── ToneGen.h │ │ ├── WASAPIRenderSharedEventDriven.cpp │ │ ├── WASAPIRenderSharedEventDriven.sln │ │ ├── WASAPIRenderSharedEventDriven.vcproj │ │ ├── WASAPIRenderer.cpp │ │ ├── WASAPIRenderer.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ ├── RenderSharedTimerDriven │ │ ├── CmdLine.cpp │ │ ├── CmdLine.h │ │ ├── ReadMe.txt │ │ ├── ToneGen.h │ │ ├── WASAPIRenderSharedTimerDriven.cpp │ │ ├── WASAPIRenderSharedTimerDriven.sln │ │ ├── WASAPIRenderSharedTimerDriven.vcproj │ │ ├── WASAPIRenderer.cpp │ │ ├── WASAPIRenderer.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ ├── aecmicarray │ │ ├── AecKsBinder.cpp │ │ ├── AecKsBinder.h │ │ ├── AecSDKDemo.cpp │ │ ├── AecSDKDemo.sln │ │ ├── AecSDKDemo.vcproj │ │ ├── mediabuf.h │ │ └── readme.rtf │ ├── midiplyr │ │ ├── Debug.c │ │ ├── Debug.h │ │ ├── GLOBAL.h │ │ ├── MainWND.c │ │ ├── MakeFile │ │ ├── MidiPlyr.Ico │ │ ├── MidiPlyr.Rc │ │ ├── MidiPlyr.Rcv │ │ ├── MidiPlyr.c │ │ ├── MidiPlyr.h │ │ ├── MulDiv32.h │ │ ├── ReadMe.Txt │ │ ├── SEQ.h │ │ ├── SEQUENCE.c │ │ ├── SMF.c │ │ ├── SMF.h │ │ ├── SMFI.h │ │ ├── SMFREAD.c │ │ ├── TIMEWND.c │ │ ├── ToolBAR.Bmp │ │ ├── UIUTILS.c │ │ └── midiplyr.RES │ ├── multichan │ │ ├── check.ico │ │ ├── childview.cpp │ │ ├── childview.h │ │ ├── dlgdest.cpp │ │ ├── dlgdest.h │ │ ├── dlgsrc.cpp │ │ ├── dlgsrc.h │ │ ├── mainfrm.cpp │ │ ├── mainfrm.h │ │ ├── makefile │ │ ├── multichan.cpp │ │ ├── multichan.h │ │ ├── multichan.ico │ │ ├── multichan.rc │ │ ├── readme.txt │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── toolbar.bmp │ │ ├── wave.cpp │ │ └── wave.h │ └── osd │ │ ├── OSD.cpp │ │ ├── OSD.h │ │ ├── OSD.rc │ │ ├── OSD.sln │ │ ├── OSD.vcproj │ │ ├── endpointMonitor.cpp │ │ ├── endpointMonitor.h │ │ ├── readme.txt │ │ ├── stdafx.cpp │ │ └── stdafx.h ├── direct3d │ └── direct3d9ex │ │ ├── BackgroundThread.cpp │ │ ├── D3D9ExSample.cpp │ │ ├── D3D9ExSample.sln │ │ ├── D3D9ExSample.vcproj │ │ ├── D3D9ExSample_2005.sln │ │ ├── D3D9ExSample_2005.vcproj │ │ ├── Readme.txt │ │ ├── TxtHelper.h │ │ └── cursor.dds ├── directshow │ ├── baseclasses │ │ ├── amextra.cpp │ │ ├── amextra.h │ │ ├── amfilter.cpp │ │ ├── amfilter.h │ │ ├── amvideo.cpp │ │ ├── arithutil.cpp │ │ ├── baseclasses.sln │ │ ├── baseclasses.vcproj │ │ ├── cache.h │ │ ├── checkbmi.h │ │ ├── combase.cpp │ │ ├── combase.h │ │ ├── cprop.cpp │ │ ├── cprop.h │ │ ├── ctlutil.cpp │ │ ├── ctlutil.h │ │ ├── ddmm.cpp │ │ ├── ddmm.h │ │ ├── dllentry.cpp │ │ ├── dllsetup.cpp │ │ ├── dllsetup.h │ │ ├── dxmperf.h │ │ ├── fourcc.h │ │ ├── measure.h │ │ ├── msgthrd.h │ │ ├── mtype.cpp │ │ ├── mtype.h │ │ ├── outputq.cpp │ │ ├── outputq.h │ │ ├── perflog.cpp │ │ ├── perflog.h │ │ ├── perfstruct.h │ │ ├── pstream.cpp │ │ ├── pstream.h │ │ ├── pullpin.cpp │ │ ├── pullpin.h │ │ ├── refclock.cpp │ │ ├── refclock.h │ │ ├── reftime.h │ │ ├── renbase.cpp │ │ ├── renbase.h │ │ ├── schedule.cpp │ │ ├── schedule.h │ │ ├── seekpt.cpp │ │ ├── seekpt.h │ │ ├── source.cpp │ │ ├── source.h │ │ ├── streams.h │ │ ├── strmctl.cpp │ │ ├── strmctl.h │ │ ├── sysclock.cpp │ │ ├── sysclock.h │ │ ├── transfrm.cpp │ │ ├── transfrm.h │ │ ├── transip.cpp │ │ ├── transip.h │ │ ├── videoctl.cpp │ │ ├── videoctl.h │ │ ├── vtrans.cpp │ │ ├── vtrans.h │ │ ├── winctrl.cpp │ │ ├── winctrl.h │ │ ├── winutil.cpp │ │ ├── winutil.h │ │ ├── wxdebug.cpp │ │ ├── wxdebug.h │ │ ├── wxlist.cpp │ │ ├── wxlist.h │ │ ├── wxutil.cpp │ │ └── wxutil.h │ ├── capture │ │ ├── amcap │ │ │ ├── SampleCGB.cpp │ │ │ ├── SampleCGB.h │ │ │ ├── amcap.cpp │ │ │ ├── amcap.h │ │ │ ├── amcap.rc │ │ │ ├── amcap.sln │ │ │ ├── amcap.vcproj │ │ │ ├── crossbar.cpp │ │ │ ├── crossbar.h │ │ │ ├── status.cpp │ │ │ ├── status.h │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── dvapp │ │ │ ├── CDVGraph.cpp │ │ │ ├── CDVGraph.h │ │ │ ├── TOOLBAR.BMP │ │ │ ├── dbgsup.h │ │ │ ├── dvapp.cpp │ │ │ ├── dvapp.rc │ │ │ ├── dvapp.sln │ │ │ ├── dvapp.vcproj │ │ │ └── resource.h │ │ └── playcap │ │ │ ├── playcap.cpp │ │ │ ├── playcap.h │ │ │ ├── playcap.rc │ │ │ ├── playcap.sln │ │ │ └── playcap.vcproj │ ├── common │ │ ├── BaseWindow.cpp │ │ ├── BaseWindow.h │ │ ├── button.cpp │ │ ├── button.h │ │ ├── combobox.cpp │ │ ├── combobox.h │ │ ├── dialog.cpp │ │ ├── dialog.h │ │ ├── dshowutil.h │ │ ├── listbox.cpp │ │ ├── listbox.h │ │ ├── slider.cpp │ │ ├── slider.h │ │ ├── smartptr.h │ │ ├── toolbar.cpp │ │ ├── toolbar.h │ │ ├── utils.h │ │ ├── wincontrol.cpp │ │ └── wincontrol.h │ ├── dmo │ │ └── dmodemo │ │ │ ├── appstream.cpp │ │ │ ├── appstream.h │ │ │ ├── debug.h │ │ │ ├── dmodemo.cpp │ │ │ ├── dmodemo.rc │ │ │ ├── dmodemo.sln │ │ │ ├── dmodemo.vcproj │ │ │ ├── dsutil.cpp │ │ │ ├── dsutil.h │ │ │ ├── dxutil.cpp │ │ │ ├── dxutil.h │ │ │ ├── resource.h │ │ │ ├── wave.c │ │ │ └── wave.h │ ├── dvd │ │ └── dvdsample │ │ │ ├── dialogs.cpp │ │ │ ├── dialogs.h │ │ │ ├── dvdcore.cpp │ │ │ ├── dvdcore.h │ │ │ ├── dvdsample.cpp │ │ │ ├── dvdsample.h │ │ │ ├── dvdsample.rc │ │ │ ├── dvdsample.sln │ │ │ ├── dvdsample.vcproj │ │ │ ├── resource.h │ │ │ ├── stringutil.cpp │ │ │ ├── stringutil.h │ │ │ └── toolbar.bmp │ ├── filters │ │ ├── async │ │ │ ├── MemFile.vcproj │ │ │ ├── async.sln │ │ │ ├── async.vcproj │ │ │ ├── base │ │ │ │ ├── asyncio.cpp │ │ │ │ └── asyncrdr.cpp │ │ │ ├── filter │ │ │ │ ├── asyncflt.cpp │ │ │ │ ├── asyncflt.def │ │ │ │ └── asyncflt.h │ │ │ ├── include │ │ │ │ ├── asyncio.h │ │ │ │ └── asyncrdr.h │ │ │ └── memfile │ │ │ │ ├── memfile.cpp │ │ │ │ └── memfile.h │ │ ├── ball │ │ │ ├── ball.cpp │ │ │ ├── ball.def │ │ │ ├── ball.h │ │ │ ├── ball.rc │ │ │ ├── ball.sln │ │ │ ├── ball.vcproj │ │ │ ├── fball.cpp │ │ │ ├── fball.h │ │ │ └── resource.h │ │ ├── dump │ │ │ ├── dump.cpp │ │ │ ├── dump.def │ │ │ ├── dump.h │ │ │ ├── dump.rc │ │ │ ├── dump.sln │ │ │ ├── dump.vcproj │ │ │ └── dumpuids.h │ │ ├── ezrgb24 │ │ │ ├── ezprop.cpp │ │ │ ├── ezprop.h │ │ │ ├── ezprop.rc │ │ │ ├── ezrgb24.cpp │ │ │ ├── ezrgb24.def │ │ │ ├── ezrgb24.h │ │ │ ├── ezrgb24.sln │ │ │ ├── ezrgb24.vcproj │ │ │ ├── ezuids.h │ │ │ ├── iez.h │ │ │ └── resource.h │ │ ├── gargle │ │ │ ├── gargle.cpp │ │ │ ├── gargle.def │ │ │ ├── gargle.sln │ │ │ ├── gargle.vcproj │ │ │ ├── gargprop.cpp │ │ │ ├── gargprop.h │ │ │ ├── gargprop.rc │ │ │ ├── garguids.h │ │ │ ├── igargle.h │ │ │ └── resource.h │ │ ├── inftee │ │ │ ├── inftee.cpp │ │ │ ├── inftee.def │ │ │ ├── inftee.h │ │ │ ├── inftee.sln │ │ │ └── inftee.vcproj │ │ ├── metronome │ │ │ ├── metronom.cpp │ │ │ ├── metronom.def │ │ │ ├── metronom.h │ │ │ ├── metronome.sln │ │ │ └── metronome.vcproj │ │ ├── psiparser │ │ │ ├── ParserUIDs.h │ │ │ ├── PsiParser.cpp │ │ │ ├── PsiParser.def │ │ │ ├── PsiParser.h │ │ │ ├── PsiParser.rc │ │ │ ├── dbg.h │ │ │ ├── iMpeg2PsiParser.h │ │ │ ├── mp2const.h │ │ │ ├── parsemac.h │ │ │ ├── progprop.cpp │ │ │ ├── progprop.h │ │ │ ├── psiobj.h │ │ │ ├── psiparser.sln │ │ │ ├── psiparser.vcproj │ │ │ └── resource.h │ │ ├── pushsource │ │ │ ├── DibHelper.cpp │ │ │ ├── DibHelper.h │ │ │ ├── PushGuids.h │ │ │ ├── PushSource.def │ │ │ ├── PushSource.h │ │ │ ├── PushSource.rc │ │ │ ├── PushSourceBitmap.cpp │ │ │ ├── PushSourceBitmapSet.cpp │ │ │ ├── PushSourceDesktop.cpp │ │ │ ├── pushsource.sln │ │ │ ├── pushsource.vcproj │ │ │ └── setup.cpp │ │ ├── sampvid │ │ │ ├── sampvid.cpp │ │ │ ├── sampvid.def │ │ │ ├── sampvid.h │ │ │ ├── sampvid.rc │ │ │ ├── sampvid.sln │ │ │ ├── sampvid.vcproj │ │ │ ├── videotxt.cpp │ │ │ ├── vidprop.cpp │ │ │ └── vidprop.h │ │ ├── scope │ │ │ ├── resource.h │ │ │ ├── scope.cpp │ │ │ ├── scope.def │ │ │ ├── scope.h │ │ │ ├── scope.rc │ │ │ ├── scope.sln │ │ │ └── scope.vcproj │ │ ├── synth │ │ │ ├── dynsrc.cpp │ │ │ ├── dynsrc.h │ │ │ ├── isynth.h │ │ │ ├── resource.h │ │ │ ├── synth.cpp │ │ │ ├── synth.def │ │ │ ├── synth.h │ │ │ ├── synth.rc │ │ │ ├── synth.sln │ │ │ ├── synth.vcproj │ │ │ ├── synthprp.cpp │ │ │ └── synthprp.h │ │ └── wavdest │ │ │ ├── wavdest.cpp │ │ │ ├── wavdest.def │ │ │ ├── wavdest.h │ │ │ ├── wavdest.sln │ │ │ └── wavdest.vcproj │ ├── misc │ │ ├── dmoenum │ │ │ ├── DMOEnum.rc │ │ │ ├── dmoenum.h │ │ │ ├── dmoenum.sln │ │ │ ├── dmoenum.vcproj │ │ │ ├── maindialog.cpp │ │ │ ├── maindialog.h │ │ │ ├── namedguid.cpp │ │ │ ├── namedguid.h │ │ │ ├── res │ │ │ │ └── DMOEnum.rc2 │ │ │ ├── resource.h │ │ │ └── winmain.cpp │ │ ├── mapper │ │ │ ├── Mapper.h │ │ │ ├── Mapper.rc │ │ │ ├── fil_data.h │ │ │ ├── maindialog.cpp │ │ │ ├── maindialog.h │ │ │ ├── mapper.sln │ │ │ ├── mapper.vcproj │ │ │ ├── res │ │ │ │ └── Mapper.rc2 │ │ │ ├── resource.h │ │ │ ├── types.h │ │ │ └── winmain.cpp │ │ └── sysenum │ │ │ ├── SysEnum.h │ │ │ ├── SysEnum.rc │ │ │ ├── maindialog.cpp │ │ │ ├── maindialog.h │ │ │ ├── res │ │ │ └── SysEnum.rc2 │ │ │ ├── resource.h │ │ │ ├── sysenum.sln │ │ │ ├── sysenum.vcproj │ │ │ └── winmain.cpp │ ├── players │ │ ├── cutscene │ │ │ ├── cutscene.cpp │ │ │ ├── cutscene.h │ │ │ ├── cutscene.sln │ │ │ ├── cutscene.vcproj │ │ │ └── main.cpp │ │ └── dshowplayer │ │ │ ├── DShowPlayer.cpp │ │ │ ├── DShowPlayer.h │ │ │ ├── DShowPlayer.rc │ │ │ ├── DShowPlayer.sln │ │ │ ├── DShowPlayer.vcproj │ │ │ ├── MainWindow.cpp │ │ │ ├── MainWindow.h │ │ │ ├── ReadMe.txt │ │ │ ├── images │ │ │ ├── slider.bmp │ │ │ ├── toolbar1.bmp │ │ │ ├── toolbar2.bmp │ │ │ └── volume.bmp │ │ │ ├── resource.h │ │ │ ├── video.cpp │ │ │ ├── video.h │ │ │ └── winmain.cpp │ └── vmr9 │ │ ├── ticker │ │ ├── Ticker.rc │ │ ├── bitmap.cpp │ │ ├── bitmap.h │ │ ├── resource.h │ │ ├── ticker.bmp │ │ ├── ticker.cpp │ │ ├── ticker.h │ │ ├── ticker.sln │ │ └── ticker.vcproj │ │ ├── vmr9allocator │ │ ├── Allocator.cpp │ │ ├── Allocator.h │ │ ├── PlaneScene.cpp │ │ ├── PlaneScene.h │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── resource.h │ │ ├── util.h │ │ ├── vmr9allocator.cpp │ │ ├── vmr9allocator.h │ │ ├── vmr9allocator.rc │ │ ├── vmr9allocator.sln │ │ └── vmr9allocator.vcproj │ │ ├── vmr9compositor │ │ ├── ControlDlg.cpp │ │ ├── MultiSelectFileList.h │ │ ├── MyCompositor9.cpp │ │ ├── MyCompositor9.h │ │ ├── resource.h │ │ ├── vmr9compositor.cpp │ │ ├── vmr9compositor.h │ │ ├── vmr9compositor.rc │ │ ├── vmr9compositor.sln │ │ └── vmr9compositor.vcproj │ │ ├── vmrplayer │ │ ├── app.cpp │ │ ├── app.h │ │ ├── commands.cpp │ │ ├── persist.cpp │ │ ├── project.h │ │ ├── resource.h │ │ ├── toolbar.bmp │ │ ├── vcdplyer.cpp │ │ ├── vcdplyer.h │ │ ├── vcdplyer.rc │ │ ├── vmr.bmp │ │ ├── vmrplayer.sln │ │ └── vmrplayer.vcproj │ │ ├── watermark │ │ ├── Watermark.rc │ │ ├── WideWatermark.bmp │ │ ├── bitmap.cpp │ │ ├── bitmap.h │ │ ├── resource.h │ │ ├── watermark.cpp │ │ ├── watermark.h │ │ ├── watermark.sln │ │ └── watermark.vcproj │ │ └── windowless │ │ ├── Windowless.rc │ │ ├── resource.h │ │ ├── windowless.cpp │ │ ├── windowless.h │ │ ├── windowless.sln │ │ └── windowless.vcproj ├── gameux │ ├── GameExplorerAPISample.sln │ ├── cpp │ │ ├── GameExplorerAPISample.cpp │ │ └── GameExplorerAPISample.vcproj │ ├── gdf │ │ ├── GDFSchema.v1.0.0.0.xsd │ │ ├── GDFSchema.v1.0.0.0.xsx │ │ ├── GameDefinitionFile.rc │ │ ├── GameDefinitionFile.vcproj │ │ ├── GamesExplorerBaseTypes.v1.0.0.0.h │ │ ├── GamesExplorerBaseTypes.v1.0.0.0.xsd │ │ ├── GamesExplorerBaseTypes.v1.0.0.0.xsx │ │ ├── gdf.ico │ │ ├── resource.h │ │ ├── spider.gdf │ │ └── spider.png │ └── readme.txt ├── gdi │ ├── icm │ │ ├── devicemodelplugin │ │ │ ├── DeviceModelPluginSample.cpp │ │ │ ├── DeviceModelPluginSample.def │ │ │ ├── DeviceModelPluginSample.h │ │ │ ├── DeviceModelPluginSample.idl │ │ │ ├── DeviceModelPluginSample.rc │ │ │ ├── DeviceModelPluginSample.rgs │ │ │ ├── DeviceModelPluginSample.sln │ │ │ ├── DeviceModelPluginSample.vcproj │ │ │ ├── DeviceModelPluginSample_i.c │ │ │ ├── DeviceModelPluginSample_p.c │ │ │ ├── PluginSampleObject.cpp │ │ │ ├── PluginSampleObject.h │ │ │ ├── Readme.txt │ │ │ ├── Resource.h │ │ │ ├── SampleDeviceModelPlugin.cdmp │ │ │ ├── dlldatax.c │ │ │ ├── dlldatax.h │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ └── gamutmapmodelplugin │ │ │ ├── GamutMapModelPluginSample.cpp │ │ │ ├── GamutMapModelPluginSample.def │ │ │ ├── GamutMapModelPluginSample.h │ │ │ ├── GamutMapModelPluginSample.idl │ │ │ ├── GamutMapModelPluginSample.rc │ │ │ ├── GamutMapModelPluginSample.rgs │ │ │ ├── GamutMapModelPluginSample.sln │ │ │ ├── GamutMapModelPluginSample.vcproj │ │ │ ├── GamutMapModelPluginSample_i.c │ │ │ ├── GamutMapModelPluginSample_p.c │ │ │ ├── PluginSampleObject.cpp │ │ │ ├── PluginSampleObject.h │ │ │ ├── Readme.txt │ │ │ ├── Resource.h │ │ │ ├── SampleGamutMapModelPlugin.gmmp │ │ │ ├── dlldatax.h │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ ├── printer │ │ ├── Common.h │ │ ├── Enumprt.c │ │ ├── Enumprt.h │ │ ├── Getcaps.c │ │ ├── Getcaps.h │ │ ├── Getpdriv.c │ │ ├── Getpdriv.h │ │ ├── Makefile │ │ ├── Paint.c │ │ ├── Paint.h │ │ ├── Printer.Rc │ │ ├── Printer.bmp │ │ ├── Printer.c │ │ ├── Printer.def │ │ ├── Printer.h │ │ ├── Printer.ico │ │ ├── ReadMe.Txt │ │ └── Resource.h │ └── wcs │ │ ├── ColorSamples.cpp │ │ ├── ColorSamples.h │ │ ├── ColorTranslationSample.rc │ │ ├── ColorTranslationSample.sln │ │ ├── ColorTranslationSample.vcproj │ │ ├── DefaultIntentWorkaround.reg │ │ ├── Main.cpp │ │ ├── Readme.txt │ │ ├── Resource.h │ │ ├── Utilities.cpp │ │ ├── Utilities.h │ │ ├── precomp.h │ │ └── resources │ │ ├── CMYKPrinter.cdmp │ │ ├── InputImage.bmp │ │ ├── PluginProfile.cdmp │ │ ├── PluginProfile.gmmp │ │ └── RGBPrinter.cdmp ├── mediafoundation │ ├── AudioClip │ │ ├── AudioClip.sln │ │ ├── AudioClip.vcproj │ │ ├── main.cpp │ │ └── readme.txt │ ├── DXVA_HD │ │ ├── Application.cpp │ │ ├── Application.h │ │ ├── D3DHelper.cpp │ │ ├── D3DHelper.h │ │ ├── DXVA2_HD.rc │ │ ├── DXVAHD_Sample.h │ │ ├── DXVA_HD.sln │ │ ├── DXVA_HD.vcproj │ │ ├── dxvahd_utils.cpp │ │ ├── dxvahd_utils.h │ │ ├── readme.txt │ │ ├── resource.h │ │ ├── settings.h │ │ ├── substream.bmp │ │ ├── utils.h │ │ ├── video.cpp │ │ ├── video.h │ │ └── winmain.cpp │ ├── Decoder │ │ ├── BufferLock.h │ │ ├── Decoder.sln │ │ ├── Decoder.vcproj │ │ ├── Dll.cpp │ │ ├── decoder.cpp │ │ ├── decoder.def │ │ ├── decoder.h │ │ └── readme.txt │ ├── MFCaptureD3D │ │ ├── BufferLock.h │ │ ├── MFCaptureD3D.h │ │ ├── MFCaptureD3D.rc │ │ ├── MFCaptureD3D.sln │ │ ├── MFCaptureD3D.vcproj │ │ ├── device.cpp │ │ ├── device.h │ │ ├── preview.cpp │ │ ├── preview.h │ │ ├── readme.txt │ │ ├── resource.h │ │ └── winmain.cpp │ ├── MFCaptureToFile │ │ ├── MFCaptureToFile.rc │ │ ├── MFCaptureToFile.sln │ │ ├── MFCaptureToFile.vcproj │ │ ├── capture.cpp │ │ ├── capture.h │ │ ├── readme.txt │ │ ├── resource.h │ │ └── winmain.cpp │ ├── MFPlayer2 │ │ ├── AudioSessionVolume.cpp │ │ ├── AudioSessionVolume.h │ │ ├── MFPlayer.h │ │ ├── MFPlayer.rc │ │ ├── MFPlayer.sln │ │ ├── MFPlayer.vcproj │ │ ├── MainDialog.cpp │ │ ├── MainDialog.h │ │ ├── Player2.cpp │ │ ├── Player2.h │ │ ├── Slider.cpp │ │ ├── Slider.h │ │ ├── ThemedButton.cpp │ │ ├── ThemedButton.h │ │ ├── images │ │ │ ├── mute.bmp │ │ │ ├── play.bmp │ │ │ ├── slider.bmp │ │ │ └── volume.bmp │ │ ├── readme.txt │ │ ├── resource.h │ │ └── winmain.cpp │ ├── SimpleCapture │ │ ├── Preview.cpp │ │ ├── Preview.h │ │ ├── SimpleCapture.rc │ │ ├── SimpleCapture.sln │ │ ├── SimpleCapture.vcproj │ │ ├── readme.txt │ │ ├── resource.h │ │ └── winmain.cpp │ ├── SimplePlay │ │ ├── SimplePlay.rc │ │ ├── SimplePlay.sln │ │ ├── SimplePlay.vcproj │ │ ├── readme.txt │ │ ├── resource.h │ │ └── winmain.cpp │ ├── Transcode │ │ ├── Transcode.cpp │ │ ├── Transcode.h │ │ ├── Transcode.sln │ │ ├── Transcode.vcproj │ │ ├── main.cpp │ │ └── readme.txt │ ├── VideoThumbnail │ │ ├── DeclareDPIAware.manifest │ │ ├── Thumbnail.cpp │ │ ├── Thumbnail.h │ │ ├── VideoThumbnail.rc │ │ ├── VideoThumbnail.sln │ │ ├── VideoThumbnail.vcproj │ │ ├── clock.h │ │ ├── readme.txt │ │ ├── resource.h │ │ ├── sprite.cpp │ │ ├── sprite.h │ │ ├── videothumbnail.h │ │ └── winmain.cpp │ ├── asfparser │ │ ├── ASFManager.cpp │ │ ├── ASFManager.h │ │ ├── Decoder.cpp │ │ ├── Decoder.h │ │ ├── MFParserUI.rc │ │ ├── MF_ASFParser.h │ │ ├── MF_ASFParser.sln │ │ ├── MF_ASFParser.vcproj │ │ ├── MediaController.cpp │ │ ├── MediaController.h │ │ ├── Readme.txt │ │ ├── resource.h │ │ └── winmain.cpp │ ├── common │ │ ├── AsyncCB.h │ │ ├── BufferLock.h │ │ ├── ClassFactory.h │ │ ├── GrowArray.h │ │ ├── PropVar.h │ │ ├── ReadMe.txt │ │ ├── TinyMap.h │ │ ├── common.h │ │ ├── critsec.h │ │ ├── linklist.h │ │ ├── logging.h │ │ ├── logmediatype.h │ │ ├── mediatype.h │ │ ├── mfutils.h │ │ ├── registry.h │ │ └── trace.h │ ├── dxva2_videoproc │ │ ├── DXVA2_VideoProc.sln │ │ ├── DXVA2_VideoProc.vcproj │ │ ├── dxva2vp.cpp │ │ └── readme.txt │ ├── evrpresenter │ │ ├── EVRPresenter.def │ │ ├── EVRPresenter.h │ │ ├── EVRPresenter.sln │ │ ├── EVRPresenter.vcproj │ │ ├── EVRPresenterUuid.h │ │ ├── Helpers.cpp │ │ ├── Helpers.h │ │ ├── PresentEngine.cpp │ │ ├── PresentEngine.h │ │ ├── Presenter.cpp │ │ ├── Presenter.h │ │ ├── Readme.txt │ │ ├── dllmain.cpp │ │ ├── scheduler.cpp │ │ └── scheduler.h │ ├── mft_audiodelay │ │ ├── AudioDelay.def │ │ ├── AudioDelayMFT.cpp │ │ ├── AudioDelayMFT.h │ │ ├── AudioDelayUuids.h │ │ ├── MFT_AudioDelay.sln │ │ ├── MFT_AudioDelay.vcproj │ │ ├── dllmain.cpp │ │ └── readme.txt │ ├── mft_grayscale │ │ ├── Grayscale.cpp │ │ ├── Grayscale.def │ │ ├── Grayscale.h │ │ ├── GrayscaleGuids.h │ │ ├── MFT_Grayscale.h │ │ ├── MFT_Grayscale.sln │ │ ├── MFT_Grayscale.vcproj │ │ ├── Readme.txt │ │ └── dllmain.cpp │ ├── mpeg1source │ │ ├── MPEG1ByteStreamHandler.cpp │ │ ├── MPEG1ByteStreamHandler.h │ │ ├── MPEG1Source.cpp │ │ ├── MPEG1Source.def │ │ ├── MPEG1Source.h │ │ ├── MPEG1Source.sln │ │ ├── MPEG1Source.vcproj │ │ ├── MPEG1Stream.cpp │ │ ├── MPEG1Stream.h │ │ ├── OpQueue.h │ │ ├── Parse.cpp │ │ ├── Parse.h │ │ ├── ReadMe.txt │ │ └── dllmain.cpp │ ├── protectedplayback │ │ ├── ContentEnabler.cpp │ │ ├── ContentEnabler.h │ │ ├── MF_ProtectedPlayback.sln │ │ ├── MF_ProtectedPlayback.vcproj │ │ ├── Player.cpp │ │ ├── Player.h │ │ ├── ProtectedPlayback.h │ │ ├── ProtectedPlayback.rc │ │ ├── Readme.txt │ │ ├── WebHelper.cpp │ │ ├── WebHelper.h │ │ ├── resource.h │ │ └── winmain.cpp │ ├── topoedit │ │ ├── app │ │ │ ├── Logger.h │ │ │ ├── MFErrorHandler.h │ │ │ ├── PropertyView.cpp │ │ │ ├── PropertyView.h │ │ │ ├── TranscodeProfiles.xml │ │ │ ├── dock.cpp │ │ │ ├── dock.h │ │ │ ├── maintool.bmp │ │ │ ├── resource.h │ │ │ ├── small.ico │ │ │ ├── splitterbar.cpp │ │ │ ├── splitterbar.h │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ ├── ted.rc │ │ │ ├── tedapp.cpp │ │ │ ├── tedapp.h │ │ │ ├── tedcontentprotectionmanager.h │ │ │ ├── tedinputguiddialog.cpp │ │ │ ├── tedinputguiddialog.h │ │ │ ├── tedmaintoolbar.cpp │ │ │ ├── tedmaintoolbar.h │ │ │ ├── tedobj.h │ │ │ ├── tedplayer.cpp │ │ │ ├── tedplayer.h │ │ │ ├── tedtranscode.cpp │ │ │ ├── tedtranscode.h │ │ │ ├── tedtransformdialog.cpp │ │ │ ├── tedtransformdialog.h │ │ │ ├── tedvidwin.cpp │ │ │ ├── topoedit.sln │ │ │ ├── topoedit.vcproj │ │ │ ├── trackbarcontrol.cpp │ │ │ ├── trackbarcontrol.h │ │ │ └── trv.ico │ │ ├── readme.txt │ │ ├── tedutil │ │ │ ├── DMOINfo.cpp │ │ │ ├── DMOInfo.h │ │ │ ├── Logger.h │ │ │ ├── MFStreamSinkWrapper.cpp │ │ │ ├── MFStreamSinkWrapper.h │ │ │ ├── MFTransformWrapper.cpp │ │ │ ├── MFTransformWrapper.h │ │ │ ├── PropertyView.cpp │ │ │ ├── PropertyView.h │ │ │ ├── TopoViewerController.cpp │ │ │ ├── TopoViewerController.h │ │ │ ├── TopoViewerWindow.cpp │ │ │ ├── TopoViewerWindow.h │ │ │ ├── mediatypetrace.h │ │ │ ├── resource.h │ │ │ ├── serialization.cpp │ │ │ ├── serialization.h │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ ├── tededit.cpp │ │ │ ├── tededit.h │ │ │ ├── tedmemo.cpp │ │ │ ├── tedmemo.h │ │ │ ├── tedtestsink.cpp │ │ │ ├── tedtestsink.h │ │ │ ├── tedtestsink.rgs │ │ │ ├── tedutil.cpp │ │ │ ├── tedutil.def │ │ │ ├── tedutil.idl │ │ │ ├── tedutil.rc │ │ │ ├── tedutil.rgs │ │ │ ├── tedutil.vcproj │ │ │ ├── tedutilinc.h │ │ │ ├── tedvis.cpp │ │ │ ├── tedvis.h │ │ │ ├── topoviewercontroller.rgs │ │ │ ├── xmldataloader.rgs │ │ │ └── xmldatasaver.rgs │ │ └── topoedit.sln │ ├── wavsink │ │ ├── ReadMe.txt │ │ ├── WavSinkSample.sln │ │ ├── wavsink │ │ │ ├── CreateWavSink.h │ │ │ ├── WavSink.h │ │ │ ├── WavSink.vcproj │ │ │ └── wavsink.cpp │ │ └── writewavfile │ │ │ ├── WriteWavFile.vcproj │ │ │ └── main.cpp │ └── wavsource │ │ ├── RiffParser.cpp │ │ ├── RiffParser.h │ │ ├── WavByteStreamHandler.cpp │ │ ├── WavByteStreamHandler.h │ │ ├── WavSource.cpp │ │ ├── WavSource.def │ │ ├── WavSource.h │ │ ├── WavSource.sln │ │ ├── WavSource.vcproj │ │ ├── WavSourceGuids.h │ │ ├── dllmain.cpp │ │ └── readme.txt ├── wia │ ├── datacancel │ │ ├── DataCancel.cpp │ │ ├── DataCancel.h │ │ ├── DataCancel.sln │ │ ├── DataCancel.vcproj │ │ ├── ReadMe.txt │ │ ├── utils.cpp │ │ └── utils.h │ ├── datatransfer │ │ ├── DataTransfer.cpp │ │ ├── DataTransfer.h │ │ ├── DataTransfer.sln │ │ ├── DataTransfer.vcproj │ │ ├── ReadMe.txt │ │ ├── Upload.BMP │ │ ├── utils.cpp │ │ └── utils.h │ ├── errorhandler │ │ ├── ErrorHandler.cpp │ │ ├── ErrorHandler.h │ │ ├── ErrorHandler.sln │ │ ├── ErrorHandler.vcproj │ │ ├── ReadMe.txt │ │ ├── utils.cpp │ │ └── utils.h │ ├── getimage │ │ ├── BitmapUtil.cpp │ │ ├── BitmapUtil.h │ │ ├── BitmapWnd.cpp │ │ ├── BitmapWnd.h │ │ ├── DataCallback.cpp │ │ ├── DataCallback.h │ │ ├── EventCallback.cpp │ │ ├── EventCallback.h │ │ ├── GetImage.cpp │ │ ├── GetImage.rc │ │ ├── MainWnd.cpp │ │ ├── MainWnd.h │ │ ├── ProgressDlg.cpp │ │ ├── ProgressDlg.h │ │ ├── Readme.txt │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── WiaWrap.cpp │ │ ├── WiaWrap.h │ │ ├── getimage.sln │ │ ├── getimage.vcproj │ │ └── resource.h │ ├── itemtreechanges │ │ ├── ItemTreeChanges.cpp │ │ ├── ItemTreeChanges.h │ │ ├── ItemTreeChanges.sln │ │ ├── ItemTreeChanges.vcproj │ │ ├── ReadMe.txt │ │ ├── makefile │ │ ├── utils.cpp │ │ └── utils.h │ ├── previewcomponentandfilters │ │ ├── PreviewComponentAndFilters.cpp │ │ ├── PreviewComponentAndFilters.h │ │ ├── PreviewComponentAndFilters.sln │ │ ├── PreviewComponentAndFilters.vcproj │ │ ├── ReadMe.txt │ │ ├── utils.cpp │ │ └── utils.h │ ├── scandialog │ │ ├── ReadMe.txt │ │ ├── ScanDialog.cpp │ │ ├── ScanDialog.sln │ │ └── ScanDialog.vcproj │ ├── scanprofile │ │ ├── ReadMe.txt │ │ ├── ScanProfile.cpp │ │ ├── ScanProfile.h │ │ ├── ScanProfile.sln │ │ ├── ScanProfile.vcproj │ │ ├── makefile │ │ ├── utils.cpp │ │ └── utils.h │ └── wiassamp │ │ ├── makefile │ │ ├── wiassamp.cpp │ │ ├── wiassamp.sln │ │ └── wiassamp.vcproj ├── wic │ ├── progressivedecoding │ │ ├── DeclareDPIAware.manifest │ │ ├── Readme.txt │ │ ├── Sample Progressive Image.jpg │ │ ├── WICProgressiveDecoding.cpp │ │ ├── WICProgressiveDecoding.h │ │ ├── WICProgressiveDecoding.rc │ │ ├── WICProgressiveDecoding.sln │ │ ├── WICProgressiveDecoding.vcproj │ │ └── resource.h │ ├── wicanimatedgif │ │ ├── DeclareDPIAware.manifest │ │ ├── Readme.txt │ │ ├── WicAnimatedGif.cpp │ │ ├── WicAnimatedGif.h │ │ ├── WicAnimatedGif.rc │ │ ├── WicAnimatedGif.sln │ │ ├── WicAnimatedGif.vcproj │ │ ├── resource.h │ │ └── sample.gif │ ├── wicviewerd2d │ │ ├── DeclareDPIAware.manifest │ │ ├── Readme.txt │ │ ├── WicViewerD2D.cpp │ │ ├── WicViewerD2D.h │ │ ├── WicViewerD2D.rc │ │ ├── WicViewerD2D.sln │ │ ├── WicViewerD2D.vcproj │ │ └── resource.h │ ├── wicviewergdi │ │ ├── Readme.txt │ │ ├── WicViewerGdi.cpp │ │ ├── WicViewerGdi.h │ │ ├── WicViewerGdi.rc │ │ ├── WicViewerGdi.sln │ │ ├── WicViewerGdi.vcproj │ │ └── resource.h │ └── wicviewergdiplus │ │ ├── Readme.txt │ │ ├── WicViewerGdiPlus.cpp │ │ ├── WicViewerGdiPlus.h │ │ ├── WicViewerGdiPlus.rc │ │ ├── WicViewerGdiPlus.sln │ │ ├── WicViewerGdiPlus.vcproj │ │ └── resource.h ├── windowsmediaformat │ ├── audioplayer │ │ ├── ReadMe.txt │ │ ├── audiodlg.cpp │ │ ├── audiodlg.h │ │ ├── audioplay.cpp │ │ ├── audioplay.h │ │ ├── audioplayer.ico │ │ ├── audioplayer.rc │ │ ├── audioplayer.sln │ │ ├── audioplayer.vcproj │ │ ├── drm.cpp │ │ ├── drm.h │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── winmain.cpp │ ├── directshowinterop │ │ ├── dscopy │ │ │ ├── DSCopy.cpp │ │ │ ├── DSCopy.rc │ │ │ ├── DSCopy.sln │ │ │ ├── DSCopy.vcproj │ │ │ └── readme.txt │ │ ├── dsplay │ │ │ ├── DSPlay.cpp │ │ │ ├── DSPlay.h │ │ │ ├── DSPlay.ico │ │ │ ├── DSPlay.rc │ │ │ ├── DSPlay.sln │ │ │ ├── DSPlay.vcproj │ │ │ ├── readme.txt │ │ │ └── resource.h │ │ └── dsseekfm │ │ │ ├── DSSeekFm.cpp │ │ │ ├── DSSeekFm.rc │ │ │ ├── DSSeekFm.sln │ │ │ ├── DSSeekFm.vcproj │ │ │ └── readme.txt │ ├── drmclientextendedapis │ │ ├── drmupdate │ │ │ ├── DRMSampleUtils.cpp │ │ │ ├── DRMSampleUtils.h │ │ │ ├── DRMUpdate.cpp │ │ │ ├── DRMUpdate.sln │ │ │ ├── DRMUpdate.vcproj │ │ │ └── readme.txt │ │ └── queryrights │ │ │ ├── CRightsReporter.cpp │ │ │ ├── CRightsReporter.h │ │ │ ├── DRMSampleUtils.cpp │ │ │ ├── DRMSampleUtils.h │ │ │ ├── QueryRights.cpp │ │ │ ├── QueryRights.sln │ │ │ ├── QueryRights.vcproj │ │ │ └── ReadMe.txt │ ├── drmheader │ │ ├── DRMHeaderQuery.cpp │ │ ├── DRMHeaderQuery.h │ │ ├── ReadMe.txt │ │ ├── StdAfx.h │ │ ├── drmheader.cpp │ │ ├── drmheader.sln │ │ └── drmheader.vcproj │ ├── drmshow │ │ ├── DRMReader.cpp │ │ ├── DRMReader.h │ │ ├── DRMShow.cpp │ │ ├── DRMShow.sln │ │ ├── DRMShow.vcproj │ │ ├── ReadMe.txt │ │ └── StdAfx.h │ ├── managed │ │ ├── Managed.sln │ │ ├── metadataedit │ │ │ ├── ManagedMetadataEdit.csproj │ │ │ ├── MetadataEdit.cs │ │ │ └── ReadMe.txt │ │ └── wmfsdkwrapper │ │ │ ├── ManagedWMFSDKWrapper.csproj │ │ │ ├── ReadMe.txt │ │ │ ├── WMFSDKFunctions.cs │ │ │ └── WMFSDKWrapper.sln │ ├── metadataedit │ │ ├── MetadataEdit.rc │ │ ├── MetadataEdit.sln │ │ ├── MetadataEdit.vcproj │ │ ├── ReadMe.txt │ │ └── main.cpp │ ├── readfromstream │ │ ├── ReadFromStream.cpp │ │ ├── ReadFromStream.rc │ │ ├── ReadFromStream.sln │ │ ├── ReadFromStream.vcproj │ │ ├── ReadMe.txt │ │ ├── Reader.cpp │ │ ├── Reader.h │ │ ├── StdAfx.h │ │ ├── rostream.cpp │ │ └── rostream.h │ ├── uncompavitowmv │ │ ├── ReadMe.txt │ │ ├── TSimpleList.h │ │ ├── UncompAVIToWMV.cpp │ │ ├── UncompAVIToWMV.h │ │ ├── UncompAVIToWMV.rc │ │ ├── UncompAVIToWMV.sln │ │ ├── UncompAVIToWMV.vcproj │ │ └── main.cpp │ ├── wmgenprofile │ │ ├── WMGenProfile.sln │ │ ├── exe │ │ │ ├── ControlPositionTable.h │ │ │ ├── GenProfile.cpp │ │ │ ├── GenProfile.h │ │ │ ├── GenProfile.rc │ │ │ ├── GenProfile.vcproj │ │ │ ├── GenProfileDlg.cpp │ │ │ ├── GenProfileDlg.h │ │ │ ├── ProfileObject.cpp │ │ │ ├── ProfileObject.h │ │ │ ├── ReadMe.txt │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── res │ │ │ │ ├── GenProfile.ico │ │ │ │ ├── GenProfile.rc2 │ │ │ │ └── cursor1.cur │ │ │ └── resource.h │ │ └── lib │ │ │ ├── GenProfile_lib.cpp │ │ │ ├── GenProfile_lib.h │ │ │ ├── GenProfile_lib.vcproj │ │ │ ├── Macros.h │ │ │ ├── Readme.txt │ │ │ ├── StdAfx.cpp │ │ │ └── StdAfx.h │ ├── wmprop │ │ ├── main.cpp │ │ ├── readme.txt │ │ ├── wmprop.cpp │ │ ├── wmprop.h │ │ ├── wmprop.rc │ │ ├── wmprop.sln │ │ └── wmprop.vcproj │ ├── wmstats │ │ ├── ExtensionData.cpp │ │ ├── ExtensionData.h │ │ ├── ReadMe.txt │ │ ├── reader.cpp │ │ ├── reader.h │ │ ├── stdafx.h │ │ ├── wmstats.cpp │ │ ├── wmstats.rc │ │ ├── wmstats.sln │ │ ├── wmstats.vcproj │ │ ├── writer.cpp │ │ └── writer.h │ ├── wmsyncreader │ │ ├── ReadMe.txt │ │ ├── StdAfx.h │ │ ├── WMSyncReader.cpp │ │ ├── WMSyncReader.rc │ │ ├── WMSyncReader.sln │ │ ├── WMSyncReader.vcproj │ │ ├── reader.cpp │ │ ├── reader.h │ │ ├── rostream.cpp │ │ └── rostream.h │ ├── wmvappend │ │ ├── append.cpp │ │ ├── append.h │ │ ├── main.cpp │ │ ├── readme.txt │ │ ├── stdafx.h │ │ ├── streamdata.cpp │ │ ├── streamdata.h │ │ ├── wmvappend.rc │ │ ├── wmvappend.sln │ │ └── wmvappend.vcproj │ ├── wmvcopy │ │ ├── Readme.txt │ │ ├── ScriptList.h │ │ ├── main.cpp │ │ ├── wmvcopy.cpp │ │ ├── wmvcopy.h │ │ ├── wmvcopy.rc │ │ ├── wmvcopy.sln │ │ └── wmvcopy.vcproj │ ├── wmvnetwrite │ │ ├── Main.cpp │ │ ├── NetWrite.cpp │ │ ├── NetWrite.h │ │ ├── ReadMe.txt │ │ ├── WMVNetWrite.sln │ │ ├── WMVNetWrite.vcproj │ │ └── wmvnetwrite.rc │ └── wmvrecompress │ │ ├── Readme.txt │ │ ├── WMVRecompress.cpp │ │ ├── WMVRecompress.h │ │ ├── WMVRecompress.rc │ │ ├── WMVRecompress.sln │ │ ├── WMVRecompress.vcproj │ │ └── main.cpp ├── windowsmediaservices9 │ ├── authentication │ │ ├── Authenticate.cpp │ │ ├── Authenticate.def │ │ ├── Authenticate.idl │ │ ├── Authenticate.rc │ │ ├── AuthenticateAdmin.cpp │ │ ├── AuthenticateAdmin.h │ │ ├── AuthenticateAdmin.rgs │ │ ├── AuthenticateContext.cpp │ │ ├── AuthenticateContext.h │ │ ├── AuthenticateContext.rgs │ │ ├── AuthenticatePlugin.cpp │ │ ├── AuthenticatePlugin.h │ │ ├── AuthenticatePlugin.rgs │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── authenticate.sln │ │ ├── authenticate.vcproj │ │ └── resource.h │ ├── authorization │ │ ├── DBAuth.sln │ │ ├── DBAuth.vcproj │ │ ├── dbauth.cpp │ │ ├── dbauth.def │ │ ├── dbauth.idl │ │ ├── dbauth.rc │ │ ├── dbauth.reg │ │ ├── dbauthadmin.cpp │ │ ├── dbauthadmin.h │ │ ├── dbauthadmin.rgs │ │ ├── dbauthplugin.cpp │ │ ├── dbauthplugin.h │ │ ├── dbauthplugin.rgs │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── cacheproxy │ │ ├── cplusplus │ │ │ ├── ProxyPlugin.sln │ │ │ ├── ProxyPlugin.vcproj │ │ │ ├── Resource.h │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── proxyplugin.cpp │ │ │ ├── proxyplugin.def │ │ │ ├── proxyplugin.idl │ │ │ ├── proxyplugin.rc │ │ │ ├── proxyplugin.rgs │ │ │ ├── proxypluginimpl.cpp │ │ │ └── proxypluginimpl.h │ │ └── csharp │ │ │ ├── AssemblyInfo.cs │ │ │ ├── CacheProxySamplePlugin.csproj │ │ │ ├── CacheProxySamplePlugin.sln │ │ │ ├── Class1.cs │ │ │ ├── PluginAdmin.cs │ │ │ ├── cacheproxysampleplugin.cs │ │ │ ├── cacheproxysampleplugin.xml │ │ │ ├── cacheproxysampleplugin.xsd │ │ │ └── cacheproxysampleplugin.xsx │ ├── datasource │ │ ├── SDKSampleStoragePlugin.vcproj │ │ ├── resource.h │ │ ├── sdksamplestorageplugin.cpp │ │ ├── sdksamplestorageplugin.def │ │ ├── sdksamplestorageplugin.idl │ │ ├── sdksamplestorageplugin.rc │ │ ├── sdksamplestorageplugin.sln │ │ ├── sdksamplestoragepluginps.def │ │ ├── sdksamplestoragesystem.cpp │ │ ├── sdksamplestoragesystem.h │ │ ├── sdksamplestoragesystem.rgs │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── eventnotification │ │ ├── ContextAdmin.cpp │ │ ├── ContextAdmin.h │ │ ├── ContextDll.cpp │ │ ├── ContextDll.def │ │ ├── ContextDll.idl │ │ ├── ContextDll.rc │ │ ├── ContextDll.sln │ │ ├── ContextDll.vcproj │ │ ├── ContextPlugin.cpp │ │ ├── ContextPlugin.h │ │ ├── ContextPlugin.rgs │ │ ├── Resource.h │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── contextsampleasppage │ │ │ └── ContextSample.asp │ │ └── contextsampleproppage │ │ │ ├── ContextSamplePropPage.cpp │ │ │ ├── ContextSamplePropPage.def │ │ │ ├── ContextSamplePropPage.idl │ │ │ ├── ContextSamplePropPage.rc │ │ │ ├── ContextSamplePropPage.rgs │ │ │ ├── ContextSamplePropPage.sln │ │ │ ├── ContextSamplePropPage.vcproj │ │ │ ├── ContextSamplePropPageImpl.cpp │ │ │ ├── ContextSamplePropPageImpl.h │ │ │ ├── ContextSamplePropPagePS.def │ │ │ ├── resource.h │ │ │ └── stdafx.h │ ├── jscript │ │ ├── addPub.js │ │ ├── deletepub.js │ │ ├── denynewconnectionspub.js │ │ ├── getclientlist.js │ │ ├── getlimits.js │ │ ├── killclient.js │ │ ├── listpub.js │ │ ├── pubinfo.js │ │ ├── renamepub.js │ │ ├── setlimits.js │ │ ├── startservice.js │ │ └── stopservice.js │ ├── logging │ │ ├── AssemblyInfo.vb │ │ ├── VBDBLoggingPlugin.sln │ │ ├── VBDBLoggingPlugin.vb │ │ ├── VBDBLoggingPlugin.vbproj │ │ └── readme.txt │ └── playlist │ │ ├── SDKSamplePlaylistParser.cpp │ │ ├── SDKSamplePlaylistParser.h │ │ ├── SDKSamplePlaylistParser.rgs │ │ ├── SDKSamplePlaylistPlugin.cpp │ │ ├── SDKSamplePlaylistPlugin.def │ │ ├── SDKSamplePlaylistPlugin.idl │ │ ├── SDKSamplePlaylistPlugin.rc │ │ ├── SDKSamplePlaylistPlugin.sln │ │ ├── SDKSamplePlaylistPlugin.vcproj │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── dlldatax.h │ │ └── resource.h └── wpd │ ├── WpdServicesApiSample │ └── cpp │ │ ├── CommonFunctions.h │ │ ├── ContentEnumeration.cpp │ │ ├── ContentProperties.cpp │ │ ├── ReadMe.txt │ │ ├── ServiceCapabilities.cpp │ │ ├── ServiceEnumeration.cpp │ │ ├── ServiceMethods.cpp │ │ ├── WpdServicesApiSample.cpp │ │ ├── WpdServicesApiSample.sln │ │ ├── WpdServicesApiSample.vcproj │ │ ├── stdafx.cpp │ │ └── stdafx.h │ └── wpdapisample │ └── cpp │ ├── CommonFunctions.h │ ├── ContentEnumeration.cpp │ ├── ContentProperties.cpp │ ├── ContentTransfer.cpp │ ├── DeviceCapabilities.cpp │ ├── DeviceEnumeration.cpp │ ├── DeviceEvents.cpp │ ├── ReadMe.txt │ ├── WpdApiSample.cpp │ ├── WpdApiSample.sln │ ├── WpdApiSample.vcproj │ ├── stdafx.cpp │ └── stdafx.h ├── netds ├── ADSIactivedir │ └── getschemainfo │ │ ├── Makefile │ │ ├── getschemainfo.cpp │ │ ├── getschemainfo.sln │ │ ├── getschemainfo.vcproj │ │ └── readme.txt ├── MB │ └── mbapi │ │ ├── Readme.txt │ │ ├── mbapi.cpp │ │ ├── mbapi.sln │ │ └── mbapi.vcproj ├── Qos │ ├── Qos2 │ │ ├── qossample.c │ │ ├── qossample.rc │ │ ├── qossample.sln │ │ ├── qossample.vcproj │ │ └── readme.txt │ └── TC │ │ ├── ReadMe.txt │ │ ├── TCSample.c │ │ ├── TCSample.sln │ │ └── TCSample.vcproj ├── WindowsConnectNow │ ├── Readme.txt │ ├── WCNConfigure.vcproj │ ├── WcnConfigure.cpp │ ├── WcnConfigure.h │ ├── WcnConnectNotify.cpp │ ├── WcnConnectNotify.h │ ├── WcnFdHelper.cpp │ ├── WcnFdHelper.h │ ├── WindowsConnectNow.sln │ └── targetver.h ├── adsi │ ├── ASP │ │ ├── First │ │ │ ├── ReadMe.txt │ │ │ ├── default.htm │ │ │ └── enum.asp │ │ └── WAB │ │ │ ├── ReadMe.txt │ │ │ ├── banner.gif │ │ │ ├── default.asp │ │ │ ├── detail.asp │ │ │ ├── global.asa │ │ │ ├── group.asp │ │ │ ├── person.asp │ │ │ ├── print.gif │ │ │ ├── search.asp │ │ │ ├── search.gif │ │ │ └── search.jpg │ ├── DistQuery │ │ ├── ReadMe.txt │ │ └── dq.sql │ ├── Perl │ │ ├── ReadMe.txt │ │ ├── binding.pl │ │ ├── create.pl │ │ └── modify.pl │ ├── Provider │ │ └── setup │ │ │ ├── adssmp.inf │ │ │ └── install.bat │ ├── Start │ │ ├── Binding │ │ │ └── vc │ │ │ │ ├── Binding.cpp │ │ │ │ ├── Binding.sln │ │ │ │ ├── Binding.vcproj │ │ │ │ ├── Makefile │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── StdAfx.cpp │ │ │ │ └── StdAfx.h │ │ ├── Child │ │ │ └── vc │ │ │ │ ├── Child.cpp │ │ │ │ ├── Child.sln │ │ │ │ ├── Child.vcproj │ │ │ │ ├── Makefile │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── StdAfx.cpp │ │ │ │ └── StdAfx.h │ │ ├── Create │ │ │ └── vc │ │ │ │ ├── Create.cpp │ │ │ │ ├── Create.sln │ │ │ │ ├── Create.vcproj │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── StdAfx.cpp │ │ │ │ └── StdAfx.h │ │ ├── Delete │ │ │ └── vc │ │ │ │ ├── Delete.cpp │ │ │ │ ├── Delete.sln │ │ │ │ ├── Delete.vcproj │ │ │ │ ├── Makefile │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── StdAfx.cpp │ │ │ │ └── StdAfx.h │ │ ├── Enum │ │ │ └── vc │ │ │ │ ├── Enum.cpp │ │ │ │ ├── Enum.sln │ │ │ │ ├── Enum.vcproj │ │ │ │ ├── Makefile │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── StdAfx.cpp │ │ │ │ └── StdAfx.h │ │ ├── Filter │ │ │ └── vc │ │ │ │ ├── Filter.cpp │ │ │ │ ├── Filter.sln │ │ │ │ ├── Filter.vcproj │ │ │ │ ├── Makefile │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── StdAfx.cpp │ │ │ │ └── StdAfx.h │ │ ├── First │ │ │ └── vbs │ │ │ │ ├── ReadMe.txt │ │ │ │ └── first.vbs │ │ ├── Move │ │ │ └── vc │ │ │ │ ├── Makefile │ │ │ │ ├── Move.cpp │ │ │ │ ├── Move.sln │ │ │ │ ├── Move.vcproj │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── StdAfx.cpp │ │ │ │ └── StdAfx.h │ │ ├── Parent │ │ │ └── vc │ │ │ │ ├── Makefile │ │ │ │ ├── Parent.cpp │ │ │ │ ├── Parent.sln │ │ │ │ ├── Parent.vcproj │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── StdAfx.cpp │ │ │ │ └── StdAfx.h │ │ ├── Read │ │ │ └── vc │ │ │ │ ├── Makefile │ │ │ │ ├── Read.cpp │ │ │ │ ├── Read.sln │ │ │ │ ├── Read.vcproj │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── StdAfx.cpp │ │ │ │ └── StdAfx.h │ │ ├── Rename │ │ │ └── vc │ │ │ │ ├── Makefile │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── Rename.cpp │ │ │ │ ├── Rename.sln │ │ │ │ ├── Rename.vcproj │ │ │ │ ├── StdAfx.cpp │ │ │ │ └── StdAfx.h │ │ ├── Schema │ │ │ └── vc │ │ │ │ ├── Makefile │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── Schema.cpp │ │ │ │ ├── Schema.sln │ │ │ │ ├── Schema.vcproj │ │ │ │ ├── StdAfx.cpp │ │ │ │ └── StdAfx.h │ │ ├── Search │ │ │ └── vc │ │ │ │ ├── Makefile │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── Search.cpp │ │ │ │ ├── Search.sln │ │ │ │ ├── Search.vcproj │ │ │ │ ├── StdAfx.cpp │ │ │ │ └── StdAfx.h │ │ └── Write │ │ │ └── vc │ │ │ ├── Makefile │ │ │ ├── ReadMe.txt │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── Write.cpp │ │ │ ├── Write.sln │ │ │ └── Write.vcproj │ ├── activedir │ │ ├── PropertyList │ │ │ └── vc │ │ │ │ ├── ADSIhelpers.cpp │ │ │ │ ├── ADSIhelpers.h │ │ │ │ ├── ADsPropertyList.sln │ │ │ │ ├── ADsPropertyList.vcproj │ │ │ │ ├── Makefile │ │ │ │ ├── main.cpp │ │ │ │ └── readme.txt │ │ ├── QueryUsers │ │ │ └── vc │ │ │ │ ├── Makefile │ │ │ │ ├── queryusers.cpp │ │ │ │ ├── queryusers.sln │ │ │ │ ├── queryusers.vcproj │ │ │ │ └── readme.txt │ │ ├── RootDSE │ │ │ └── VC │ │ │ │ ├── Makefile │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── RootDSE.cpp │ │ │ │ ├── RootDSE.sln │ │ │ │ ├── RootDSE.vcproj │ │ │ │ ├── StdAfx.cpp │ │ │ │ └── StdAfx.h │ │ ├── SID │ │ │ └── vc │ │ │ │ ├── Makefile │ │ │ │ ├── USEROBJECTSID.sln │ │ │ │ ├── USEROBJECTSID.vcproj │ │ │ │ ├── objectSid.cpp │ │ │ │ └── readme.txt │ │ ├── User │ │ │ └── VC │ │ │ │ ├── IADSUSER.sln │ │ │ │ ├── IADSUSER.vcproj │ │ │ │ ├── Makefile │ │ │ │ ├── ReadMe.Txt │ │ │ │ └── iasuser.cpp │ │ ├── WKGUID │ │ │ └── vc │ │ │ │ ├── Makefile │ │ │ │ ├── readme.txt │ │ │ │ ├── userscontainer.sln │ │ │ │ ├── userscontainer.vcproj │ │ │ │ └── wkguid.cpp │ │ ├── addgroup │ │ │ └── vc │ │ │ │ ├── AddGroup.sln │ │ │ │ ├── AddGroup.vcproj │ │ │ │ ├── Makefile │ │ │ │ ├── main.cpp │ │ │ │ └── readme.txt │ │ ├── adevent │ │ │ ├── ADEvent.cpp │ │ │ ├── ADEvent.sln │ │ │ ├── ADEvent.vcproj │ │ │ ├── adevent.def │ │ │ ├── adevent.h │ │ │ ├── makefile │ │ │ └── readme.txt │ │ ├── attributes │ │ │ └── vc │ │ │ │ ├── Makefile │ │ │ │ ├── attributes.cpp │ │ │ │ ├── attributes.sln │ │ │ │ ├── attributes.vcproj │ │ │ │ └── readme.txt │ │ ├── bindtoparent │ │ │ └── vc │ │ │ │ ├── Makefile │ │ │ │ ├── bindtoparent.cpp │ │ │ │ ├── bindtoparent.sln │ │ │ │ ├── bindtoparent.vcproj │ │ │ │ └── readme.txt │ │ ├── createuser │ │ │ └── vc │ │ │ │ ├── CreateUser.sln │ │ │ │ ├── CreateUser.vcproj │ │ │ │ ├── CreateUserHelpers.cpp │ │ │ │ ├── CreateUserHelpers.h │ │ │ │ ├── Makefile │ │ │ │ ├── UserProps.cpp │ │ │ │ ├── UserProps.h │ │ │ │ ├── data.txt │ │ │ │ ├── main.cpp │ │ │ │ └── readme.txt │ │ ├── credentials │ │ │ └── VC │ │ │ │ ├── Credentials.cpp │ │ │ │ ├── Credentials.sln │ │ │ │ ├── Credentials.vcproj │ │ │ │ ├── Makefile │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── StdAfx.cpp │ │ │ │ └── StdAfx.h │ │ ├── gcallusers │ │ │ └── vc │ │ │ │ ├── gcallusers.cpp │ │ │ │ ├── gcallusers.sln │ │ │ │ ├── gcallusers.vcproj │ │ │ │ ├── makefile │ │ │ │ └── readme.txt │ │ ├── getdomainmode │ │ │ └── vc │ │ │ │ ├── Makefile │ │ │ │ ├── getdomainmode.cpp │ │ │ │ ├── getdomainmode.sln │ │ │ │ ├── getdomainmode.vcproj │ │ │ │ └── readme.txt │ │ ├── getschemainfo │ │ │ └── vc │ │ │ │ ├── Makefile │ │ │ │ ├── getschemainfo.cpp │ │ │ │ ├── getschemainfo.sln │ │ │ │ ├── getschemainfo.vcproj │ │ │ │ └── readme.txt │ │ └── propsheethost │ │ │ ├── DataObj.cpp │ │ │ ├── Main.cpp │ │ │ ├── PropSheetHost.cpp │ │ │ ├── PropSheetHost.h │ │ │ ├── PropSheetHost.sln │ │ │ ├── PropSheetHost.vcproj │ │ │ ├── Readme.txt │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ ├── devguide │ │ ├── PrintQueue.jpg │ │ ├── ResetPwd.jpg │ │ ├── ad.gif │ │ ├── ad.htm │ │ ├── adadsi.htm │ │ ├── adadsi01.gif │ │ ├── adadsi02.gif │ │ ├── adadsi03.gif │ │ ├── adadsi04.gif │ │ ├── adadsi05.gif │ │ ├── adqi.jpg │ │ ├── adqisearch.jpg │ │ ├── adsi01.gif │ │ ├── advanced.gif │ │ ├── advanced.htm │ │ ├── banner.gif │ │ ├── banner.htm │ │ ├── banner.inc │ │ ├── changepwd.jpg │ │ ├── command.jpg │ │ ├── computer.jpg │ │ ├── dataLink.jpg │ │ ├── datalink.gif │ │ ├── datalink.htm │ │ ├── dev.gif │ │ ├── dev.htm │ │ ├── dq.gif │ │ ├── dq.htm │ │ ├── exch.jpg │ │ ├── extension.htm │ │ ├── extension.jpg │ │ ├── getstart.gif │ │ ├── internet.gif │ │ ├── internet.htm │ │ ├── interopt.gif │ │ ├── interopt.htm │ │ ├── mmc.gif │ │ ├── msdn_ie3.css │ │ ├── msdn_ie4.css │ │ ├── mslogo.gif │ │ ├── nds.htm │ │ ├── netscape.htm │ │ ├── nwcompat.htm │ │ ├── pagerror.gif │ │ ├── print.gif │ │ ├── provider.jpg │ │ ├── relnotes.txt │ │ ├── router.gif │ │ ├── samapps.htm │ │ ├── samples.gif │ │ ├── samples.htm │ │ ├── service.jpg │ │ ├── siteserver.gif │ │ ├── ss.htm │ │ ├── start.gif │ │ ├── start.htm │ │ ├── usrmgr.jpg │ │ ├── vbref.jpg │ │ ├── vcref.jpg │ │ ├── wab.jpg │ │ ├── warning.gif │ │ ├── web.gif │ │ ├── winnt.gif │ │ └── winnt.htm │ └── general │ │ ├── ADOQuery │ │ ├── ReadMe.txt │ │ └── adoquery.vbs │ │ ├── DsSrch │ │ ├── Makefile │ │ ├── ReadMe.txt │ │ ├── dssrch.rc │ │ ├── dssrch.sln │ │ ├── dssrch.vcproj │ │ ├── main.cxx │ │ ├── main.hxx │ │ └── util.cxx │ │ ├── adqi │ │ ├── ADQI.cpp │ │ ├── ADQI.h │ │ ├── ADQI.rc │ │ ├── ADQI.vcproj │ │ ├── ADQIDlg.cpp │ │ ├── ADQIDlg.h │ │ ├── ADs.cpp │ │ ├── ADs.h │ │ ├── ADsLargeInteger.cpp │ │ ├── ADsLargeInteger.h │ │ ├── ADsOpenDSObject.cpp │ │ ├── ADsOpenDSObject.h │ │ ├── ADsPropertyList.cpp │ │ ├── ADsPropertyList.h │ │ ├── Adqi.sln │ │ ├── DirectoryObject.cpp │ │ ├── DirectoryObject.h │ │ ├── DirectorySearch.cpp │ │ ├── DirectorySearch.h │ │ ├── Makefile │ │ ├── ReadMe.txt │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── adscontainer.cpp │ │ ├── adscontainer.h │ │ ├── helper.cpp │ │ ├── helper.h │ │ ├── res │ │ │ ├── ADQI.ico │ │ │ └── ADQI.rc2 │ │ ├── resource.h │ │ ├── security.cpp │ │ └── security.h │ │ ├── adscmd │ │ ├── adscmd.sln │ │ ├── adscmd.vcproj │ │ ├── dump.cxx │ │ ├── enum.cxx │ │ ├── main.cxx │ │ ├── main.hxx │ │ ├── readme.txt │ │ └── util.cxx │ │ └── adsidump │ │ ├── AdsiDump.cpp │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── adsidump.sln │ │ ├── adsidump.vcproj │ │ └── readme.txt ├── dhcp │ ├── DHCPServerCompareScopesV4 │ │ ├── DHCPServerCompareScopesV4.cpp │ │ ├── DHCPServerCompareScopesV4.sln │ │ ├── DHCPServerCompareScopesV4.vcproj │ │ └── ReadMe.txt │ ├── DHCPServerScopeStatsV4 │ │ ├── DHCPServerScopeStatsV4.cpp │ │ ├── DHCPServerScopeStatsV4.sln │ │ ├── DHCPServerScopeStatsV4.vcproj │ │ └── ReadMe.txt │ ├── DHCPServerShowLeasesV4 │ │ ├── DHCPServerShowLeasesV4.cpp │ │ ├── DHCPServerShowLeasesV4.sln │ │ ├── DHCPServerShowLeasesV4.vcproj │ │ └── ReadMe.txt │ ├── DHCPServerShowLeasesV6 │ │ ├── DHCPServerShowLeasesV6.cpp │ │ ├── DHCPServerShowLeasesV6.sln │ │ ├── DHCPServerShowLeasesV6.vcproj │ │ └── ReadMe.txt │ ├── dhcpnotify │ │ ├── Makefile │ │ ├── dhcpnotify.cpp │ │ └── readme.txt │ ├── dhcppersist │ │ ├── Makefile │ │ ├── dhcppersist.cpp │ │ └── readme.txt │ └── dhcprequest │ │ ├── Makefile │ │ ├── dhcprequest.cpp │ │ └── readme.txt ├── dns │ ├── dnsquery │ │ ├── DNSQuery.Cpp │ │ ├── Makefile │ │ └── ReadMe.txt │ └── modifyrecords │ │ ├── Makefile │ │ ├── ModifyRecords.cpp │ │ └── ReadMe.txt ├── eap │ └── eaphost │ │ ├── EapSdk.sln │ │ ├── clientsdkmethod │ │ ├── ClientSdkMethod.vcproj │ │ ├── inc │ │ │ ├── Resource.h │ │ │ └── SampleEAPMethodClient.h │ │ └── src │ │ │ ├── ClientSdkMethodDll.def │ │ │ ├── SampleEAPMethodClient.cpp │ │ │ ├── SdkClientMethod.rc │ │ │ ├── SdkClientMethodConfig.rc │ │ │ ├── dllmain.cpp │ │ │ └── stdafx.h │ │ ├── sdkcommon │ │ ├── SdkCommon.vcproj │ │ ├── inc │ │ │ ├── SdkCommon.h │ │ │ └── memory.h │ │ └── src │ │ │ ├── SdkCommon.cpp │ │ │ ├── memory.cpp │ │ │ └── stdafx.h │ │ ├── sdksupplicant │ │ ├── SdkSupplicant.vcproj │ │ ├── inc │ │ │ ├── Resource.h │ │ │ └── SampleSupplicant.h │ │ └── src │ │ │ ├── SampleSupplicant.cpp │ │ │ ├── SdkEapConn.xml │ │ │ ├── SdkEapUser.xml │ │ │ ├── SdkSupplicant.rc │ │ │ ├── stdafx.h │ │ │ └── supplicantMain.cpp │ │ └── serversdkmethod │ │ ├── ServerSdkMethod.vcproj │ │ ├── inc │ │ ├── Resource.h │ │ └── SampleEAPMethodServer.h │ │ └── src │ │ ├── SampleEAPMethodServer.cpp │ │ ├── SdkServerConfig.rc │ │ ├── ServerSdkMethodDll.def │ │ ├── dllmain.cpp │ │ └── stdafx.h ├── fax │ ├── devicesetting │ │ ├── Makefile │ │ ├── ReadMe.txt │ │ ├── cpp │ │ │ ├── DeviceSetting.cpp │ │ │ ├── DeviceSetting.h │ │ │ ├── DeviceSetting.sln │ │ │ ├── DeviceSetting.vcproj │ │ │ └── Makefile │ │ ├── cs │ │ │ ├── DeviceSetting.cs │ │ │ ├── DeviceSetting.csproj │ │ │ ├── DeviceSetting.sln │ │ │ ├── key.snk │ │ │ └── makefile │ │ └── vb │ │ │ ├── DeviceSetting.sln │ │ │ ├── DeviceSetting.vb │ │ │ ├── DeviceSetting.vbproj │ │ │ ├── key.snk │ │ │ ├── makefile │ │ │ └── my project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ ├── faxaccount │ │ ├── Makefile │ │ ├── ReadMe.txt │ │ ├── cpp │ │ │ ├── FaxAccount.cpp │ │ │ ├── FaxAccount.h │ │ │ ├── FaxAccount.sln │ │ │ ├── FaxAccount.vcproj │ │ │ └── makefile │ │ ├── cs │ │ │ ├── FaxAccount.cs │ │ │ ├── FaxAccount.csproj │ │ │ ├── FaxAccount.sln │ │ │ ├── key.snk │ │ │ └── makefile │ │ └── vb │ │ │ ├── FaxAccount.sln │ │ │ ├── FaxAccount.vb │ │ │ ├── FaxAccount.vbproj │ │ │ ├── key.snk │ │ │ ├── makefile │ │ │ └── my project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ ├── faxjoboperations │ │ ├── Makefile │ │ ├── ReadMe.txt │ │ ├── cpp │ │ │ ├── FaxJobOperations.cpp │ │ │ ├── FaxJobOperations.h │ │ │ ├── FaxJobOperations.sln │ │ │ ├── FaxJobOperations.vcproj │ │ │ └── Makefile │ │ ├── cs │ │ │ ├── FaxJobOperations.cs │ │ │ ├── FaxJobOperations.csproj │ │ │ ├── FaxJobOperations.sln │ │ │ ├── Makefile │ │ │ └── key.snk │ │ └── vb │ │ │ ├── FaxJobOperations.sln │ │ │ ├── FaxJobOperations.vb │ │ │ ├── FaxJobOperations.vbproj │ │ │ ├── key.snk │ │ │ ├── makefile │ │ │ └── my project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ ├── faxnotify │ │ ├── Makefile │ │ ├── ReadMe.txt │ │ └── cpp │ │ │ ├── FaxAccountNotify.cpp │ │ │ ├── FaxAccountNotify.h │ │ │ ├── FaxNotify.cpp │ │ │ ├── FaxNotify.h │ │ │ ├── FaxNotify.sln │ │ │ ├── FaxNotify.vcproj │ │ │ ├── FaxServerNotify.cpp │ │ │ └── FaxServerNotify.h │ ├── faxreassign │ │ ├── Makefile │ │ ├── ReadMe.txt │ │ ├── cpp │ │ │ ├── FaxReassign.cpp │ │ │ ├── FaxReassign.h │ │ │ ├── Reassign.sln │ │ │ ├── Reassign.vcproj │ │ │ └── makefile │ │ ├── cs │ │ │ ├── FaxReassign.cs │ │ │ ├── Reassign.csproj │ │ │ ├── Reassign.sln │ │ │ ├── key.snk │ │ │ └── makefile │ │ └── vb │ │ │ ├── FaxReassign.vb │ │ │ ├── Reassign.sln │ │ │ ├── Reassign.vbproj │ │ │ ├── key.snk │ │ │ ├── makefile │ │ │ └── my project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ ├── faxsecurity │ │ ├── Makefile │ │ ├── ReadMe.txt │ │ └── cpp │ │ │ ├── FaxSecurity.cpp │ │ │ ├── FaxSecurity.h │ │ │ ├── FaxSecurity.sln │ │ │ ├── FaxSecurity.vcproj │ │ │ └── makefile │ ├── foldersenum │ │ ├── Makefile │ │ ├── ReadMe.txt │ │ ├── cpp │ │ │ ├── FoldersEnum.cpp │ │ │ ├── FoldersEnum.h │ │ │ ├── FoldersEnum.sln │ │ │ ├── FoldersEnum.vcproj │ │ │ └── Makefile │ │ ├── cs │ │ │ ├── FoldersEnum.cs │ │ │ ├── FoldersEnum.csproj │ │ │ ├── FoldersEnum.sln │ │ │ ├── Makefile │ │ │ └── key.snk │ │ └── vb │ │ │ ├── FoldersEnum.sln │ │ │ ├── FoldersEnum.vb │ │ │ ├── FoldersEnum.vbproj │ │ │ ├── key.snk │ │ │ ├── makefile │ │ │ └── my project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ ├── fsp │ │ ├── Makefile │ │ ├── ReadMe.txt │ │ └── cpp │ │ │ ├── Macros.h │ │ │ ├── Makefile │ │ │ ├── Reg.cpp │ │ │ ├── Reg.h │ │ │ ├── SampleFSP.cpp │ │ │ ├── SampleFSP.def │ │ │ ├── SampleFSP.h │ │ │ ├── SampleFSP.sln │ │ │ ├── SampleFSP.vcproj │ │ │ └── Util.cpp │ ├── outboundrouting │ │ ├── Makefile │ │ ├── ReadMe.txt │ │ ├── cpp │ │ │ ├── OutboundRouting.cpp │ │ │ ├── OutboundRouting.h │ │ │ ├── OutboundRouting.sln │ │ │ ├── OutboundRouting.vcproj │ │ │ └── makefile │ │ ├── cs │ │ │ ├── OutboundRouting.cs │ │ │ ├── OutboundRouting.csproj │ │ │ ├── OutboundRouting.sln │ │ │ ├── key.snk │ │ │ └── makefile │ │ └── vb │ │ │ ├── OutboundRouting.sln │ │ │ ├── OutboundRouting.vb │ │ │ ├── OutboundRouting.vbproj │ │ │ ├── key.snk │ │ │ ├── makefile │ │ │ └── my project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ ├── printsdi │ │ ├── Makefile │ │ ├── ReadMe.Txt │ │ └── cpp │ │ │ ├── Makefile │ │ │ ├── PrintSDI.cpp │ │ │ ├── PrintSDI.h │ │ │ ├── PrintSDI.sln │ │ │ └── PrintSDI.vcproj │ ├── routingextension │ │ ├── Makefile │ │ ├── ReadMe.txt │ │ └── cpp │ │ │ ├── RoutingExtension.cpp │ │ │ ├── RoutingExtension.def │ │ │ ├── RoutingExtension.h │ │ │ ├── RoutingExtension.sln │ │ │ ├── RoutingExtension.vcproj │ │ │ └── makefile │ ├── sendfax │ │ ├── Makefile │ │ ├── ReadMe.txt │ │ ├── cpp │ │ │ ├── SendFax.cpp │ │ │ ├── SendFax.h │ │ │ ├── SendFax.sln │ │ │ ├── SendFax.vcproj │ │ │ └── makefile │ │ ├── cs │ │ │ ├── SendFax.cs │ │ │ ├── SendFax.csproj │ │ │ ├── SendFax.sln │ │ │ ├── key.snk │ │ │ └── makefile │ │ └── vb │ │ │ ├── SendFax.sln │ │ │ ├── SendFax.vb │ │ │ ├── SendFax.vbproj │ │ │ ├── key.snk │ │ │ ├── makefile │ │ │ └── my project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ ├── sendtofaxrecipient │ │ ├── Makefile │ │ ├── ReadMe.txt │ │ ├── cpp │ │ │ ├── SendToFaxRecipient.cpp │ │ │ ├── SendToFaxRecipient.h │ │ │ ├── SendToFaxRecipient.sln │ │ │ ├── SendToFaxRecipient.vcproj │ │ │ └── makefile │ │ ├── cs │ │ │ ├── SendToFaxRecipient.cs │ │ │ ├── SendToFaxRecipient.csproj │ │ │ ├── SendToFaxRecipient.sln │ │ │ ├── key.snk │ │ │ └── makefile │ │ └── vb │ │ │ ├── SendToFaxRecipient.sln │ │ │ ├── SendToFaxRecipient.vb │ │ │ ├── SendToFaxRecipient.vbproj │ │ │ ├── key.snk │ │ │ ├── makefile │ │ │ └── my project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ └── serverconfig │ │ ├── Makefile │ │ ├── ReadMe.txt │ │ ├── cpp │ │ ├── ServerConfig.cpp │ │ ├── ServerConfig.h │ │ ├── ServerConfig.sln │ │ ├── ServerConfig.vcproj │ │ └── makefile │ │ ├── cs │ │ ├── ServerConfig.cs │ │ ├── ServerConfig.csproj │ │ ├── ServerConfig.sln │ │ ├── key.snk │ │ └── makefile │ │ └── vb │ │ ├── ServerConfig.sln │ │ ├── ServerConfig.vb │ │ ├── ServerConfig.vbproj │ │ ├── key.snk │ │ ├── makefile │ │ └── my project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings ├── http │ ├── AsyncServer │ │ ├── AsynchronousHTTPServerApp.sln │ │ ├── AsynchronousHTTPServerApp.vcproj │ │ ├── ReadMe.txt │ │ ├── common.h │ │ ├── handler.c │ │ └── main.c │ ├── HttpV2Server │ │ ├── HttpV2Sample.sln │ │ ├── HttpV2Sample.vcproj │ │ ├── main.c │ │ └── readme.txt │ ├── httpauth │ │ ├── HttpAuthSample.sln │ │ ├── HttpAuthSample.vcproj │ │ └── main.c │ ├── server │ │ ├── main.c │ │ ├── server.sln │ │ └── server.vcproj │ └── serviceconfig │ │ ├── ServiceConfig4.sln │ │ ├── ServiceConfig4.vcproj │ │ ├── iplisten.c │ │ ├── main.c │ │ ├── precomp.h │ │ ├── ssl.c │ │ └── url.c ├── ias │ └── mapname │ │ ├── dllmain.c │ │ ├── makefile │ │ ├── mapname.c │ │ ├── mapname.def │ │ ├── multisz.c │ │ ├── multisz.h │ │ ├── radutil.c │ │ ├── radutil.h │ │ └── readme.txt ├── iphelp │ ├── Netinfo │ │ ├── ReadMe.Txt │ │ ├── makefile │ │ ├── netinfo.c │ │ ├── netinfo.h │ │ ├── netinfo.sln │ │ └── netinfo.vcproj │ ├── enablerouter │ │ ├── Makefile │ │ ├── Readme.txt │ │ ├── enablerouter.c │ │ ├── enablerouter.rc │ │ ├── enablerouter.sln │ │ └── enablerouter.vcproj │ ├── iparp │ │ ├── IPArp.Cpp │ │ ├── IPArp.h │ │ ├── Makefile │ │ ├── ReadMe.Txt │ │ ├── iparp.sln │ │ └── iparp.vcproj │ ├── ipchange │ │ ├── IPChange.Cpp │ │ ├── Makefile │ │ ├── ReadMe.Txt │ │ ├── ipchange.sln │ │ └── ipchange.vcproj │ ├── ipconfig │ │ ├── IPConfig.c │ │ ├── Makefile │ │ ├── ReadMe.Txt │ │ ├── ipconfig.sln │ │ └── ipconfig.vcproj │ ├── iprenew │ │ ├── IPRenew.Cpp │ │ ├── Makefile │ │ ├── ReadMe.Txt │ │ ├── iprenew.sln │ │ └── iprenew.vcproj │ ├── iproute │ │ ├── IPRoute.Cpp │ │ ├── IPRoute.h │ │ ├── Makefile │ │ ├── ReadMe.Txt │ │ ├── iproute.sln │ │ └── iproute.vcproj │ └── ipstat │ │ ├── IPStat.Cpp │ │ ├── IPStat.h │ │ ├── Makefile │ │ ├── ReadMe.Txt │ │ ├── ipstat.sln │ │ └── ipstat.vcproj ├── messagequeuing │ ├── LargeMessageQueue │ │ ├── CS │ │ │ ├── LargeMessageQueue.sln │ │ │ ├── LargeMessageQueue │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── LargeMessageProperties.cs │ │ │ │ ├── LargeMessageQueue.cs │ │ │ │ ├── LargeMessageQueue.csproj │ │ │ │ ├── LargeMessageQueueException.cs │ │ │ │ ├── NativeMethods.cs │ │ │ │ ├── Parameters.cs │ │ │ │ └── Utilities.cs │ │ │ └── TestLargeMessageQueue │ │ │ │ ├── App.xaml │ │ │ │ ├── App.xaml.cs │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ ├── Settings.settings │ │ │ │ ├── TestLargeMessageQueue.csproj │ │ │ │ ├── Utilities.cs │ │ │ │ ├── Window1.xaml │ │ │ │ └── Window1.xaml.cs │ │ ├── Readme.txt │ │ └── default.bmp │ ├── c_draw │ │ ├── DisDraw.Cpp │ │ ├── DisDraw.Rc │ │ ├── DisDraw.h │ │ ├── DrawArea.Cpp │ │ ├── DrawArea.h │ │ ├── DrawDlg.Cpp │ │ ├── DrawDlg.h │ │ ├── LoginDlg.Cpp │ │ ├── LoginDlg.h │ │ ├── ReadMe.Txt │ │ ├── Resource.h │ │ ├── StdAfx.Cpp │ │ ├── StdAfx.h │ │ ├── c_draw.vcproj │ │ └── res │ │ │ ├── DisDraw.Ico │ │ │ └── DisDraw.Rc2 │ ├── csharp_draw │ │ ├── Csharp_draw.sln │ │ ├── assemblyinfo.cs │ │ ├── csharp_draw.csproj │ │ ├── form1.cs │ │ ├── form1.resx │ │ ├── inputbox.cs │ │ ├── inputbox.resx │ │ └── readme.txt │ ├── imp_draw │ │ ├── DrawArea.Cpp │ │ ├── DrawArea.h │ │ ├── EvHandle.Cpp │ │ ├── EvHandle.h │ │ ├── Imp_Dlg.Cpp │ │ ├── Imp_Dlg.h │ │ ├── Imp_Draw.Cpp │ │ ├── Imp_Draw.Rc │ │ ├── Imp_Draw.h │ │ ├── LoginDlg.Cpp │ │ ├── LoginDlg.h │ │ ├── ReadMe.Txt │ │ ├── Resource.h │ │ ├── StdAfx.Cpp │ │ ├── StdAfx.h │ │ ├── imp_draw.vcproj │ │ └── res │ │ │ ├── Imp_Draw.Ico │ │ │ └── Imp_Draw.Rc2 │ ├── mqapitst │ │ ├── CLOSQDlg.Cpp │ │ ├── CLOSQDlg.h │ │ ├── CRQDlg.Cpp │ │ ├── CRQDlg.h │ │ ├── DELQDlg.Cpp │ │ ├── DELQDlg.h │ │ ├── LocatDlg.Cpp │ │ ├── LocatDlg.h │ │ ├── MainFrm.Cpp │ │ ├── MainFrm.h │ │ ├── MqApiTst.Cpp │ │ ├── MqApiTst.Rc │ │ ├── MqApiTst.h │ │ ├── OpenQDlg.Cpp │ │ ├── OpenQDlg.h │ │ ├── ReadMe.Txt │ │ ├── RecWDlg.Cpp │ │ ├── RecWDlg.h │ │ ├── RecvMDlg.Cpp │ │ ├── RecvMDlg.h │ │ ├── Resource.h │ │ ├── SendMDlg.Cpp │ │ ├── SendMDlg.h │ │ ├── StdAfx.Cpp │ │ ├── StdAfx.h │ │ ├── TestDoc.Cpp │ │ ├── TestDoc.h │ │ ├── TestVIEW.Cpp │ │ ├── TestVIEW.h │ │ ├── mqapitst.sln │ │ ├── mqapitst.vcproj │ │ └── res │ │ │ ├── MqApiTst.Ico │ │ │ ├── Test.Rc2 │ │ │ ├── TestDoc.Ico │ │ │ └── Toolbar.BMP │ ├── mqf_draw │ │ ├── connectdlg.cpp │ │ ├── connectdlg.h │ │ ├── drawarea.cpp │ │ ├── drawarea.h │ │ ├── drawdlg.cpp │ │ ├── drawdlg.h │ │ ├── logindlg.cpp │ │ ├── logindlg.h │ │ ├── makefile │ │ ├── mqf_draw.vcproj │ │ ├── mqfdraw.cpp │ │ ├── mqfdraw.h │ │ ├── mqfdraw.rc │ │ ├── readme.txt │ │ ├── res │ │ │ ├── disdraw.ico │ │ │ └── disdraw.rc2 │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── mqpers │ │ ├── QueueDef.h │ │ ├── ReadMe.Txt │ │ ├── graphobj │ │ │ ├── DllDatax.c │ │ │ ├── DllDatax.h │ │ │ ├── GraphObj.Cpp │ │ │ ├── GraphObj.Def │ │ │ ├── GraphObj.Idl │ │ │ ├── GraphObj.Rc │ │ │ ├── IPersistStm.h │ │ │ ├── Line.Cpp │ │ │ ├── Line.Rgs │ │ │ ├── Line.h │ │ │ ├── Makefile │ │ │ ├── Point.Cpp │ │ │ ├── Point.Rgs │ │ │ ├── Point.h │ │ │ ├── Resource.h │ │ │ ├── StdAfx.Cpp │ │ │ └── StdAfx.h │ │ ├── makefile │ │ ├── rcv │ │ │ ├── Main.Cpp │ │ │ ├── Makefile │ │ │ ├── Rcv.Dep │ │ │ ├── StdAfx.Cpp │ │ │ └── StdAfx.h │ │ └── snd │ │ │ ├── Main.Cpp │ │ │ ├── Makefile │ │ │ ├── Snd.Dep │ │ │ ├── StdAfx.Cpp │ │ │ └── StdAfx.h │ ├── mqport │ │ ├── MQPort.Cpp │ │ ├── Makefile │ │ └── ReadMe.Txt │ ├── mqtestoa │ │ ├── Guids.Cpp │ │ ├── Makefile │ │ ├── MqTestOA.Cpp │ │ └── ReadMe.Txt │ ├── mqtrans │ │ ├── Makefile │ │ ├── MqTrans.Cpp │ │ └── ReadMe.Txt │ └── msmqtest │ │ ├── MSMQTest.c │ │ ├── Makefile │ │ └── ReadMe.Txt ├── nap │ ├── SdkSamples.sln │ ├── debughelper │ │ ├── DebugHelper.vcproj │ │ ├── inc │ │ │ └── DebugHelper.h │ │ └── src │ │ │ └── DebugHelper.cpp │ ├── readme.txt │ ├── sampleshvui │ │ ├── Registration.cpp │ │ ├── Registration.h │ │ ├── Regutil.cpp │ │ ├── Regutil.h │ │ ├── precomp.h │ │ ├── resource.h │ │ ├── sampleshvui.vcproj │ │ ├── sdkshv.ico │ │ ├── shvui.cpp │ │ ├── shvui.h │ │ ├── shvui.rc │ │ ├── shvui.reg │ │ ├── shvuicf.cpp │ │ └── shvuicf.h │ ├── sdkcommon │ │ ├── SdkCommon.vcproj │ │ ├── inc │ │ │ └── SdkCommon.h │ │ └── src │ │ │ └── SdkCommon.cpp │ ├── sdkqec │ │ ├── QEC.cpp │ │ ├── QEC.h │ │ ├── QecCallback.cpp │ │ ├── QecCallback.h │ │ ├── SdkQec.vcproj │ │ ├── SdkQecModule.cpp │ │ ├── SdkQecModule.h │ │ ├── resource.h │ │ └── stdafx.h │ ├── sha │ │ ├── dll │ │ │ ├── ComponentInfo.cpp │ │ │ ├── ComponentInfo.h │ │ │ ├── ComponentInfo.rgs │ │ │ ├── Messages.mc │ │ │ ├── SdkShaInfo.cpp │ │ │ ├── SdkShaInfo.def │ │ │ ├── SdkShaInfo.rc │ │ │ ├── SdkShaInfo.vcproj │ │ │ ├── dllmain.cpp │ │ │ ├── dllmain.h │ │ │ ├── icon1.ico │ │ │ ├── resource.h │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ └── exe │ │ │ ├── Callback.cpp │ │ │ ├── Callback.h │ │ │ ├── Messages.mc │ │ │ ├── SdkSha.vcproj │ │ │ ├── SdkShaModule.cpp │ │ │ ├── SdkShaModule.h │ │ │ ├── Sha.cpp │ │ │ ├── Sha.h │ │ │ ├── messages.h │ │ │ ├── resource.h │ │ │ └── stdafx.h │ └── shv │ │ ├── Resource.h │ │ ├── SampleShv.cpp │ │ ├── SampleShv.h │ │ ├── SdkShv.cpp │ │ ├── SdkShv.def │ │ ├── SdkShv.rc │ │ ├── SdkShv.rgs │ │ ├── SdkShv.vcproj │ │ ├── SdkShvModule.cpp │ │ ├── SdkShvModule.h │ │ ├── stdafx.cpp │ │ └── stdafx.h ├── peertopeer │ ├── DRT │ │ ├── CAPIWrappers.cpp │ │ ├── CAPIWrappers.h │ │ ├── CustomBootstrapper.cpp │ │ ├── CustomBootstrapper.h │ │ ├── CustomSecurityProvider.cpp │ │ ├── CustomSecurityProvider.h │ │ ├── DrtSdkSample.cpp │ │ ├── DrtSdkSample.h │ │ ├── DrtSdkSample.sln │ │ ├── DrtSdkSample.vcproj │ │ ├── FirewallConfig.cpp │ │ ├── FirewallConfig.h │ │ ├── makefile │ │ ├── readme.htm │ │ ├── sources │ │ └── version.rc │ ├── collaboration │ │ ├── EndpointInfo.c │ │ ├── EndpointInfo.h │ │ ├── Events.c │ │ ├── Events.h │ │ ├── Presence.c │ │ ├── Presence.h │ │ ├── Publication.c │ │ ├── Publication.h │ │ ├── SignIn.c │ │ ├── SignIn.h │ │ ├── collaboration.sln │ │ ├── collaboration.vcproj │ │ ├── contacts.c │ │ ├── contacts.h │ │ ├── invite.c │ │ ├── invite.h │ │ ├── main.c │ │ ├── makefile │ │ ├── pnm.c │ │ ├── pnm.h │ │ ├── readme.htm │ │ ├── shared.c │ │ └── shared.h │ ├── graphchat │ │ ├── vista │ │ │ ├── GraphChat.c │ │ │ ├── GraphChat.h │ │ │ ├── GraphChat.ico │ │ │ ├── GraphChat.rc │ │ │ ├── GraphChat.sln │ │ │ ├── GraphChat.vcproj │ │ │ ├── InvitationHelpers.c │ │ │ ├── InvitationHelpers.h │ │ │ ├── Makefile │ │ │ ├── PeoplePickerDialog.c │ │ │ ├── PeoplePickerDialog.h │ │ │ ├── PeoplePickerDialog.rc │ │ │ ├── PeoplePickerDialogResource.h │ │ │ ├── PeoplePickerModel.c │ │ │ ├── PeoplePickerModel.h │ │ │ ├── pnrp.c │ │ │ ├── pnrp.h │ │ │ ├── readme.htm │ │ │ └── resource.h │ │ └── xp │ │ │ ├── GraphChat.c │ │ │ ├── GraphChat.h │ │ │ ├── GraphChat.ico │ │ │ ├── GraphChat.rc │ │ │ ├── GraphChat.sln │ │ │ ├── GraphChat.vcproj │ │ │ ├── Makefile │ │ │ ├── pnrp.c │ │ │ ├── pnrp.h │ │ │ ├── readme.htm │ │ │ └── resource.h │ ├── groupchat │ │ ├── vista │ │ │ ├── GroupChat.c │ │ │ ├── GroupChat.h │ │ │ ├── GroupChat.ico │ │ │ ├── GroupChat.rc │ │ │ ├── GroupChat.sln │ │ │ ├── GroupChat.vcproj │ │ │ ├── Makefile │ │ │ ├── readme.htm │ │ │ └── resource.h │ │ └── xp │ │ │ ├── GroupChat.c │ │ │ ├── GroupChat.h │ │ │ ├── GroupChat.ico │ │ │ ├── GroupChat.rc │ │ │ ├── GroupChat.sln │ │ │ ├── GroupChat.vcproj │ │ │ ├── Makefile │ │ │ ├── readme.htm │ │ │ └── resource.h │ ├── pnrp │ │ ├── makefile │ │ ├── pnrp.c │ │ ├── pnrp.h │ │ ├── pnrp.sln │ │ ├── pnrp.vcproj │ │ └── readme.htm │ └── samples.htm ├── ras │ ├── RASAgileVPN │ │ ├── RasAgileVPN.cpp │ │ ├── RasAgileVPN.sln │ │ ├── RasAgileVPN.vcproj │ │ └── Readme.txt │ ├── connectionmanager │ │ ├── ReadMe.txt │ │ ├── cmsample.cpp │ │ ├── cmsample.def │ │ └── makefile │ ├── customdial │ │ ├── customdial.cpp │ │ ├── customdial.def │ │ ├── customdial.rc │ │ ├── customdialreg.cpp │ │ ├── makefile │ │ ├── readme.txt │ │ └── resource.h │ ├── customscript │ │ └── customentry │ │ │ ├── customentry.c │ │ │ └── makefile │ ├── phoneentry │ │ ├── Makefile │ │ ├── PhoneEntry.Rc │ │ ├── PhoneEntry.c │ │ ├── ReadMe.Txt │ │ └── Resource.h │ ├── ras_statistics │ │ ├── Makefile │ │ ├── RasGetConnectionStatistics.c │ │ └── ReadMe.Txt │ ├── rasdial │ │ └── c │ │ │ ├── Makefile │ │ │ ├── RasDial.c │ │ │ └── ReadMe.Txt │ ├── rasdialasync │ │ ├── Makefile │ │ ├── RasDialAsync.c │ │ └── ReadMe.Txt │ ├── rasenumconnections │ │ └── c │ │ │ ├── Makefile │ │ │ ├── RasEnumConnections.c │ │ │ └── ReadMe.Txt │ ├── rasenumdevices │ │ └── c │ │ │ ├── Makefile │ │ │ ├── RasEnumDevices.c │ │ │ └── ReadMe.Txt │ ├── rasenumentries │ │ └── c │ │ │ ├── Makefile │ │ │ ├── RasEnumentries.c │ │ │ └── ReadMe.Txt │ └── rassetentryproperties │ │ ├── RasSetEntryProperties.cpp │ │ ├── RasSetEntryProperties.sln │ │ ├── RasSetEntryProperties.vcproj │ │ ├── ReadMe.txt │ │ ├── stdafx.cpp │ │ └── stdafx.h ├── rpc │ ├── asyncrpc │ │ ├── AsyncRPC.Acf │ │ ├── AsyncRPC.Idl │ │ ├── AsyncRPCc.c │ │ ├── AsyncRPCp.c │ │ ├── AsyncRPCs.c │ │ ├── Makefile │ │ ├── ReadMe.Txt │ │ ├── spn.c │ │ └── spn.h │ ├── cluuid │ │ ├── ClUuid.Acf │ │ ├── ClUuid.Idl │ │ ├── ClUuidc.c │ │ ├── ClUuidp.c │ │ ├── ClUuids.c │ │ ├── Makefile │ │ ├── ReadMe.Txt │ │ ├── spn.c │ │ └── spn.h │ ├── data │ │ ├── dunion │ │ │ ├── DUnion.Acf │ │ │ ├── DUnion.Idl │ │ │ ├── DUnionc.c │ │ │ ├── DUnionp.c │ │ │ ├── DUnions.c │ │ │ ├── Makefile │ │ │ ├── ReadMe.Txt │ │ │ ├── spn.c │ │ │ └── spn.h │ │ ├── inout │ │ │ ├── InOut.Acf │ │ │ ├── InOut.Idl │ │ │ ├── InOutc.c │ │ │ ├── InOutp.c │ │ │ ├── InOuts.c │ │ │ ├── Makefile │ │ │ ├── ReadMe.Txt │ │ │ ├── spn.c │ │ │ └── spn.h │ │ ├── usermarshal │ │ │ ├── Makefile │ │ │ ├── ReadMe.Txt │ │ │ ├── spn.c │ │ │ ├── spn.h │ │ │ ├── umarsh.Idl │ │ │ ├── umarshc.Acf │ │ │ ├── umarshc.c │ │ │ ├── umarshcu.c │ │ │ ├── umarshp.c │ │ │ ├── umarshs.Acf │ │ │ ├── umarshs.c │ │ │ └── umarshsu.c │ │ ├── wiremarshal │ │ │ ├── Makefile │ │ │ ├── ReadMe.Txt │ │ │ ├── Xmit.Acf │ │ │ ├── Xmit.Idl │ │ │ ├── Xmitc.c │ │ │ ├── Xmitp.c │ │ │ ├── Xmits.c │ │ │ ├── Xmitu.c │ │ │ ├── Xmitu.h │ │ │ ├── spn.c │ │ │ └── spn.h │ │ └── xmit │ │ │ ├── Makefile │ │ │ ├── Makefile.Dos │ │ │ ├── ReadMe.Txt │ │ │ ├── Xmit.Acf │ │ │ ├── Xmit.Idl │ │ │ ├── Xmitc.c │ │ │ ├── Xmitp.c │ │ │ ├── Xmits.c │ │ │ ├── Xmitu.c │ │ │ └── Xmitu.h │ ├── dynept │ │ ├── Dynept.Acf │ │ ├── Dynept.Idl │ │ ├── Dyneptc.c │ │ ├── Dyneptp.c │ │ ├── Dynepts.c │ │ ├── Makefile │ │ ├── ReadMe.Txt │ │ ├── spn.c │ │ └── spn.h │ ├── filerep │ │ └── filerepasyncpipe │ │ │ ├── DbgMsg.cpp │ │ │ ├── DbgMsg.h │ │ │ ├── FileRep.cpp │ │ │ ├── FileRepClient.acf │ │ │ ├── FileRepClient.idl │ │ │ ├── FileRepClientProc.cpp │ │ │ ├── FileRepServer.acf │ │ │ ├── FileRepServer.cpp │ │ │ ├── FileRepServer.idl │ │ │ ├── FileRepServerProc.cpp │ │ │ ├── FileRepService.cpp │ │ │ ├── Prof.cpp │ │ │ ├── Prof.h │ │ │ ├── ReadMe.txt │ │ │ ├── Resources.cpp │ │ │ ├── Resources.h │ │ │ ├── Service.cpp │ │ │ ├── Service.h │ │ │ ├── common.cpp │ │ │ ├── common.h │ │ │ └── makefile │ ├── handles │ │ ├── cxhndl │ │ │ ├── Cxhndl.Acf │ │ │ ├── Cxhndl.Idl │ │ │ ├── Cxhndlc.c │ │ │ ├── Cxhndlp.c │ │ │ ├── Cxhndls.c │ │ │ ├── Makefile │ │ │ ├── ReadMe.Txt │ │ │ ├── spn.c │ │ │ └── spn.h │ │ └── usrdef │ │ │ ├── Makefile │ │ │ ├── ReadMe.Txt │ │ │ ├── Usrdef.Acf │ │ │ ├── Usrdef.Idl │ │ │ ├── Usrdefc.c │ │ │ ├── Usrdefp.c │ │ │ ├── Usrdefs.c │ │ │ ├── spn.c │ │ │ └── spn.h │ ├── hello │ │ ├── Hello.Acf │ │ ├── Hello.Idl │ │ ├── Helloc.c │ │ ├── Hellop.c │ │ ├── Hellos.c │ │ ├── Makefile │ │ ├── ReadMe.Txt │ │ ├── spn.c │ │ └── spn.h │ ├── pickle │ │ ├── picklp │ │ │ ├── Makefile │ │ │ ├── Makefile.Dos │ │ │ ├── Picklp.Acf │ │ │ ├── Picklp.Idl │ │ │ ├── Picklpc.c │ │ │ └── ReadMe.Txt │ │ └── picklt │ │ │ ├── Makefile │ │ │ ├── Makefile.Dos │ │ │ ├── Picklt.Acf │ │ │ ├── Picklt.Idl │ │ │ ├── Pickltc.c │ │ │ └── ReadMe.Txt │ ├── rpcsvc │ │ ├── Client.C │ │ ├── Makefile │ │ ├── RPCsvc.Acf │ │ ├── RPCsvc.Idl │ │ ├── ReadMe.Txt │ │ ├── Server.c │ │ ├── Service.C │ │ └── Service.H │ └── strout │ │ ├── Client.c │ │ ├── Common.h │ │ ├── Makefile │ │ ├── ReadMe.Txt │ │ ├── Remote.c │ │ ├── Server.c │ │ ├── StrOut.Acf │ │ ├── StrOut.Idl │ │ ├── spn.c │ │ └── spn.h ├── rras │ ├── adminapi │ │ ├── Admapit.c │ │ ├── Makefile │ │ └── ReadMe.Txt │ ├── callout │ │ ├── AdminDll.Def │ │ ├── AdminDll.c │ │ ├── Makefile │ │ └── ReadMe.Txt │ ├── eap │ │ ├── CeapCfg.Cpp │ │ ├── CeapCfg.Rgs │ │ ├── CeapCfg.h │ │ ├── Eap.Def │ │ ├── Eap.Rc │ │ ├── Eap.c │ │ ├── Eap.h │ │ ├── Exports.Cpp │ │ ├── Makefile │ │ ├── ReadMe.Txt │ │ └── Resource.h │ ├── getconnectioninfo │ │ ├── GetConnInfo.c │ │ ├── GetConnectionInfo.sln │ │ └── GetConnectionInfo.vcproj │ ├── loadprotocol │ │ ├── ipsamplerm.h │ │ ├── loadprotocol.c │ │ ├── makefile │ │ └── readme.txt │ └── rasnapadmin │ │ ├── RasNapAdmin.c │ │ ├── RasNapAdmin.def │ │ ├── RasNapAdmin.h │ │ ├── RasNapAdmin.sln │ │ └── RasNapAdmin.vcproj ├── snmp │ ├── snmputil │ │ ├── Makefile │ │ ├── ReadMe.Txt │ │ └── SnmpUtil.C │ ├── testdll │ │ ├── Makefile │ │ ├── TestDll.C │ │ ├── TestDll.Def │ │ ├── TestMIB.C │ │ └── TestMIB.h │ └── wsnmp │ │ ├── Helper.Cpp │ │ ├── Makefile │ │ ├── ReadMe.Txt │ │ ├── WSnmpUtil.Cpp │ │ └── WSnmpUtil.h ├── synccenter │ └── synchandler │ │ ├── BrowseUI.cpp │ │ ├── BrowseUI.h │ │ ├── ClassFactory.cpp │ │ ├── ClassFactory.h │ │ ├── Dll.cpp │ │ ├── Dll.h │ │ ├── Guids.h │ │ ├── Helpers.cpp │ │ ├── Helpers.h │ │ ├── MyDeviceContextMenu.cpp │ │ ├── MyDeviceContextMenu.h │ │ ├── MyDeviceHandlerCollection.cpp │ │ ├── MyDeviceHandlerCollection.h │ │ ├── MyDevicePropertySheet.cpp │ │ ├── MyDevicePropertySheet.h │ │ ├── MyDeviceSyncHandler.cpp │ │ ├── MyDeviceSyncHandler.h │ │ ├── MyDeviceSyncItem.cpp │ │ ├── MyDeviceSyncItem.h │ │ ├── PDA.ico │ │ ├── Pch.cpp │ │ ├── Pch.h │ │ ├── Resources.h │ │ ├── Resources.rc │ │ ├── SelfReg.inf │ │ ├── SelfReg.inx │ │ ├── SetupUI.cpp │ │ ├── SetupUI.h │ │ ├── SyncHandler.def │ │ ├── SyncHandler.sln │ │ ├── SyncHandler.vcproj │ │ └── makefile.inc ├── tapi │ ├── tapi2 │ │ ├── atsp32 │ │ │ ├── Atsp.Rc │ │ │ ├── Atsp.c │ │ │ ├── Atsp.h │ │ │ ├── Atsp32.Def │ │ │ ├── Dialogs.Dlg │ │ │ ├── Makefile │ │ │ ├── Readme.Txt │ │ │ └── Resource.h │ │ └── dialer │ │ │ ├── Dialer.Ico │ │ │ ├── Dialer.Rc │ │ │ ├── Dialer.c │ │ │ ├── Dialer.h │ │ │ ├── Dialhelp.h │ │ │ ├── LineBusy.Ico │ │ │ ├── Makefile │ │ │ ├── ReadMe.Txt │ │ │ └── Resource.h │ └── tapi3 │ │ ├── cpp │ │ ├── ansmach │ │ │ └── ReadMe.Txt │ │ ├── fileterm │ │ │ ├── CallNot.cpp │ │ │ ├── CallNot.h │ │ │ ├── FileTerm.cpp │ │ │ ├── FileTerm.h │ │ │ ├── FileTerm.rc │ │ │ ├── ReadMe.txt │ │ │ ├── Resource.h │ │ │ ├── Welcome.wav │ │ │ └── makefile │ │ ├── incoming │ │ │ ├── Callnot.Cpp │ │ │ ├── Callnot.h │ │ │ ├── Incoming.Cpp │ │ │ ├── Incoming.Rc │ │ │ ├── Makefile │ │ │ ├── ReadMe.Txt │ │ │ └── Resource.h │ │ ├── msp │ │ │ ├── mspbase │ │ │ │ ├── dtevntsk.cpp │ │ │ │ ├── makefile │ │ │ │ ├── mspaddr.cpp │ │ │ │ ├── mspcall.cpp │ │ │ │ ├── msplog.cpp │ │ │ │ ├── mspstrm.cpp │ │ │ │ ├── mspterm.cpp │ │ │ │ ├── mspthrd.cpp │ │ │ │ ├── msptrmac.cpp │ │ │ │ ├── msptrmar.cpp │ │ │ │ ├── msptrmvc.cpp │ │ │ │ ├── msputils.cpp │ │ │ │ ├── precomp.h │ │ │ │ └── readme.txt │ │ │ └── samplemsp │ │ │ │ ├── Common.h │ │ │ │ ├── Makefile │ │ │ │ ├── ReadMe.Txt │ │ │ │ ├── Resource.h │ │ │ │ ├── SampAddr.Cpp │ │ │ │ ├── SampAddr.h │ │ │ │ ├── SampCall.Cpp │ │ │ │ ├── SampCall.h │ │ │ │ ├── SampMsp.Cpp │ │ │ │ ├── SampMsp.Def │ │ │ │ ├── SampMsp.Idl │ │ │ │ ├── SampMsp.Rc │ │ │ │ ├── SampMsp.Rgs │ │ │ │ ├── SampStrm.Cpp │ │ │ │ ├── SampStrm.h │ │ │ │ └── stdafx.h │ │ ├── outgoing │ │ │ ├── Makefile │ │ │ ├── Outgoing.Cpp │ │ │ ├── Outgoing.Rc │ │ │ ├── ReadMe.Txt │ │ │ └── Resource.h │ │ ├── pluggable │ │ │ ├── guids.h │ │ │ ├── makefile │ │ │ ├── plgterm.cpp │ │ │ ├── plgterm.def │ │ │ ├── plgterm.h │ │ │ ├── plgterm.rc │ │ │ ├── plgterm.res │ │ │ ├── plgterm.rgs │ │ │ ├── plgtermfilter.cpp │ │ │ ├── plgtermfilter.h │ │ │ ├── plgtermpin.cpp │ │ │ ├── plgtermpin.h │ │ │ ├── plgtermpriv.h │ │ │ ├── plgtermsample.idl │ │ │ ├── pluggable.cpp │ │ │ ├── readme.txt │ │ │ ├── resource.h │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── tapirecv │ │ │ ├── Makefile │ │ │ ├── Processing.cpp │ │ │ ├── Processing.h │ │ │ ├── avifilewriter.cpp │ │ │ ├── avifilewriter.h │ │ │ ├── common.h │ │ │ ├── readme.txt │ │ │ ├── tapirecv.cpp │ │ │ ├── workerthread.cpp │ │ │ └── workerthread.h │ │ └── tapisend │ │ │ ├── Makefile │ │ │ ├── avifilereader.cpp │ │ │ ├── avifilereader.h │ │ │ ├── common.h │ │ │ ├── readme.txt │ │ │ └── tapisend.cpp │ │ └── vbscript │ │ ├── ConferenceJoin.Htm │ │ ├── Confmgr.Htm │ │ ├── ReadMe.Txt │ │ └── calldemo.Htm ├── upnp │ ├── dco_dimmerservice │ │ ├── DeviceDll.cpp │ │ ├── DeviceDll.def │ │ ├── DeviceDll.h │ │ ├── DimmerDevice.idl │ │ ├── DimmerDeviceDCO.cpp │ │ ├── DimmerDeviceDCO.h │ │ ├── DimmerDeviceDCO.rgs │ │ ├── DimmerService.cpp │ │ ├── DimmerService.h │ │ ├── UPNPSampleDimmerDevice.rc │ │ ├── UPNPSampleDimmerDevice.sln │ │ ├── UPNPSampleDimmerDevice.vcproj │ │ ├── readme.txt │ │ └── resource.h │ ├── genericucp │ │ ├── cpp │ │ │ ├── GenericUCPDlg.cpp │ │ │ ├── deviceprop.cpp │ │ │ ├── deviceprop.h │ │ │ ├── devtype.txt │ │ │ ├── genericucp.cpp │ │ │ ├── genericucp.h │ │ │ ├── genericucp.ico │ │ │ ├── genericucp.rc │ │ │ ├── genericucpdlg.h │ │ │ ├── readme.txt │ │ │ ├── resource.h │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ ├── udn.txt │ │ │ ├── util.cpp │ │ │ └── util.h │ │ ├── genericucp.sln │ │ └── genericucp.vcproj │ └── registerdevice │ │ ├── DimmerDevice-Desc.xml │ │ ├── DimmingService_SCPD.xml │ │ ├── RegDevice.cpp │ │ ├── RegDevice.sln │ │ ├── RegDevice.vcproj │ │ └── readme.txt ├── uri │ ├── ReadMe.txt │ ├── uri.cpp │ ├── uri.sln │ └── uri.vcproj ├── wfp │ ├── diagevents │ │ ├── WfpEventUtil.c │ │ ├── WfpEventUtil.h │ │ ├── diagevents.c │ │ ├── diagevents.sln │ │ ├── diagevents.vcproj │ │ └── readme.txt │ └── msnfilter │ │ ├── msnfilter.cpp │ │ ├── msnfilter.sln │ │ ├── msnfilter.vcproj │ │ └── readme.txt ├── winnt │ └── netapi │ │ └── netshare │ │ ├── Makefile │ │ ├── NetShare.c │ │ └── ReadMe.Txt ├── winsock │ ├── accept │ │ ├── ReadMe.Txt │ │ ├── client │ │ │ ├── AcceptClient.sln │ │ │ ├── AcceptClient.vcproj │ │ │ ├── TestAccept.cpp │ │ │ └── makefile │ │ ├── makefile │ │ └── server │ │ │ ├── ASAccept.cpp │ │ │ ├── AcceptServer.sln │ │ │ ├── AcceptServer.vcproj │ │ │ ├── NBAccept.cpp │ │ │ ├── SockInfo.cpp │ │ │ ├── common.cpp │ │ │ ├── common.h │ │ │ ├── main.cpp │ │ │ └── makefile │ ├── atmevent │ │ ├── ATMEvent.Cpp │ │ ├── ATMEvent.h │ │ ├── ATMEvent.sln │ │ ├── Enumerator.Cpp │ │ ├── Makefile │ │ ├── ReadMe.Txt │ │ ├── Receiver.Cpp │ │ ├── Sender.Cpp │ │ └── atmevent.vcproj │ ├── bcast │ │ ├── BCast.sln │ │ ├── Bcast.c │ │ ├── Makefile │ │ ├── ReadMe.Txt │ │ └── bcast.vcproj │ ├── bluetooth │ │ ├── BthCxn.rc │ │ ├── bthcxn.cpp │ │ ├── bthcxn.sln │ │ ├── bthcxn.vcproj │ │ └── readme.txt │ ├── connectbylist │ │ ├── ConnectByList.sln │ │ ├── ConnectByList.vcproj │ │ ├── Makefile │ │ ├── ReadMe.Txt │ │ └── connectbylist.cpp │ ├── connectbyname │ │ ├── ConnectByName.sln │ │ ├── ConnectByName.vcproj │ │ ├── Makefile │ │ ├── ReadMe.Txt │ │ └── connectbyname.cpp │ ├── dt_dll │ │ ├── CStack.h │ │ ├── DbgSpec.doc │ │ ├── Dt.h │ │ ├── Dt_Dll.Cpp │ │ ├── Dt_Dll.h │ │ ├── Dt_Dll.sln │ │ ├── Handlers.Cpp │ │ ├── Handlers.h │ │ ├── HuError.Cpp │ │ ├── HuError.h │ │ ├── Makefile │ │ ├── Nideque.h │ │ ├── NoWarn.h │ │ ├── ReadMe.Txt │ │ ├── Stack.h │ │ ├── dt_dll.def │ │ └── dt_dll.vcproj │ ├── inet_xtoy │ │ ├── Makefile │ │ ├── ReadMe.Txt │ │ ├── inet_xtoy.cpp │ │ ├── inet_xtoy.sln │ │ └── inet_xtoy.vcproj │ ├── iocp │ │ ├── Makefile │ │ ├── ReadMe.Txt │ │ ├── client │ │ │ ├── IocpClient.Cpp │ │ │ ├── Makefile │ │ │ ├── iocpclient.sln │ │ │ └── iocpclient.vcproj │ │ ├── server │ │ │ ├── IocpServer.Cpp │ │ │ ├── IocpServer.h │ │ │ ├── Makefile │ │ │ ├── iocpserver.sln │ │ │ └── iocpserver.vcproj │ │ └── serverex │ │ │ ├── IocpServer.h │ │ │ ├── IocpServerex.Cpp │ │ │ ├── Makefile │ │ │ ├── iocpserverex.sln │ │ │ └── iocpserverex.vcproj │ ├── iphdrinc │ │ ├── dirs │ │ ├── iphdr.h │ │ ├── iphdrinc.mak │ │ ├── iphdrinc.sln │ │ ├── iphdrinc.vcproj │ │ ├── makefile │ │ ├── rawudp.c │ │ ├── readme.txt │ │ ├── resolve.c │ │ └── resolve.h │ ├── ipxchat │ │ ├── About.Dlg │ │ ├── About.c │ │ ├── Connect.Dlg │ │ ├── Connect.c │ │ ├── Dispatch.c │ │ ├── Globals.h │ │ ├── Init.c │ │ ├── IpxChat.Ico │ │ ├── IpxChat.Rc │ │ ├── IpxChat.c │ │ ├── Listen.Dlg │ │ ├── Listen.c │ │ ├── Makefile │ │ ├── Misc.c │ │ ├── ReadMe.Txt │ │ ├── WinMain.c │ │ ├── ipxchat.sln │ │ └── ipxchat.vcproj │ ├── isb │ │ ├── ReadMe.txt │ │ ├── isb.cpp │ │ ├── isb.sln │ │ ├── isb.vcproj │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ ├── lsp │ │ ├── Makefile │ │ ├── common │ │ │ ├── lspcommon.h │ │ │ ├── makefile │ │ │ └── provider.cpp │ │ ├── ifslsp │ │ │ ├── Makefile │ │ │ ├── extension.cpp │ │ │ ├── ifslsp.def │ │ │ ├── lspdef.h │ │ │ ├── lspguid.cpp │ │ │ ├── sockinfo.cpp │ │ │ └── spi.cpp │ │ ├── install │ │ │ ├── instlsp.cpp │ │ │ ├── instlsp.exe.manifest │ │ │ ├── instlsp.h │ │ │ ├── instlsp.rc │ │ │ ├── lspadd.cpp │ │ │ ├── lspdel.cpp │ │ │ ├── lspmap.cpp │ │ │ ├── lsputil.cpp │ │ │ ├── makefile │ │ │ └── prnpinfo.cpp │ │ ├── nonifslsp │ │ │ ├── Makefile │ │ │ ├── asyncselect.cpp │ │ │ ├── extension.cpp │ │ │ ├── lspdef.h │ │ │ ├── lspguid.cpp │ │ │ ├── nonifslsp.def │ │ │ ├── overlap.cpp │ │ │ ├── sockinfo.cpp │ │ │ └── spi.cpp │ │ └── readme.txt │ ├── mcastip │ │ ├── Makefile │ │ ├── Mcastws1.c │ │ ├── ReadMe.Txt │ │ ├── mcastws1.sln │ │ ├── mcastws1.vcproj │ │ ├── resolve.c │ │ ├── resolve.h │ │ ├── ws1 │ │ │ ├── Makefile │ │ │ ├── Mcastws1.c │ │ │ ├── mcastws1.sln │ │ │ ├── mcastws1.vcproj │ │ │ ├── resolve.c │ │ │ └── resolve.h │ │ └── ws2 │ │ │ ├── Makefile │ │ │ ├── Mcastws2.c │ │ │ ├── ReadMe.Txt │ │ │ ├── mcastws2.sln │ │ │ ├── mcastws2.vcproj │ │ │ ├── resolve.c │ │ │ └── resolve.h │ ├── namingapi │ │ ├── Client │ │ │ ├── Makefile │ │ │ ├── SampleClient.c │ │ │ ├── client.sln │ │ │ ├── client.vcproj │ │ │ └── readme.txt │ │ ├── Makefile │ │ └── Provider │ │ │ ├── Install.c │ │ │ ├── Install.h │ │ │ ├── Makefile │ │ │ ├── Provider.sln │ │ │ ├── Provider.vcproj │ │ │ ├── Reg.c │ │ │ ├── Reg.h │ │ │ ├── SampleProvider.c │ │ │ ├── SampleProvider.h │ │ │ ├── readme.txt │ │ │ ├── utils.c │ │ │ └── utils.h │ ├── overlap │ │ ├── Makefile │ │ ├── Overlap.c │ │ ├── Overlap.sln │ │ ├── ReadMe.Txt │ │ └── overlap.vcproj │ ├── ping │ │ ├── Makefile │ │ ├── Ping.cpp │ │ ├── Ping.sln │ │ ├── ReadMe.Txt │ │ ├── iphdr.h │ │ ├── ping.vcproj │ │ ├── resolve.cpp │ │ └── resolve.h │ ├── rcvall │ │ ├── Makefile │ │ ├── iphdr.h │ │ ├── parser.c │ │ ├── parser.h │ │ ├── rcvall.c │ │ ├── rcvall.sln │ │ ├── rcvall.vcproj │ │ ├── readme.txt │ │ ├── resolve.c │ │ └── resolve.h │ ├── recvmsg │ │ ├── Makefile │ │ ├── ReadMe.Txt │ │ ├── RecvMsg.sln │ │ ├── RecvMsg.vcproj │ │ └── rmmc.cpp │ ├── rnr2 │ │ ├── makefile │ │ ├── readme.txt │ │ ├── rnrcs.cpp │ │ ├── rnrcs.sln │ │ └── rnrcs.vcproj │ ├── securesocket │ │ ├── SecureSocket.sln │ │ ├── readme.txt │ │ ├── stcpclient │ │ │ ├── stcpclient.vcproj │ │ │ └── tcpclient.c │ │ ├── stcpcommon │ │ │ ├── stcpcommon.vcproj │ │ │ ├── tcpcommon.c │ │ │ └── tcpcommon.h │ │ └── stcpserver │ │ │ ├── stcpserver.vcproj │ │ │ └── tcpserver.c │ ├── sendmsg │ │ ├── Makefile │ │ ├── ReadMe.Txt │ │ ├── SendMsg.cpp │ │ ├── SendMsg.sln │ │ └── SendMsg.vcproj │ ├── simple │ │ ├── Makefile │ │ ├── ReadMe.Txt │ │ ├── client │ │ │ ├── Makefile │ │ │ ├── simplec.cpp │ │ │ ├── simplec.sln │ │ │ └── simplec.vcproj │ │ ├── ioctl │ │ │ ├── Simples_Ioctl.cpp │ │ │ ├── Simples_ioctl.sln │ │ │ ├── Simples_ioctl.vcproj │ │ │ └── makefile │ │ └── server │ │ │ ├── Simples.cpp │ │ │ ├── makefile │ │ │ ├── simples.sln │ │ │ └── simples.vcproj │ ├── sockdup │ │ ├── Makefile │ │ ├── ReadMe.Txt │ │ ├── client │ │ │ ├── Makefile │ │ │ ├── Sockdupc.c │ │ │ ├── sockdupc.sln │ │ │ └── sockdupc.vcproj │ │ └── server │ │ │ ├── Makefile │ │ │ ├── Sockdups.c │ │ │ ├── sockdups.sln │ │ │ └── sockdups.vcproj │ └── wsapoll │ │ ├── ReadMe.Txt │ │ ├── WSAPollSample.sln │ │ ├── WSAPollSample.vcproj │ │ └── poll.cpp ├── wirelessdiagnostics │ ├── ExtLog.cpp │ ├── ExtLog.h │ ├── InstallInstructions.txt │ ├── L2SecExt.reg │ ├── Resource.h │ ├── WlExtHC.cpp │ ├── WlExtHC.h │ ├── WlExtHC.idl │ ├── WlExtHC.rc │ ├── WlExtHC.rgs │ ├── WlExtHC.sln │ ├── WlExtHC.vcproj │ ├── main.cpp │ └── precomp.h └── wlan │ ├── WirelessHostedNetwork │ ├── HostedNetwork.sln │ ├── HostedNetwork │ │ ├── HostedNetwork.cpp │ │ ├── HostedNetwork.h │ │ ├── HostedNetwork.rc │ │ ├── HostedNetwork.vcproj │ │ ├── HostedNetworkDlg.cpp │ │ ├── HostedNetworkDlg.h │ │ ├── ReadMe.txt │ │ ├── device.cpp │ │ ├── device.h │ │ ├── notif.cpp │ │ ├── notif.h │ │ ├── res │ │ │ ├── Camera.ico │ │ │ ├── DefaultDevice.ico │ │ │ ├── DefaultDevice.ico.orig │ │ │ ├── HostedNetwork.ico │ │ │ ├── HostedNetwork.rc2 │ │ │ ├── Printer.ico │ │ │ ├── Telephone.ico │ │ │ ├── ZuneDevices.ico │ │ │ ├── computer.ico │ │ │ └── icon1.ico │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ ├── IcsMgr │ │ ├── IcsMgr.vcproj │ │ ├── ReadMe.txt │ │ ├── icsconn.cpp │ │ ├── icsmgr.cpp │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── targetver.h │ │ ├── utils.cpp │ │ └── utils.h │ ├── WlanMgr │ │ ├── ReadMe.txt │ │ ├── WlanMgr.cpp │ │ ├── WlanMgr.rc │ │ ├── WlanMgr.vcproj │ │ ├── resource.h │ │ ├── station.cpp │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── targetver.h │ │ ├── util.cpp │ │ └── util.h │ ├── inc │ │ ├── ReadMe.txt │ │ ├── WlanMgr.h │ │ ├── common.h │ │ ├── icsconn.h │ │ └── icsmgr.h │ └── readme.txt │ └── autoconfig │ ├── Readme.txt │ ├── Wlsample.sln │ ├── Wlsample.vcproj │ └── wlsample.cpp ├── security ├── adrms │ ├── acquireclientlicensor │ │ ├── AcquireClientLicensor.cpp │ │ ├── AcquireClientLicensor.sln │ │ ├── AcquireClientLicensor.vcproj │ │ └── readme.txt │ ├── acquiretemplates │ │ ├── AcquireTemplates.cpp │ │ ├── AcquireTemplates.sln │ │ ├── acquiretemplates │ │ │ └── AcquireTemplates.vcproj │ │ └── readme.txt │ ├── consumption │ │ ├── Consumption.cpp │ │ ├── Consumption.mcf │ │ ├── Consumption.sln │ │ ├── Consumption.vcproj │ │ └── readme.txt │ ├── machineactivation │ │ ├── MachineActivation.cpp │ │ ├── MachineActivation.sln │ │ ├── MachineActivation.vcproj │ │ └── readme.txt │ ├── offlinepublishing │ │ ├── OfflinePublishing.cpp │ │ ├── OfflinePublishing.mcf │ │ ├── OfflinePublishing.sln │ │ ├── OfflinePublishing.vcproj │ │ └── readme.txt │ ├── onlinepublishing │ │ ├── OnlinePublishing.cpp │ │ ├── OnlinePublishing.sln │ │ ├── OnlinePublishing.vcproj │ │ └── readme.txt │ ├── publishingacl │ │ ├── PublishingACL.cpp │ │ ├── PublishingACL.sln │ │ ├── PublishingACL.vcproj │ │ └── readme.txt │ ├── publishingtemplate │ │ ├── PublishingTemplate.cpp │ │ ├── PublishingTemplate.sln │ │ ├── PublishingTemplate.vcproj │ │ └── readme.txt │ ├── sbactivation │ │ ├── SBActivation.cpp │ │ ├── SBActivation.sln │ │ ├── SBActivation.vcproj │ │ └── readme.txt │ └── useractivation │ │ ├── UserActivation.sln │ │ ├── UserActivation.vcproj │ │ ├── readme.txt │ │ └── useractivation.cpp ├── authentication │ ├── kerbsubauth │ │ ├── Makefile │ │ ├── ReadMe.Txt │ │ ├── SubAuth.Def │ │ ├── SubAuth.c │ │ └── subauth.dll.manifest │ ├── msvsubauth │ │ ├── Makefile │ │ ├── ReadMe.Txt │ │ ├── SubAuth.Def │ │ └── SubAuth.c │ └── sampssp │ │ ├── Init.c │ │ ├── Makefile │ │ ├── ReadMe.Txt │ │ ├── Res.Rc │ │ ├── SampSSP.Def │ │ ├── SampSSP.H │ │ ├── Stubs.c │ │ ├── sampssp.dll.manifest │ │ └── sampssp.res ├── authorization │ ├── aclapi │ │ ├── AclApi.c │ │ ├── Makefile │ │ └── ReadMe.Txt │ ├── audit │ │ ├── Audit.c │ │ ├── Makefile │ │ └── ReadMe.Txt │ ├── authz │ │ ├── AuthzCli.c │ │ ├── AuthzSvr.c │ │ ├── Makefile │ │ ├── ReadMe.txt │ │ ├── common.c │ │ └── common.h │ ├── azman │ │ ├── app │ │ │ └── asp │ │ │ │ ├── AzStore.xml │ │ │ │ ├── InstallExpense.vbs │ │ │ │ ├── SetUrlAuth.vbs │ │ │ │ ├── approve │ │ │ │ └── approver_srv.asp │ │ │ │ ├── bizrules │ │ │ │ ├── Approve.vbs │ │ │ │ ├── Expense.vbs │ │ │ │ ├── Simple.js │ │ │ │ ├── Simple.vbs │ │ │ │ ├── tod.js │ │ │ │ └── tod.vbs │ │ │ │ ├── blank.htm │ │ │ │ ├── common.asp │ │ │ │ ├── head.htm │ │ │ │ ├── menu.asp │ │ │ │ ├── readme.txt │ │ │ │ ├── sample.htm │ │ │ │ ├── status │ │ │ │ ├── Status.asp │ │ │ │ └── dispExpense.asp │ │ │ │ ├── style.css │ │ │ │ └── submit │ │ │ │ ├── Submitex.asp │ │ │ │ └── submit.asp │ │ ├── azmigrate │ │ │ ├── AzAppGroup.cpp │ │ │ ├── AzAppGroup.h │ │ │ ├── AzApplication.cpp │ │ │ ├── AzApplication.h │ │ │ ├── AzBase.cpp │ │ │ ├── AzBase.h │ │ │ ├── AzGlobalOptions.cpp │ │ │ ├── AzGlobalOptions.h │ │ │ ├── AzHelper.cpp │ │ │ ├── AzHelper.h │ │ │ ├── AzLogging.cpp │ │ │ ├── AzLogging.h │ │ │ ├── AzMStore.cpp │ │ │ ├── AzMStore.h │ │ │ ├── AzMigrate.cpp │ │ │ ├── AzMigrate.vcproj │ │ │ ├── AzOperation.cpp │ │ │ ├── AzOperation.h │ │ │ ├── AzRole.cpp │ │ │ ├── AzRole.h │ │ │ ├── AzScope.cpp │ │ │ ├── AzScope.h │ │ │ ├── AzTask.cpp │ │ │ ├── AzTask.h │ │ │ ├── readme.txt │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ └── webexpense │ │ │ ├── AzStore.xml │ │ │ ├── DirectManagerBizRule.vbs │ │ │ ├── GetRoles.vbs │ │ │ ├── Global.asax │ │ │ ├── Global.asax.resx │ │ │ ├── Install.vbs │ │ │ ├── README.txt │ │ │ ├── SetBizRule.vbs │ │ │ ├── WebExpense.sln │ │ │ ├── administrator │ │ │ ├── Admin.aspx │ │ │ ├── Admin.aspx.cs │ │ │ └── Admin.aspx.resx │ │ │ ├── app_code │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Global.asax.cs │ │ │ └── common.cs │ │ │ ├── approver │ │ │ ├── Display.aspx │ │ │ ├── Display.aspx.cs │ │ │ ├── Display.aspx.resx │ │ │ ├── List.aspx │ │ │ ├── List.aspx.cs │ │ │ └── List.aspx.resx │ │ │ ├── images │ │ │ ├── Treylogo.lg.jpg │ │ │ ├── Treylogo.small.jpg │ │ │ ├── checked.gif │ │ │ ├── settings.gif │ │ │ └── spreadsheet.gif │ │ │ ├── index.aspx │ │ │ ├── index.aspx.cs │ │ │ ├── index.aspx.resx │ │ │ ├── submitter │ │ │ ├── Submit.aspx │ │ │ ├── Submit.aspx.cs │ │ │ └── Submit.aspx.resx │ │ │ └── web.config │ ├── klist │ │ ├── KList.c │ │ ├── Makefile │ │ └── ReadMe.Txt │ ├── mytoken │ │ ├── Makefile │ │ ├── MyToken.cpp │ │ └── Readme.txt │ ├── secprint │ │ ├── Makefile │ │ ├── ReadMe.Txt │ │ └── SecPrint.c │ ├── securobj │ │ ├── Main.Cpp │ │ ├── Main.Rc │ │ ├── Main.h │ │ ├── Makefile │ │ ├── Privobji.Cpp │ │ ├── ReadMe.Txt │ │ ├── Resource.h │ │ └── Security.Cpp │ └── textsid │ │ ├── Makefile │ │ ├── ReadMe.Txt │ │ └── TextSid.c ├── certificateservices │ ├── exit │ │ └── c++ │ │ │ ├── WindowsServer2008R2 │ │ │ ├── CertXSam.sln │ │ │ ├── CertXSam.vcproj │ │ │ ├── cedebug.cpp │ │ │ ├── ceerror.cpp │ │ │ ├── celib.cpp │ │ │ ├── certxsam.cpp │ │ │ ├── certxsam.def │ │ │ ├── certxsam.idl │ │ │ ├── certxsam.rc │ │ │ ├── exit.cpp │ │ │ ├── exit.h │ │ │ ├── module.cpp │ │ │ ├── module.h │ │ │ ├── pch.cpp │ │ │ ├── readme.txt │ │ │ └── resource.h │ │ │ └── windowsserver2008 │ │ │ ├── CertXSam.vcproj │ │ │ ├── cedebug.cpp │ │ │ ├── ceerror.cpp │ │ │ ├── celib.cpp │ │ │ ├── certxsam.cpp │ │ │ ├── certxsam.def │ │ │ ├── certxsam.idl │ │ │ ├── certxsam.rc │ │ │ ├── exit.cpp │ │ │ ├── exit.h │ │ │ ├── makefile │ │ │ ├── module.cpp │ │ │ ├── module.h │ │ │ ├── pch.cpp │ │ │ ├── readme.txt │ │ │ └── resource.h │ └── policy │ │ └── c++ │ │ ├── WindowsServer2008R2 │ │ ├── CertPSam.sln │ │ ├── CertPSam.vcproj │ │ ├── cedebug.cpp │ │ ├── ceerror.cpp │ │ ├── ceformat.cpp │ │ ├── celib.cpp │ │ ├── certpsam.cpp │ │ ├── certpsam.def │ │ ├── certpsam.idl │ │ ├── certpsam.rc │ │ ├── module.cpp │ │ ├── module.h │ │ ├── pch.cpp │ │ ├── policy.cpp │ │ ├── policy.h │ │ ├── readme.txt │ │ ├── request.cpp │ │ └── resource.h │ │ └── windowsserver2008 │ │ ├── CertPSam.vcproj │ │ ├── cedebug.cpp │ │ ├── ceerror.cpp │ │ ├── ceformat.cpp │ │ ├── celib.cpp │ │ ├── certpsam.cpp │ │ ├── certpsam.def │ │ ├── certpsam.idl │ │ ├── certpsam.rc │ │ ├── makefile │ │ ├── module.cpp │ │ ├── module.h │ │ ├── pch.cpp │ │ ├── policy.cpp │ │ ├── policy.h │ │ ├── readme.txt │ │ ├── request.cpp │ │ └── resource.h ├── certservices │ └── certenroll │ │ ├── createcngcertrequest │ │ ├── CreateCNGCertRequest.cs │ │ ├── CreateCNGCertRequest.csproj │ │ ├── CreateCNGCertRequest.sln │ │ └── ReadMe.txt │ │ └── createsimplecertrequest │ │ ├── CreateSimpleCertRequest.cs │ │ ├── CreateSimpleCertRequest.csproj │ │ ├── CreateSimpleCertRequest.sln │ │ └── ReadMe.txt ├── credentialproviders │ ├── Credential Provider Samples Overview.mht │ ├── CredentialProviderSamples.sln │ ├── helpers │ │ ├── Dll.cpp │ │ ├── Dll.h │ │ ├── Helpers.vcproj │ │ ├── helpers.cpp │ │ └── helpers.h │ ├── readme.txt │ ├── sampleallcontrolscredentialprovider │ │ ├── CSampleCredential.cpp │ │ ├── CSampleCredential.h │ │ ├── CSampleProvider.cpp │ │ ├── CSampleProvider.h │ │ ├── Register.reg │ │ ├── SampleAllControlsCredentialProvider.vcproj │ │ ├── Unregister.reg │ │ ├── common.h │ │ ├── guid.cpp │ │ ├── guid.h │ │ ├── readme.txt │ │ ├── resource.h │ │ ├── resources.rc │ │ ├── sampleallcontrolscredentialprovider.def │ │ └── tileimage.bmp │ ├── samplecredentialprovider │ │ ├── CSampleCredential.cpp │ │ ├── CSampleCredential.h │ │ ├── CSampleProvider.cpp │ │ ├── CSampleProvider.h │ │ ├── Register.reg │ │ ├── SampleCredentialProvider.def │ │ ├── SampleCredentialProvider.vcproj │ │ ├── Unregister.reg │ │ ├── common.h │ │ ├── guid.cpp │ │ ├── guid.h │ │ ├── readme.txt │ │ ├── resource.h │ │ ├── resources.rc │ │ └── tileimage.bmp │ ├── samplecreduicredentialprovider │ │ ├── CSampleCredential.h │ │ ├── CSampleProvider.cpp │ │ ├── CSampleProvider.h │ │ ├── Register.reg │ │ ├── SampleCredUICredentialProvider.vcproj │ │ ├── Unregister.reg │ │ ├── common.h │ │ ├── csamplecredential.cpp │ │ ├── guid.cpp │ │ ├── guid.h │ │ ├── readme.txt │ │ ├── resource.h │ │ ├── resources.rc │ │ ├── samplecreduicredentialprovider.def │ │ └── tileimage.bmp │ ├── samplehardwareeventcredentialprovider │ │ ├── CSampleCredential.cpp │ │ ├── CSampleCredential.h │ │ ├── CSampleProvider.cpp │ │ ├── CSampleProvider.h │ │ ├── CommandWindow.cpp │ │ ├── CommandWindow.h │ │ ├── MessageCredential.cpp │ │ ├── MessageCredential.h │ │ ├── Register.reg │ │ ├── SampleHardwareEventCredentialProvider.def │ │ ├── SampleHardwareEventCredentialProvider.vcproj │ │ ├── Unregister.reg │ │ ├── common.h │ │ ├── guid.cpp │ │ ├── guid.h │ │ ├── readme.txt │ │ ├── resource.h │ │ ├── resources.rc │ │ └── tileimage.bmp │ └── samplewrapexistingcredentialprovider │ │ ├── CSampleCredential.cpp │ │ ├── CSampleCredential.h │ │ ├── CSampleProvider.cpp │ │ ├── CSampleProvider.h │ │ ├── CWrappedCredentialEvents.cpp │ │ ├── CWrappedCredentialEvents.h │ │ ├── Register.reg │ │ ├── SampleWrapExistingCredentialProvider.def │ │ ├── SampleWrapExistingCredentialProvider.vcproj │ │ ├── Unregister.reg │ │ ├── common.h │ │ ├── guid.cpp │ │ ├── guid.h │ │ ├── readme.txt │ │ ├── resource.h │ │ ├── resources.rc │ │ └── tileimage.bmp ├── cryptoapi │ ├── BuildChain │ │ ├── CPP │ │ │ ├── BuildChain.cpp │ │ │ ├── BuildChain.sln │ │ │ └── BuildChain.vcproj │ │ ├── Readme.txt │ │ └── sampletest.pfx │ ├── CertSelect │ │ ├── CPP │ │ │ ├── CertSelect.cpp │ │ │ ├── CertSelect.sln │ │ │ └── CertSelect.vcproj │ │ └── Readme.txt │ ├── CertSign │ │ ├── CPP │ │ │ ├── CertSign.sln │ │ │ ├── CertSign.vcproj │ │ │ └── Sign.cpp │ │ ├── CapiSigningCert.pfx │ │ ├── CngSigningCert.pfx │ │ └── ReadMe.txt │ ├── CreateCertificate │ │ ├── CPP │ │ │ ├── CreateCertificate.sln │ │ │ ├── CreateCertificate.vcproj │ │ │ └── createcert.cpp │ │ └── Readme.txt │ ├── ExclusiveTrust │ │ ├── CPP │ │ │ ├── ExclusiveTrust.cpp │ │ │ ├── ExclusiveTrust.sln │ │ │ └── ExclusiveTrust.vcproj │ │ ├── Readme.txt │ │ ├── sampletest.sst │ │ └── testEE.cer │ ├── OCSP_Response │ │ ├── CPP │ │ │ ├── OCSP_Response.sln │ │ │ ├── OCSP_Response.vcproj │ │ │ └── main.cpp │ │ └── ReadMe.txt │ ├── SampleStoreProvider │ │ ├── CPP │ │ │ ├── Provider │ │ │ │ ├── SampleStoreProvider.cpp │ │ │ │ └── SampleStoreProvider.vcproj │ │ │ ├── SampleStore.sln │ │ │ └── Store │ │ │ │ ├── SampleStore.cpp │ │ │ │ ├── SampleStore.def │ │ │ │ └── SampleStore.vcproj │ │ └── Readme.txt │ ├── VerifyKeyTrust │ │ ├── VerifyKeyTrust.sln │ │ ├── VerifyKeyTrust │ │ │ ├── VerifyKeyTrust.cpp │ │ │ └── VerifyKeyTrust.vcproj │ │ ├── contoso.cer │ │ ├── contosoroot.cer │ │ └── readme.txt │ ├── VerifyNameTrust │ │ ├── VerifyNameTrust.sln │ │ ├── VerifyNameTrust │ │ │ ├── VerifyNameTrust.cpp │ │ │ └── VerifyNameTrust.vcproj │ │ ├── contoso.cer │ │ ├── contosoroot.cer │ │ └── readme.txt │ ├── cryptxml │ │ ├── CPP │ │ │ ├── CryptXml.cpp │ │ │ ├── CryptXml.sln │ │ │ ├── CryptXml.vcproj │ │ │ ├── pch.h │ │ │ ├── resolver.cpp │ │ │ ├── sign.cpp │ │ │ └── verify.cpp │ │ └── Readme.txt │ ├── encrypt │ │ ├── Decrypt.c │ │ ├── Decrypt.sln │ │ ├── Decrypt.vcproj │ │ ├── Encrypt.c │ │ ├── Encrypt.sln │ │ ├── Encrypt.vcproj │ │ └── ReadMe.Txt │ ├── encryptdecrypt │ │ ├── EncryptDecrypt.sln │ │ ├── rsacert │ │ │ ├── RSACert.cpp │ │ │ ├── RSACert.vcproj │ │ │ └── ReadMe.Txt │ │ ├── rsakey │ │ │ ├── RSAKey.cpp │ │ │ ├── RSAKey.vcproj │ │ │ └── ReadMe.Txt │ │ └── sessionkey │ │ │ ├── ReadMe.Txt │ │ │ ├── SessionKey.cpp │ │ │ └── SessionKey.vcproj │ ├── encryptmessage │ │ ├── Readme.txt │ │ └── cpp │ │ │ ├── cms_encrypt.cpp │ │ │ ├── cms_encrypt.sln │ │ │ └── cms_encrypt.vcproj │ ├── enumalgs │ │ ├── EnumAlgs.c │ │ ├── EnumAlgs.sln │ │ ├── EnumAlgs.vcproj │ │ └── ReadMe.Txt │ ├── inituser │ │ ├── InitUser.c │ │ ├── InitUser.sln │ │ ├── InitUser.vcproj │ │ └── ReadMe.Txt │ ├── logotypes │ │ ├── Readme.txt │ │ ├── TestCertificate.cer │ │ └── cpp │ │ │ ├── logotypes.cpp │ │ │ ├── logotypes.sln │ │ │ └── logotypes.vcproj │ ├── peertrust │ │ ├── cpp │ │ │ ├── peertrust.cpp │ │ │ ├── peertrust.sln │ │ │ └── peertrust.vcproj │ │ └── readme.txt │ ├── signhash │ │ ├── Readme.txt │ │ ├── SignHash.cpp │ │ ├── Signhash.sln │ │ └── Signhash.vcproj │ └── signmessage │ │ ├── Readme.txt │ │ └── cpp │ │ ├── cms_sign.cpp │ │ ├── cms_sign.sln │ │ └── cms_sign.vcproj ├── lsapolicy │ ├── lsaprivs │ │ ├── LsaPrivs.c │ │ ├── Makefile │ │ └── ReadMe.Txt │ └── machacct │ │ ├── MachAcct.c │ │ ├── Makefile │ │ └── ReadMe.Txt ├── parentalcontrols │ ├── complianceapi │ │ ├── ComplianceAPI.cpp │ │ ├── ComplianceAPI.h │ │ ├── ComplianceAPI.sln │ │ ├── ComplianceAPI.vcproj │ │ └── readme.txt │ ├── complianceapp │ │ ├── ComplianceApp.cpp │ │ ├── ComplianceApp.h │ │ ├── ComplianceApp.sln │ │ ├── ComplianceApp.vcproj │ │ └── readme.txt │ ├── uiextensibility │ │ ├── UIExtensibility.cpp │ │ ├── UIExtensibility.h │ │ ├── UIExtensibility.sln │ │ ├── UIExtensibility.vcproj │ │ └── readme.txt │ ├── utilities │ │ ├── Utilities.cpp │ │ ├── Utilities.h │ │ ├── Utilities.sln │ │ ├── Utilities.vcproj │ │ └── readme.txt │ └── webextensibility │ │ ├── WebExtensibility.cpp │ │ ├── WebExtensibility.h │ │ ├── WebExtensibility.sln │ │ ├── WebExtensibility.vcproj │ │ └── readme.txt ├── securitycenter │ ├── ReadMe.txt │ ├── SecurityCenterMonitoringSample.cpp │ ├── SecurityCenterMonitoringSample.sln │ ├── SecurityCenterMonitoringSample.vcproj │ ├── stdafx.cpp │ └── stdafx.h ├── smartcard │ └── smartcardapi │ │ └── scquery │ │ ├── Makefile │ │ ├── ReadMe.Txt │ │ ├── SCCommon.Cpp │ │ ├── SCCommon.h │ │ └── SCQuery.Cpp ├── windowsfirewall │ ├── EdgeTraversalOptions │ │ ├── EdgeTraversalOptions.rc │ │ ├── EdgeTraversalOptions.sln │ │ ├── EdgeTraversalOptions.vcproj │ │ ├── Readme.txt │ │ ├── main.cpp │ │ └── resource.h │ ├── MultipleActiveProfiles │ │ ├── MultipleActiveProfiles.sln │ │ ├── MultipleActiveProfiles.vcproj │ │ ├── Readme.txt │ │ └── main.cpp │ ├── RegisterWithFirewallOwnership │ │ ├── Main.cpp │ │ ├── ReadMe.txt │ │ ├── RegisterFirewallSample.rc │ │ ├── RegisterFirewallSample.sln │ │ └── RegisterFirewallSample.vcproj │ ├── RegisterWithoutCategoryOwnership │ │ ├── Main.cpp │ │ ├── ReadMe.txt │ │ ├── RegisterWithoutCategoryOwnership.rc │ │ ├── RegisterWithoutCategoryOwnership.sln │ │ └── RegisterWithoutCategoryOwnership.vcproj │ ├── add_gre_rule │ │ ├── Add_GRE_Rule.cpp │ │ ├── Add_GRE_Rule.rc │ │ ├── Add_GRE_Rule.sln │ │ ├── Add_GRE_Rule.vcproj │ │ └── ReadMe.txt │ ├── add_icmp_rule │ │ ├── Add_ICMP_Rule.cpp │ │ ├── Add_ICMP_Rule.rc │ │ ├── Add_ICMP_Rule.sln │ │ ├── Add_ICMP_Rule.vcproj │ │ └── ReadMe.txt │ ├── add_lan_rule │ │ ├── Add_LAN_Rule.cpp │ │ ├── Add_LAN_Rule.rc │ │ ├── Add_LAN_Rule.sln │ │ ├── Add_LAN_Rule.vcproj │ │ └── ReadMe.txt │ ├── add_outbound_rule │ │ ├── Add_Outbound_Rule.cpp │ │ ├── Add_Outbound_Rule.rc │ │ ├── Add_Outbound_Rule.sln │ │ ├── Add_Outbound_Rule.vcproj │ │ └── ReadMe.txt │ ├── add_perinterface_rule │ │ ├── Add_PerInterface_Rule.cpp │ │ ├── Add_PerInterface_Rule.rc │ │ ├── Add_PerInterface_Rule.sln │ │ ├── Add_PerInterface_Rule.vcproj │ │ └── ReadMe.txt │ ├── add_service_rule │ │ ├── Add_Service_Rule.cpp │ │ ├── Add_Service_Rule.rc │ │ ├── Add_Service_Rule.sln │ │ ├── Add_Service_Rule.vcproj │ │ └── ReadMe.txt │ ├── disable_firewall_perinterface │ │ ├── Disable_Firewall_PerInterface.cpp │ │ ├── Disable_Firewall_PerInterface.sln │ │ ├── Disable_Firewall_PerInterface.vcproj │ │ └── ReadMe.txt │ ├── disablewindowsfirewall │ │ ├── DisableWindowsFirewall.cpp │ │ ├── DisableWindowsFirewall.sln │ │ ├── DisableWindowsFirewall.vcproj │ │ └── ReadMe.txt │ ├── enablegroup │ │ ├── EnableGroup.cpp │ │ ├── EnableGroup.rc │ │ ├── EnableGroup.sln │ │ ├── EnableGroup.vcproj │ │ └── ReadMe.txt │ ├── enumeratefirewallrules │ │ ├── EnumerateFirewallRules.cpp │ │ ├── EnumerateFirewallRules.sln │ │ ├── EnumerateFirewallRules.vcproj │ │ └── ReadMe.txt │ ├── getfirewallsettings │ │ ├── GetFirewallSettings.cpp │ │ ├── GetFirewallSettings.sln │ │ ├── GetFirewallSettings.vcproj │ │ └── ReadMe.txt │ └── restrictservice │ │ ├── ReadMe.txt │ │ ├── RestrictService.cpp │ │ ├── RestrictService.sln │ │ └── RestrictService.vcproj └── x509 certificate enrollment │ ├── CSharp │ ├── EnrollSimpleUserCert │ │ ├── EnrollCertificate.cs │ │ ├── EnrollSimpleUserCert.csproj │ │ ├── EnrollSimpleUserCert.sln │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── readme.txt │ └── enrollWithIX509EnrollmentHelper │ │ ├── enrollWithIX509EnrollmentHelper.cs │ │ ├── enrollWithIX509EnrollmentHelper.csproj │ │ ├── enrollWithIX509EnrollmentHelper.sln │ │ └── readme.txt │ ├── VBS │ ├── EnrollSimpleMachineCert │ │ ├── Readme.txt │ │ └── enrollSimpleMachineCert.vbs │ ├── Readme.txt │ └── enrollSimpleUserCert.vbs │ └── vc │ ├── createcngcustomcmc │ ├── Readme.txt │ ├── createCNGCustomCMC.cpp │ ├── createCNGCustomCMC.sln │ └── createCNGCustomCMC.vcproj │ ├── enrollCustomPKCS10 │ ├── Readme.txt │ ├── enrollCustomPKCS10.cpp │ ├── enrollCustomPKCS10.sln │ └── enrollCustomPKCS10.vcproj │ ├── enrollCustomPKCS10_2 │ ├── Readme.txt │ ├── enrollCustomPKCS10_2.cpp │ ├── enrollCustomPKCS10_2.sln │ └── enrollCustomPKCS10_2.vcproj │ ├── enrollWithICertRequest3 │ ├── enrollWithICertRequest3.cpp │ ├── enrollWithICertRequest3.sln │ ├── enrollWithICertRequest3.vcproj │ └── readme.txt │ ├── enrollWithIX509EnrollmentHelper │ ├── enrollWithIX509EnrollmentHelper.cpp │ ├── enrollWithIX509EnrollmentHelper.sln │ ├── enrollWithIX509EnrollmentHelper.vcproj │ └── readme.txt │ ├── enrollcommon │ ├── Readme.txt │ ├── enrollCommon.cpp │ └── enrollCommon.h │ ├── enrollcustomcmc │ ├── Readme.txt │ ├── enrollCustomCMC.cpp │ ├── enrollCustomCMC.sln │ └── enrollCustomCMC.vcproj │ ├── enrolleobocmc │ ├── Readme.txt │ ├── enrollEOBOCMC.cpp │ ├── enrollEOBOCMC.sln │ └── enrollEOBOCMC.vcproj │ ├── enrollfrompublickey │ ├── Readme.txt │ ├── enrollFromPublicKey.cpp │ ├── enrollFromPublicKey.sln │ └── enrollFromPublicKey.vcproj │ ├── enrollkeyarchivalcmc │ ├── Readme.txt │ ├── enrollKeyArchivalCMC.cpp │ ├── enrollKeyArchivalCMC.sln │ └── enrollKeyArchivalCMC.vcproj │ ├── enrollnestedcmc │ ├── Readme.txt │ ├── enrollNestedCMC.cpp │ ├── enrollNestedCMC.sln │ └── enrollNestedCMC.vcproj │ ├── enrollpkcs7 │ ├── Readme.txt │ ├── enrollPKCS7.cpp │ ├── enrollPKCS7.sln │ └── enrollPKCS7.vcproj │ ├── enrollrenewalpkcs7 │ ├── Readme.txt │ ├── enrollRenewalPKCS7.cpp │ ├── enrollRenewalPKCS7.sln │ └── enrollRenewalPKCS7.vcproj │ ├── enrollsimplemachinecert │ ├── Readme.txt │ ├── enrollSimpleMachineCert.cpp │ ├── enrollSimpleMachineCert.sln │ └── enrollSimpleMachineCert.vcproj │ ├── enrollsimpleusercert │ ├── Readme.txt │ ├── enrollSimpleUserCert.cpp │ ├── enrollSimpleUserCert.sln │ └── enrollSimpleUserCert.vcproj │ └── installresponsefrompfx │ ├── Readme.txt │ ├── installResponseFromPFX.cpp │ ├── installResponseFromPFX.sln │ └── installResponseFromPFX.vcproj ├── sysmgmt ├── events │ └── wec │ │ └── cpp │ │ ├── AddEventSource.cpp │ │ ├── CreateSubscription.cpp │ │ ├── EnumerateSubscriptions.cpp │ │ ├── GetArrayProperty.cpp │ │ ├── GetProperty.cpp │ │ ├── GetRuntimeStatus.cpp │ │ ├── GetSubscription.cpp │ │ ├── Main.cpp │ │ ├── Readme.txt │ │ ├── RetrySubscription.cpp │ │ ├── Subscription.h │ │ ├── Subscription.sln │ │ ├── Subscription.vcproj │ │ ├── Utils.cpp │ │ ├── deploy.cmd │ │ └── setup.cmd ├── mmc3.0 │ ├── ActionsSample │ │ ├── ActionsListView.cs │ │ ├── ActionsSample.csproj │ │ ├── ActionsSample.sln │ │ ├── ActionsSnapIn.cs │ │ └── AssemblyInfo.cs │ ├── DragDropSample │ │ ├── AssemblyInfo.cs │ │ ├── DragDropListView.cs │ │ ├── DragDropSample.csproj │ │ ├── DragDropSample.sln │ │ └── DragDropSnapIn.cs │ ├── ExtensibleSnapInSample │ │ ├── AssemblyInfo.cs │ │ ├── ExtensibleSnapIn.cs │ │ ├── ExtensibleSnapIn.csproj │ │ └── ExtensibleSnapInSample.sln │ ├── ExtensionToPropertySheetSample │ │ ├── assemblyinfo.cs │ │ ├── extensiontopropertysheet.cs │ │ ├── extensiontopropertysheetsample.csproj │ │ ├── extensiontopropertysheetsample.sln │ │ ├── machinepropertiescontrol.cs │ │ ├── machinepropertiescontrol.designer.cs │ │ ├── machinepropertiescontrol.resx │ │ └── machinepropertypage.cs │ ├── ExtensionToSnapInSample │ │ ├── AssemblyInfo.cs │ │ ├── ExtensionToSnapIn.cs │ │ ├── ExtensionToSnapInSample.csproj │ │ └── ExtensionToSnapInSample.sln │ ├── HelpSample │ │ ├── AssemblyInfo.cs │ │ ├── HelpSample.csproj │ │ ├── HelpSample.sln │ │ ├── HelpSampleReference │ │ │ ├── HelpSampleReference.chm │ │ │ ├── HelpSampleReference.hhp │ │ │ ├── HelpSampleReferenceIndex.hhk │ │ │ ├── HelpSampleReferenceTOC.hhc │ │ │ ├── Overview.htm │ │ │ ├── Topic1.htm │ │ │ └── Topic2.htm │ │ └── HelpSnapIn.cs │ ├── HtmlViewSample │ │ ├── AssemblyInfo.cs │ │ ├── HtmlViewSample.csproj │ │ ├── HtmlViewSample.sln │ │ └── HtmlViewSnapIn.cs │ ├── InitializationWizardSample │ │ ├── AssemblyInfo.cs │ │ ├── InitializationWizard.Designer.cs │ │ ├── InitializationWizard.cs │ │ ├── InitializationWizard.resx │ │ ├── InitializationWizardSample.csproj │ │ ├── InitializationWizardSample.sln │ │ └── InitializationWizardSnapIn.cs │ ├── LocalizedRegistrationSample │ │ ├── AssemblyInfo.cs │ │ ├── LocalizedRegistrationSample.csproj │ │ ├── LocalizedRegistrationSample.sln │ │ ├── LocalizedSnapIn.cs │ │ └── Resource-en │ │ │ ├── Resource-en.aps │ │ │ ├── Resource-en.sln │ │ │ ├── Resource-en.vcproj │ │ │ ├── Resource.aps │ │ │ ├── Resource.cpp │ │ │ ├── Resource.rc │ │ │ ├── bitmap1.bmp │ │ │ ├── bitmap2.bmp │ │ │ ├── icon1.ico │ │ │ ├── resource.h │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ ├── MessageViewSample │ │ ├── AssemblyInfo.cs │ │ ├── MessageViewSample.csproj │ │ ├── MessageViewSample.sln │ │ └── MessageViewSnapIn.cs │ ├── ModalDialogSample │ │ ├── AssemblyInfo.cs │ │ ├── ConnectDialog.Designer.cs │ │ ├── ConnectDialog.cs │ │ ├── ConnectDialog.resx │ │ ├── ModalDialogSample.csproj │ │ ├── ModalDialogSample.sln │ │ ├── ModalDialogSnapIn.cs │ │ ├── UserDefinedForm.Designer.cs │ │ ├── UserDefinedForm.cs │ │ ├── UserDefinedForm.resx │ │ ├── UserDefinedFormForWaiting.Designer.cs │ │ ├── UserDefinedFormForWaiting.cs │ │ └── UserDefinedFormForWaiting.resx │ ├── OnScopeChangeSample │ │ ├── assemblyinfo.cs │ │ ├── messageviews.cs │ │ ├── onscopechangesample.csproj │ │ ├── onscopechangesample.sln │ │ └── onscopechangesnapin.cs │ ├── PersistenceSample │ │ ├── AssemblyInfo.cs │ │ ├── PersistenceSample.csproj │ │ ├── PersistenceSample.sln │ │ └── PersistenceSnapIn.cs │ ├── PropertySheetSample │ │ ├── AssemblyInfo.cs │ │ ├── PropertySheetSample.csproj │ │ ├── PropertySheetSample.sln │ │ ├── PropertySheetSnapIn.cs │ │ ├── ScopePropertiesControl.Designer.cs │ │ ├── ScopePropertiesControl.cs │ │ ├── ScopePropertiesControl.resx │ │ ├── ScopePropertyPage.cs │ │ ├── UserListView.cs │ │ ├── UserPropertiesControl.Designer.cs │ │ ├── UserPropertiesControl.cs │ │ ├── UserPropertiesControl.resx │ │ └── UserPropertyPage.cs │ ├── SelectionFormViewSample │ │ ├── AssemblyInfo.cs │ │ ├── SelectionControl.Designer.cs │ │ ├── SelectionControl.cs │ │ ├── SelectionControl.resx │ │ ├── SelectionFormView.cs │ │ ├── SelectionFormViewSample.csproj │ │ ├── SelectionFormViewSample.sln │ │ └── SelectionFormViewSnapIn.cs │ ├── SelectionListViewSample │ │ ├── AssemblyInfo.cs │ │ ├── SelectionListView.cs │ │ ├── SelectionListViewSample.csproj │ │ ├── SelectionListViewSample.sln │ │ └── SelectionListviewSnapIn.cs │ ├── ServicesManagerSample │ │ ├── GeneralPropertiesControl.Designer.cs │ │ ├── GeneralPropertiesControl.cs │ │ ├── GeneralPropertiesControl.resx │ │ ├── GeneralPropertyPage.cs │ │ ├── Images16.bmp │ │ ├── Images32.bmp │ │ ├── Resource1.Designer.cs │ │ ├── Resource1.resx │ │ ├── ResourceDLL │ │ │ ├── RCa02080 │ │ │ ├── ResourceDLL.aps │ │ │ ├── ResourceDLL.rc │ │ │ ├── Resourcedll.cpp │ │ │ ├── Resourcedll.sln │ │ │ ├── Resourcedll.vcproj │ │ │ ├── bitmap1.bmp │ │ │ ├── bitmap2.bmp │ │ │ ├── icon1.ico │ │ │ ├── resource.h │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── ServicesListView.cs │ │ ├── ServicesManagerSample.csproj │ │ ├── ServicesManagerSample.sln │ │ ├── ServicesManagerSnapIn.cs │ │ ├── ServicesManagerSnapIn.resx │ │ ├── StartupPropertiesControl.Designer.cs │ │ ├── StartupPropertiesControl.cs │ │ ├── StartupPropertiesControl.resx │ │ └── StartupPropertyPage.cs │ ├── SimpleSnapInSample │ │ ├── AssemblyInfo.cs │ │ ├── SimpleSnapIn.cs │ │ ├── SimpleSnapInSample.csproj │ │ └── SimpleSnapInSample.sln │ ├── StandardVerbsSample │ │ ├── AssemblyInfo.cs │ │ ├── StandardVerbsListView.cs │ │ ├── StandardVerbsSample.csproj │ │ ├── StandardVerbsSample.sln │ │ └── StandardVerbsSnapIn.cs │ ├── StatusSample │ │ ├── AssemblyInfo.cs │ │ ├── StatusSample.csproj │ │ ├── StatusSample.sln │ │ └── StatusSnapIn.cs │ ├── ThreadingSample │ │ ├── AssemblyInfo.cs │ │ ├── AsyncExpandSnapIn.cs │ │ ├── ThreadingSample.csproj │ │ └── ThreadingSample.sln │ ├── ViewSwitchingSample │ │ ├── assemblyinfo.cs │ │ ├── messageviews.cs │ │ ├── viewswitchingsample.csproj │ │ ├── viewswitchingsample.sln │ │ └── viewswitchingsnapin.cs │ ├── extendingcomputermanagementsample │ │ ├── AssemblyInfo.cs │ │ ├── ExtendingComputerManagement.sln │ │ ├── ExtendingComputerManagementSample.csproj │ │ └── ExtensionToComputerManagement.cs │ └── readme.txt ├── msi │ ├── create.dll │ │ ├── Create.Cpp │ │ ├── create.def │ │ ├── create.rc │ │ ├── makefile │ │ └── readme.txt │ ├── msistuff │ │ ├── makefile │ │ ├── msistuff.cpp │ │ ├── msistuff.rc │ │ └── readme.htm │ ├── process.dll │ │ ├── Process.cpp │ │ ├── makefile │ │ ├── process.def │ │ ├── process.rc │ │ └── readme.txt │ ├── remove.dll │ │ ├── Remove.cpp │ │ ├── makefile │ │ ├── readme.txt │ │ ├── remove.def │ │ └── remove.rc │ ├── scripts │ │ ├── WiCompon.vbs │ │ ├── WiDialog.vbs │ │ ├── WiDiffDb.vbs │ │ ├── WiExport.vbs │ │ ├── WiFeatur.vbs │ │ ├── WiFilVer.vbs │ │ ├── WiGenXfm.vbs │ │ ├── WiImport.vbs │ │ ├── WiLangId.vbs │ │ ├── WiLstPrd.vbs │ │ ├── WiLstPrdEx.vbs │ │ ├── WiLstScr.vbs │ │ ├── WiLstXfm.vbs │ │ ├── WiMakCab.vbs │ │ ├── WiMerge.vbs │ │ ├── WiPolicy.vbs │ │ ├── WiReadMe.txt │ │ ├── WiRunSQL.vbs │ │ ├── WiStream.vbs │ │ ├── WiSubStg.vbs │ │ ├── WiSumInf.vbs │ │ ├── WiTextIn.vbs │ │ ├── WiToAnsi.vbs │ │ └── WiUseXfm.vbs │ ├── setup.exe │ │ ├── Makefile │ │ ├── common.h │ │ ├── readme.htm │ │ ├── resource.h │ │ ├── setup.cpp │ │ ├── setup.h │ │ ├── setup.ico │ │ ├── setup.rc │ │ ├── setupui.cpp │ │ ├── setupui.h │ │ ├── upgrdmsi.cpp │ │ ├── utils.cpp │ │ └── vertrust.cpp │ └── tutorial.dll │ │ ├── Tutorial.cpp │ │ ├── makefile │ │ ├── readme.txt │ │ ├── tutorial.def │ │ └── tutorial.rc ├── tasksched │ ├── Makefile │ ├── ReadMe.Txt │ ├── emailonevent │ │ ├── EventTrigger_EmailAction_UserLogon_Example.cpp │ │ ├── TaskSample_EmailOnEvent.sln │ │ └── TaskSample_EmailOnEvent.vcproj │ ├── exeonboot │ │ ├── BootTrigger_ExecAction_LocalService_Example.cpp │ │ ├── TaskSample_ExeOnBoot.sln │ │ └── TaskSample_ExeOnBoot.vcproj │ ├── exeonlogon │ │ ├── LogonTrigger_ExecAction_Group_Example.cpp │ │ ├── TaskSample_ExeOnLogon.sln │ │ └── TaskSample_ExeOnLogon.vcproj │ ├── exeonregistration │ │ ├── RegistrationTrigger_ExecAction_UserLogon_Example.cpp │ │ ├── TaskSample_ExeOnRegistration.sln │ │ └── TaskSample_ExeOnRegistration.vcproj │ ├── registeredtaskenum │ │ ├── TaskEnumeration_Example.cpp │ │ ├── TaskSample_RegisteredTaskEnumeration.sln │ │ └── TaskSample_RegisteredTaskEnumeration.vcproj │ └── sa.Cpp ├── windowspowershell │ ├── csharp │ │ ├── accessdbprovidersample01 │ │ │ ├── AccessDBProviderSample01.cs │ │ │ ├── AccessDBProviderSample01.csproj │ │ │ ├── AccessDBProviderSample01.sln │ │ │ ├── AssemblyInfo.cs │ │ │ └── readme.txt │ │ ├── accessdbprovidersample02 │ │ │ ├── AccessDBProviderSample02.cs │ │ │ ├── AccessDBProviderSample02.csproj │ │ │ ├── AccessDBProviderSample02.sln │ │ │ ├── AssemblyInfo.cs │ │ │ └── readme.txt │ │ ├── accessdbprovidersample03 │ │ │ ├── AccessDBProviderSample03.cs │ │ │ ├── AccessDBProviderSample03.csproj │ │ │ ├── AccessDBProviderSample03.sln │ │ │ ├── AssemblyInfo.cs │ │ │ └── readme.txt │ │ ├── accessdbprovidersample04 │ │ │ ├── AccessDBProviderSample04.cs │ │ │ ├── AccessDBProviderSample04.csproj │ │ │ ├── AccessDBProviderSample04.sln │ │ │ ├── AssemblyInfo.cs │ │ │ └── readme.txt │ │ ├── accessdbprovidersample05 │ │ │ ├── AccessDBProviderSample05.cs │ │ │ ├── AccessDBProviderSample05.csproj │ │ │ ├── AccessDBProviderSample05.sln │ │ │ ├── AssemblyInfo.cs │ │ │ └── readme.txt │ │ ├── accessdbprovidersample06 │ │ │ ├── AccessDBProviderSample06.cs │ │ │ ├── AccessDBProviderSample06.csproj │ │ │ ├── AccessDBProviderSample06.sln │ │ │ ├── AssemblyInfo.cs │ │ │ └── readme.txt │ │ ├── getprocesssample01 │ │ │ ├── AssemblyInfo.cs │ │ │ ├── GetProcessSample01.cs │ │ │ ├── GetProcessSample01.csproj │ │ │ ├── GetProcessSample01.sln │ │ │ └── readme.txt │ │ ├── getprocesssample02 │ │ │ ├── AssemblyInfo.cs │ │ │ ├── GetProcessSample02.cs │ │ │ ├── GetProcessSample02.csproj │ │ │ ├── GetProcessSample02.sln │ │ │ └── readme.txt │ │ ├── getprocesssample03 │ │ │ ├── AssemblyInfo.cs │ │ │ ├── GetProcessSample03.cs │ │ │ ├── GetProcessSample03.csproj │ │ │ ├── GetProcessSample03.sln │ │ │ └── readme.txt │ │ ├── getprocesssample04 │ │ │ ├── AssemblyInfo.cs │ │ │ ├── GetProcessSample04.cs │ │ │ ├── GetProcessSample04.csproj │ │ │ ├── GetProcessSample04.sln │ │ │ └── readme.txt │ │ ├── getprocesssample05 │ │ │ ├── AssemblyInfo.cs │ │ │ ├── GetProcessSample05.cs │ │ │ ├── GetProcessSample05.csproj │ │ │ ├── GetProcessSample05.sln │ │ │ └── readme.txt │ │ ├── host01 │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Host01.cs │ │ │ ├── Host01.csproj │ │ │ ├── Host01.sln │ │ │ ├── MyHost.cs │ │ │ └── readme.txt │ │ ├── host02 │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Host02.cs │ │ │ ├── Host02.csproj │ │ │ ├── Host02.sln │ │ │ ├── MyHost.cs │ │ │ ├── MyHostUserInterface.cs │ │ │ ├── MyRawUserInterface.cs │ │ │ └── readme.txt │ │ ├── host03 │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Host03.cs │ │ │ ├── Host03.csproj │ │ │ ├── Host03.sln │ │ │ ├── MyHost.cs │ │ │ ├── MyHostUserInterface.cs │ │ │ ├── MyRawUserInterface.cs │ │ │ └── readme.txt │ │ ├── runspace01 │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Runspace01.cs │ │ │ ├── Runspace01.csproj │ │ │ ├── Runspace01.sln │ │ │ └── readme.txt │ │ ├── runspace02 │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Runspace02.cs │ │ │ ├── Runspace02.csproj │ │ │ ├── Runspace02.sln │ │ │ └── readme.txt │ │ ├── runspace03 │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Runspace03.cs │ │ │ ├── Runspace03.csproj │ │ │ ├── Runspace03.sln │ │ │ └── readme.txt │ │ ├── runspace04 │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Runspace04.cs │ │ │ ├── Runspace04.csproj │ │ │ ├── Runspace04.sln │ │ │ └── readme.txt │ │ ├── runspace05 │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Runspace05.cs │ │ │ ├── Runspace05.csproj │ │ │ ├── Runspace05.sln │ │ │ └── readme.txt │ │ ├── runspace06 │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Runspace06.cs │ │ │ ├── Runspace06.csproj │ │ │ ├── Runspace06.sln │ │ │ └── readme.txt │ │ ├── runspace07 │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Runspace07.cs │ │ │ ├── Runspace07.csproj │ │ │ ├── Runspace07.sln │ │ │ └── readme.txt │ │ ├── runspace08 │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Runspace08.cs │ │ │ ├── Runspace08.csproj │ │ │ ├── Runspace08.sln │ │ │ └── readme.txt │ │ ├── runspace09 │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Runspace09.cs │ │ │ ├── Runspace09.csproj │ │ │ ├── Runspace09.sln │ │ │ └── readme.txt │ │ ├── runspace10 │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Runspace10.cs │ │ │ ├── Runspace10.csproj │ │ │ ├── Runspace10.sln │ │ │ └── readme.txt │ │ ├── selectobject │ │ │ ├── AssemblyInfo.cs │ │ │ ├── ObjectCommandComparer.cs │ │ │ ├── SelectObj.cs │ │ │ ├── SelectObject.csproj │ │ │ ├── SelectObject.sln │ │ │ └── readme.txt │ │ ├── selectstring │ │ │ ├── AssemblyInfo.cs │ │ │ ├── SelectStrCommandSample.cs │ │ │ ├── SelectStrCommandSample.csproj │ │ │ ├── SelectStrCommandSample.sln │ │ │ └── readme.txt │ │ ├── stopprocesssample01 │ │ │ ├── AssemblyInfo.cs │ │ │ ├── StopProcessSample01.cs │ │ │ ├── StopProcessSample01.csproj │ │ │ ├── StopProcessSample01.sln │ │ │ └── readme.txt │ │ ├── stopprocesssample02 │ │ │ ├── AssemblyInfo.cs │ │ │ ├── StopProcessSample02.cs │ │ │ ├── StopProcessSample02.csproj │ │ │ ├── StopProcessSample02.sln │ │ │ └── readme.txt │ │ ├── stopprocesssample03 │ │ │ ├── AssemblyInfo.cs │ │ │ ├── StopProcessSample03.cs │ │ │ ├── StopProcessSample03.csproj │ │ │ ├── StopProcessSample03.sln │ │ │ └── readme.txt │ │ ├── stopprocesssample04 │ │ │ ├── AssemblyInfo.cs │ │ │ ├── StopProcessSample04.cs │ │ │ ├── StopProcessSample04.csproj │ │ │ ├── StopProcessSample04.sln │ │ │ └── readme.txt │ │ └── templateprovider │ │ │ ├── TemplateProvider.cs │ │ │ ├── TemplateProvider.csproj │ │ │ └── TemplateProvider.sln │ ├── mcpp │ │ ├── runspace03 │ │ │ ├── AssemblyInfo.cpp │ │ │ ├── Runspace03.cpp │ │ │ ├── Runspace03.sln │ │ │ ├── Runspace03.vcproj │ │ │ └── readme.txt │ │ ├── runspace04 │ │ │ ├── AssemblyInfo.cpp │ │ │ ├── Runspace04.cpp │ │ │ ├── Runspace04.sln │ │ │ ├── Runspace04.vcproj │ │ │ └── readme.txt │ │ ├── selectstring │ │ │ ├── AssemblyInfo.cpp │ │ │ ├── MatchInfo.h │ │ │ ├── SelectString.sln │ │ │ ├── SelectString.vcproj │ │ │ ├── SelectStringSample.cpp │ │ │ ├── SelectStringSample.def │ │ │ ├── SelectStringSnapIn.cpp │ │ │ └── readme.txt │ │ └── stopprocesssample │ │ │ ├── AssemblyInfo.cpp │ │ │ ├── StopProcess.sln │ │ │ ├── StopProcess.vcproj │ │ │ ├── StopProcessSample.cpp │ │ │ ├── StopProcessSample.def │ │ │ ├── StopProcessSnapIn.cpp │ │ │ └── readme.txt │ ├── schemas │ │ ├── process.format.ps1xml │ │ └── process.types.ps1xml │ └── vb │ │ ├── getprocesssample05 │ │ ├── AssemblyInfo.vb │ │ ├── GetProcessSample05.sln │ │ ├── GetProcessSample05.vb │ │ ├── GetProcessSample05.vbproj │ │ └── readme.txt │ │ ├── runspace01 │ │ ├── AssemblyInfo.vb │ │ ├── Runspace01.sln │ │ ├── Runspace01.vb │ │ ├── Runspace01.vbproj │ │ └── readme.txt │ │ ├── runspace02 │ │ ├── AssemblyInfo.vb │ │ ├── Runspace02.vb │ │ ├── readme.txt │ │ ├── runspace02.sln │ │ └── runspace02.vbproj │ │ ├── runspace03 │ │ ├── AssemblyInfo.vb │ │ ├── Runspace03.sln │ │ ├── Runspace03.vb │ │ ├── readme.txt │ │ └── runspace03.vbproj │ │ ├── runspace04 │ │ ├── AssemblyInfo.vb │ │ ├── Runspace04.sln │ │ ├── Runspace04.vb │ │ ├── readme.txt │ │ └── runspace04.vbproj │ │ ├── selectobject │ │ ├── AssemblyInfo.vb │ │ ├── ObjectCommandComparer.vb │ │ ├── SelectObj.vb │ │ ├── SelectObjInstaller.vb │ │ ├── SelectObject.sln │ │ ├── SelectObject.vbproj │ │ └── readme.txt │ │ ├── selectstring │ │ ├── AssemblyInfo.vb │ │ ├── SelectStrCommandSample.sln │ │ ├── SelectStrCommandSample.vb │ │ ├── SelectStrCommandSample.vbproj │ │ └── readme.txt │ │ └── stopprocesssample04 │ │ ├── AssemblyInfo.vb │ │ ├── StopProcessSample04.sln │ │ ├── StopProcessSample04.vb │ │ ├── StopProcessSample04.vbproj │ │ └── readme.txt ├── winrm │ ├── ShellClientAPI │ │ ├── ParamsParser.cpp │ │ ├── ParamsParser.h │ │ ├── ShellClient.cpp │ │ ├── ShellClient.h │ │ ├── ShellClientAPI.sln │ │ ├── ShellClientAPI.vcproj │ │ ├── WSManClient.cpp │ │ └── sources │ ├── WSManAuthzPlugin │ │ ├── WSManAuthzPlugin.cpp │ │ ├── WSManAuthzPlugin.def │ │ ├── WSManAuthzPlugin.sln │ │ ├── WSManAuthzPlugin.vcproj │ │ └── sources │ ├── WSManShellPlugin │ │ ├── PluginContext.cpp │ │ ├── PluginContext.h │ │ ├── WSManShellPlugin.cpp │ │ ├── WSManShellPlugin.def │ │ ├── WSManShellPlugin.sln │ │ ├── WSManShellPlugin.vcproj │ │ └── WsManShellPlugIn.xml │ └── hardwaremanagement │ │ ├── hw.mof │ │ ├── main.cpp │ │ ├── wmxidispatch.sln │ │ ├── wmxidispatch.vcproj │ │ ├── wsman.cpp │ │ └── wsman.h └── wmi │ ├── scripting │ ├── asp │ │ ├── jscript │ │ │ └── JsDiskinfo.Asp │ │ └── vbscript │ │ │ └── VbsDiskInfo.Asp │ ├── html │ │ ├── jscript │ │ │ ├── AjsService1.Htm │ │ │ ├── JsService1.Htm │ │ │ └── JsService2.Htm │ │ └── vbscript │ │ │ ├── AVBSService1.Htm │ │ │ ├── VBSService1.Htm │ │ │ ├── VBSService2.Htm │ │ │ └── datetime │ │ │ ├── calendar.htc │ │ │ ├── datetime.hta │ │ │ └── datetime.htc │ └── wsh │ │ ├── jscript │ │ ├── Arraytype.Js │ │ ├── ClassEnum.Js │ │ ├── Derivation.Js │ │ ├── EmbProp.Js │ │ ├── EmptyArray.Js │ │ ├── ExecMethod.Js │ │ ├── InstEnum.Js │ │ ├── MethodEx.Js │ │ ├── MethodSet.Js │ │ ├── Nvs.Js │ │ ├── Nvs2.Js │ │ ├── NvsArray.Js │ │ ├── ObjPath.Js │ │ ├── Process.Js │ │ ├── PropArray.Js │ │ ├── Properties.Js │ │ ├── Property.Js │ │ ├── PutInstance.Js │ │ ├── QualArray.Js │ │ ├── Qualifier.Js │ │ └── System.Js │ │ ├── perl │ │ ├── backupeventlog.pl │ │ ├── cimomid.pl │ │ ├── cleareventlog.pl │ │ ├── datetime.pl │ │ ├── deleteservice.pl │ │ ├── derivation.pl │ │ ├── disabledhcp.pl │ │ ├── dnsdomainname.pl │ │ ├── domainname.pl │ │ ├── emptyarray.pl │ │ ├── enabledhcp.pl │ │ ├── errmsg.pl │ │ ├── getappboost.pl │ │ ├── getbootconfig.pl │ │ ├── getnetworkadapterconfig.pl │ │ ├── listeventlogfiles.pl │ │ ├── listeventsbycode.pl │ │ ├── listnetworkadapters.pl │ │ ├── listnetworkprotocols.pl │ │ ├── listservices.pl │ │ ├── machinename.pl │ │ ├── methodex.pl │ │ ├── ntevent.pl │ │ ├── nvsarray.pl │ │ ├── objset.pl │ │ ├── osinfo.pl │ │ ├── pathbuild.pl │ │ ├── pauseservice.pl │ │ ├── perfmon │ │ │ ├── perfmon.htm │ │ │ ├── perfmon.mof │ │ │ └── perfmon.pl │ │ ├── printerstatus.pl │ │ ├── printjobs.pl │ │ ├── privilege.pl │ │ ├── process.pl │ │ ├── reboot.pl │ │ ├── registry │ │ │ ├── registry.htm │ │ │ ├── registry.mof │ │ │ └── registry.pl │ │ ├── remotereboot.pl │ │ ├── remoteshutdown.pl │ │ ├── resumeservice.pl │ │ ├── schema.pl │ │ ├── service.pl │ │ ├── servicestopped.pl │ │ ├── shutdown.pl │ │ ├── spawn.pl │ │ ├── startservice.pl │ │ ├── stopservice.pl │ │ ├── system.pl │ │ └── viewpagefilesettings.pl │ │ └── vbscript │ │ ├── BackupEventLog.Vbs │ │ ├── Cimomid.Vbs │ │ ├── ClearEventLog.Vbs │ │ ├── DateTime.Vbs │ │ ├── DeleteService.Vbs │ │ ├── Derivation.Vbs │ │ ├── DisableDHCP.Vbs │ │ ├── DnsDomainName.Vbs │ │ ├── Domainname.Vbs │ │ ├── EmptyArray.Vbs │ │ ├── EnableDHCP.Vbs │ │ ├── ErrMsg.Vbs │ │ ├── GetAppBoost.Vbs │ │ ├── GetBootConfig.Vbs │ │ ├── GetNetworkAdapterConfig.Vbs │ │ ├── ListEventLogfiles.Vbs │ │ ├── ListEventsByCode.Vbs │ │ ├── ListNetworkAdapters.Vbs │ │ ├── ListNetworkProtocols.Vbs │ │ ├── ListServices.Vbs │ │ ├── MachineName.Vbs │ │ ├── MethodEx.Vbs │ │ ├── NtEvent.Vbs │ │ ├── NvsArray.Vbs │ │ ├── OSInfo.Vbs │ │ ├── ObjSet.Vbs │ │ ├── PathBuild.Vbs │ │ ├── PauseService.Vbs │ │ ├── PrintJobs.Vbs │ │ ├── PrinterStatus.Vbs │ │ ├── Privilege.Vbs │ │ ├── Process.Vbs │ │ ├── Reboot.Vbs │ │ ├── RemoteReboot.Vbs │ │ ├── RemoteShutdown.Vbs │ │ ├── ResetToDefault.Vbs │ │ ├── ResumeService.Vbs │ │ ├── Schema.Vbs │ │ ├── Service.Vbs │ │ ├── ServiceStopped.Vbs │ │ ├── Shutdown.Vbs │ │ ├── Spawn.Vbs │ │ ├── StartService.Vbs │ │ ├── StopService.Vbs │ │ ├── System.Vbs │ │ ├── ViewPageFileSettings.Vbs │ │ ├── perfmon │ │ ├── PerfMon.Htm │ │ ├── PerfMon.Mof │ │ └── PerfMon.Vbs │ │ └── registry │ │ ├── Registry.Htm │ │ ├── Registry.Mof │ │ └── Registry.Vbs │ └── vc │ ├── advclient │ ├── AdvClient.cpp │ ├── AdvClient.h │ ├── AdvClient.rc │ ├── AdvClient.sln │ ├── AdvClient.vcproj │ ├── AdvClientdlg.cpp │ ├── AdvClientdlg.h │ ├── OnAsync.h │ ├── OnDiskPropsDescriptions.cpp │ ├── StdAfx.h │ ├── client.htm │ ├── officedlg.cpp │ ├── officedlg.h │ ├── onaddequipment.cpp │ ├── onasync.cpp │ ├── onconnect.cpp │ ├── ondiskdetails.cpp │ ├── onenumdisks.cpp │ ├── onenumsvcs.cpp │ ├── onperm.cpp │ ├── onregister.cpp │ ├── ontemp.cpp │ ├── resource.h │ └── stdafx.cpp │ ├── classprov │ ├── ClassFac.Cpp │ ├── ClassProv.Cpp │ ├── ClassProv.Def │ ├── ClassProv.Htm │ ├── ClassProv.Mof │ ├── ClassProv.sln │ ├── ClassProv.vcproj │ ├── MainDll.Cpp │ ├── Makefile │ ├── Sample.h │ └── Utils.Cpp │ ├── decoupled │ ├── event_consumer │ │ ├── DEvtCProv.Htm │ │ ├── Events.cpp │ │ ├── Globals.cpp │ │ ├── Main.cpp │ │ ├── PreComp.h │ │ ├── SdkSample.sln │ │ ├── SdkSample.vcproj │ │ ├── UpgradeLog.XML │ │ ├── _upgradereport_files │ │ │ ├── UpgradeReport.css │ │ │ ├── UpgradeReport.xslt │ │ │ ├── UpgradeReport_Minus.gif │ │ │ └── UpgradeReport_Plus.gif │ │ ├── include │ │ │ ├── Events.h │ │ │ ├── Globals.h │ │ │ └── Resource.h │ │ └── mof │ │ │ └── ProvReg.mof │ ├── event_provider │ │ ├── DEvtProv.Htm │ │ ├── Events.cpp │ │ ├── Globals.cpp │ │ ├── Main.cpp │ │ ├── SdkSample.sln │ │ ├── SdkSample.vcproj │ │ ├── include │ │ │ ├── Events.h │ │ │ ├── Globals.h │ │ │ ├── PreComp.h │ │ │ └── Resource.h │ │ └── mof │ │ │ └── ProvReg.mof │ └── instance_provider │ │ ├── DInstProv.Htm │ │ ├── Globals.cpp │ │ ├── Main.cpp │ │ ├── PreComp.h │ │ ├── SdkSample.sln │ │ ├── SdkSample.vcproj │ │ ├── Service.cpp │ │ ├── include │ │ ├── Globals.h │ │ ├── PreComp.h │ │ ├── Resource.h │ │ └── Service.h │ │ └── mof │ │ └── ProvReg.mof │ ├── eventconsumer │ ├── Consumer.Cpp │ ├── Consumer.h │ ├── EventConsumer.Htm │ ├── Factory.Cpp │ ├── Factory.h │ ├── PermEvents.Cpp │ ├── PermEvents.RES │ ├── PermEvents.Rc │ ├── PermEvents.h │ ├── PermEvents.sln │ ├── PermEvents.vcproj │ ├── PermEventsdlg.Cpp │ ├── PermEventsdlg.h │ ├── Provider.Cpp │ ├── Provider.h │ ├── Resource.h │ ├── SampleViewer.Mof │ ├── StdAfx.Cpp │ └── StdAfx.h │ ├── eventprovider │ ├── EvProv.Cpp │ ├── EvProv.Def │ ├── EvProv.Mof │ ├── EvProv.h │ ├── EventProvider.Htm │ ├── EventProvider.sln │ ├── EventProvider.vcproj │ ├── Makefile │ ├── OaHelp.Inl │ ├── OleSrvr.Cpp │ └── evprov-alpha.def │ ├── hiperfclient │ ├── RefClint.Cpp │ ├── RefClint.h │ ├── SamplCli.Cpp │ ├── SamplCli.Html │ ├── SamplCli.sln │ ├── SamplCli.vcproj │ └── makefile │ ├── hiperfprovider │ ├── BasicHiPerf.Cpp │ ├── BasicHiPerf.Def │ ├── BasicHiPerf.Html │ ├── BasicHiPerf.Mof │ ├── BasicHiPerf.h │ ├── BasicHiPerf.sln │ ├── BasicHiPerf.vcproj │ ├── Factory.Cpp │ ├── Factory.h │ ├── Makefile │ └── Server.Cpp │ ├── instprov │ ├── ClassFac.Cpp │ ├── InstProv.Cpp │ ├── InstProv.Def │ ├── InstProv.Htm │ ├── InstProv.Mof │ ├── InstProv.sln │ ├── InstProv.vcproj │ ├── MainDll.Cpp │ ├── Makefile │ ├── Sample.h │ └── Utils.Cpp │ ├── methcli │ ├── Makefile │ ├── MethCli.Cpp │ ├── MethCli.Htm │ ├── MethCli.sln │ └── MethCli.vcproj │ ├── methprov │ ├── ClassFac.Cpp │ ├── MainDll.Cpp │ ├── Makefile │ ├── MethProv.Cpp │ ├── MethProv.Def │ ├── MethProv.Htm │ ├── MethProv.Mof │ ├── MethProv.h │ ├── MethProv.sln │ └── MethProv.vcproj │ ├── pathparser │ ├── PathParser.cpp │ ├── makefile │ ├── pathparser.htm │ ├── pathparser.sln │ ├── pathparser.vcproj │ └── readme.txt │ ├── propprov │ ├── ClassFac.Cpp │ ├── MainDll.Cpp │ ├── Makefile │ ├── PropProv.Cpp │ ├── PropProv.Def │ ├── PropProv.Htm │ ├── PropProv.Mof │ ├── PropProv.sln │ ├── PropProv.vcproj │ └── Sample.h │ ├── queryparser │ ├── QueryParser.cpp │ ├── QueryParser.htm │ ├── QueryParser.sln │ ├── QueryParser.vcproj │ ├── UpgradeLog.XML │ ├── _upgradereport_files │ │ ├── UpgradeReport.css │ │ ├── UpgradeReport.xslt │ │ ├── UpgradeReport_Minus.gif │ │ └── UpgradeReport_Plus.gif │ ├── makefile │ └── readme.txt │ ├── security │ ├── UpgradeLog.XML │ ├── _upgradereport_files │ │ ├── UpgradeReport.css │ │ ├── UpgradeReport.xslt │ │ ├── UpgradeReport_Minus.gif │ │ └── UpgradeReport_Plus.gif │ ├── makefile │ ├── readme.txt │ ├── security.cpp │ ├── security.htm │ ├── security.sln │ └── security.vcproj │ ├── snapin │ └── snapin.htm │ ├── tempconsumer │ ├── Consumer.Cpp │ ├── Makefile │ ├── OaHelp.Inl │ ├── TempConsumer.Htm │ ├── TempConsumer.sln │ └── TempConsumer.vcproj │ ├── utillib │ ├── PreComp.h │ ├── UtilLib.Htm │ ├── UtilLib.h │ ├── UtilLib.sln │ ├── UtilLib.vcproj │ ├── Utils.Cpp │ ├── WbemSec.Cpp │ └── WbemSec.h │ └── wmidiskperf │ ├── DpDetail.Cpp │ ├── Makefile │ ├── UpgradeLog.XML │ ├── WMIDiskPerf.Cpp │ ├── WMIDiskPerf.Htm │ ├── _upgradereport_files │ ├── UpgradeReport.css │ ├── UpgradeReport.xslt │ ├── UpgradeReport_Minus.gif │ └── UpgradeReport_Plus.gif │ ├── vc80.idb │ ├── wmidiskperf.sln │ └── wmidiskperf.vcproj ├── tabletpc ├── MathInputControl │ └── cpp │ │ ├── EventSinks.h │ │ ├── MathInputControl.cpp │ │ ├── MathInputControl.h │ │ ├── MathInputControl.rc │ │ ├── MathInputControl.sln │ │ ├── MathInputControl.vcproj │ │ ├── ReadMe.txt │ │ └── resource.h ├── TipAutoComplete │ ├── List.txt │ ├── ReadMe.txt │ ├── Resource.h │ ├── TIPAutoCompleteSDKSample.cpp │ ├── TIPAutoCompleteSDKSample.manifest │ ├── TIPAutoCompleteSDKSample.rc │ ├── TIPAutoCompleteSDKSample.sln │ └── TIPAutoCompleteSDKSample.vcproj ├── advreco │ └── cpp │ │ ├── AdvReco.cpp │ │ ├── AdvReco.dsp │ │ ├── AdvReco.h │ │ ├── AdvReco.rc │ │ ├── AdvReco.sln │ │ ├── AdvReco.vcproj │ │ ├── App.ico │ │ ├── ChildWnds.cpp │ │ ├── ChildWnds.h │ │ ├── EventSinks.h │ │ ├── readme.txt │ │ └── resource.h ├── autoclaims │ ├── CSharp │ │ ├── AssemblyInfo.cs │ │ ├── AutoClaims.cs │ │ ├── AutoClaims.csproj │ │ ├── AutoClaims.sln │ │ ├── Car.jpg │ │ ├── app.ico │ │ ├── autoclaims.resx │ │ └── checkmark.jpg │ ├── VB.NET │ │ ├── AssemblyInfo.vb │ │ ├── AutoClaims.resx │ │ ├── AutoClaims.sln │ │ ├── AutoClaims.vb │ │ ├── AutoClaims.vbproj │ │ ├── car.jpg │ │ └── checkmark.jpg │ └── readme.txt ├── basicrecognition │ └── cpp │ │ ├── BasicRecognition.cpp │ │ ├── BasicRecognition.rc │ │ ├── BasicRecognition.sln │ │ ├── BasicRecognition.vcproj │ │ ├── app.ico │ │ ├── readme.txt │ │ └── resource.h ├── eventsink │ └── cpp │ │ ├── EventSink.cpp │ │ ├── EventSink.h │ │ ├── EventSink.ico │ │ ├── EventSink.rc │ │ ├── EventSink.sln │ │ ├── EventSink.vcproj │ │ ├── Resource.h │ │ ├── TpcConpt.h │ │ ├── readme.txt │ │ └── small.ico ├── inkclipboard │ └── cs │ │ ├── App.ico │ │ ├── AssemblyInfo.cs │ │ ├── InkClipboard.cs │ │ ├── InkClipboard.csproj │ │ ├── InkClipboard.resx │ │ ├── InkClipboard.sln │ │ └── readme.txt ├── inkcollection │ ├── cs │ │ ├── AssemblyInfo.cs │ │ ├── InkCollection.cs │ │ ├── InkCollection.csproj │ │ ├── InkCollection.resx │ │ ├── InkCollection.sln │ │ └── app.ico │ ├── readme.txt │ └── vb │ │ ├── AssemblyInfo.vb │ │ ├── InkCollection.resx │ │ ├── InkCollection.sln │ │ ├── InkCollection.vb │ │ └── InkCollection.vbproj ├── inkdivider │ └── cs │ │ ├── App.ico │ │ ├── AssemblyInfo.cs │ │ ├── InkDivider.csproj │ │ ├── InkDivider.sln │ │ ├── InkDividerForm.cs │ │ ├── InkDividerForm.resx │ │ └── readme.txt ├── inkerase │ └── cs │ │ ├── AssemblyInfo.cs │ │ ├── InkErase.cs │ │ ├── InkErase.csproj │ │ ├── InkErase.resx │ │ ├── InkErase.sln │ │ ├── app.ico │ │ └── readme.txt ├── inkhittest │ └── cs │ │ ├── App.ico │ │ ├── AssemblyInfo.cs │ │ ├── InkHitTest.cs │ │ ├── InkHitTest.csproj │ │ ├── InkHitTest.resx │ │ ├── InkHitTest.sln │ │ └── readme.txt ├── inkrecognition │ ├── cs │ │ ├── AssemblyInfo.cs │ │ ├── InkRecognition.cs │ │ ├── InkRecognition.csproj │ │ ├── InkRecognition.resx │ │ ├── InkRecognition.sln │ │ └── app.ico │ ├── readme.txt │ └── vb │ │ ├── AssemblyInfo.vb │ │ ├── InkRecognition.resx │ │ ├── InkRecognition.sln │ │ ├── InkRecognition.vb │ │ └── InkRecognition.vbproj ├── inkzoom │ └── cs │ │ ├── App.ico │ │ ├── AssemblyInfo.cs │ │ ├── InkZoom.cs │ │ ├── InkZoom.csproj │ │ ├── InkZoom.resx │ │ ├── InkZoom.sln │ │ └── readme.txt ├── multireco │ └── cpp │ │ ├── App.ico │ │ ├── ChildWnds.cpp │ │ ├── ChildWnds.h │ │ ├── EventSinks.h │ │ ├── MultiReco.cpp │ │ ├── MultiReco.h │ │ ├── MultiReco.rc │ │ ├── MultiReco.sln │ │ ├── MultiReco.vcproj │ │ ├── readme.txt │ │ └── resource.h ├── realtimestylusinkcollection │ ├── cs │ │ ├── AssemblyInfo.cs │ │ ├── InkCollection.cs │ │ ├── InkCollection.csproj │ │ ├── InkCollection.resx │ │ ├── InkCollection.sln │ │ └── app.ico │ └── readme.txt ├── realtimestylusplugin │ ├── cpp │ │ ├── COMRTS.cpp │ │ ├── COMRTS.h │ │ ├── COMRTS.rc │ │ ├── COMRTS.rgs │ │ ├── COMRTS.sln │ │ ├── COMRTS.vcproj │ │ ├── COMRTSDlg.cpp │ │ ├── COMRTSDlg.h │ │ ├── COMRTS_i.c │ │ ├── COMRTS_i.h │ │ ├── COMRTS_p.c │ │ ├── CustomRenderer.cpp │ │ ├── CustomRenderer.h │ │ ├── CustomRenderer.rgs │ │ ├── GestureHandler.cpp │ │ ├── GestureHandler.h │ │ ├── GestureHandler.rgs │ │ ├── PackMod.cpp │ │ ├── PackMod.h │ │ ├── PackMod.rgs │ │ ├── res │ │ │ ├── COMRTS.ico │ │ │ └── COMRTS.rc2 │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── cs │ │ ├── App.ico │ │ ├── AssemblyInfo.cs │ │ ├── CustomDynamicRendererPlugin.cs │ │ ├── PacketFilterPlugin.cs │ │ ├── RealTimeStylusPlugin.sln │ │ ├── RealTimeStylusPluginApp.cs │ │ ├── RealTimeStylusPluginApp.csproj │ │ ├── RealTimeStylusPluginApp.resx │ │ └── RealTimeStylusPlugins.csproj │ └── readme.txt ├── recodll │ └── cpp │ │ ├── RecoDll.cpp │ │ ├── RecoDll.def │ │ ├── RecoDll.h │ │ ├── RecoDll.sln │ │ ├── RecoDll.vcproj │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── readme.txt │ │ └── recodll.rc ├── scannedpaperform │ └── cs │ │ ├── AssemblyInfo.cs │ │ ├── CopyFormData.vcproj │ │ ├── PaperForm.cs │ │ ├── PaperForm.csproj │ │ ├── PaperForm.resx │ │ ├── PaperForm.sln │ │ ├── app.ico │ │ ├── formdata.png │ │ ├── formdata.xml │ │ └── readme.txt ├── serialization │ └── cs │ │ ├── App.ico │ │ ├── AssemblyInfo.cs │ │ ├── Serialization.cs │ │ ├── Serialization.csproj │ │ ├── Serialization.resx │ │ └── Serialization.sln ├── tipautoclaims │ ├── AssemblyInfo.cs │ ├── Car.jpg │ ├── ShowEvents.Designer.cs │ ├── ShowEvents.cs │ ├── ShowEvents.resx │ ├── TIPAutoClaims.cs │ ├── TIPAutoClaims.csproj │ ├── TIPAutoClaims.resx │ ├── TIPAutoClaims.sln │ ├── app.ico │ ├── checkmark.jpg │ └── properties │ │ ├── Resources.Designer.cs │ │ └── Resources.resx └── tpcinfo │ └── cpp │ ├── TPCInfo.cpp │ ├── TPCInfo.rc │ ├── TPCInfo.sln │ ├── TPCInfo.vcproj │ ├── readme.txt │ └── resource.h ├── web ├── WWSAPI │ ├── AsmxPublicServiceSampleWithCustomProxy │ │ ├── AsmxCustomProxyClient.cpp │ │ ├── AsmxPublicServiceSampleWithCustomProxy.sln │ │ ├── AsmxPublicServiceSampleWithCustomProxy.vcproj │ │ ├── ReadMe.txt │ │ └── terraservice-usa.com.wsdl │ ├── AsyncAdd3Explicit │ │ ├── AsyncAdd3Explicit.cpp │ │ ├── AsyncAdd3Explicit.sln │ │ ├── AsyncAdd3Explicit.vcproj │ │ └── ReadMe.txt │ ├── AsyncAdd3Implicit │ │ ├── AsyncAdd3Implicit.cpp │ │ ├── AsyncAdd3Implicit.sln │ │ ├── AsyncAdd3Implicit.vcproj │ │ └── ReadMe.txt │ ├── AsyncModel │ │ ├── AsyncModel.cpp │ │ ├── AsyncModel.sln │ │ ├── AsyncModel.vcproj │ │ └── ReadMe.txt │ ├── AsyncStreamingTcpClient │ │ ├── AsyncStreamingTcpClient.cpp │ │ ├── AsyncStreamingTcpClient.sln │ │ ├── AsyncStreamingTcpClient.vcproj │ │ ├── PurchaseOrder.wsdl │ │ └── ReadMe.txt │ ├── AsyncStreamingTcpServer │ │ ├── AsyncStreamingTcpServer.cpp │ │ ├── AsyncStreamingTcpServer.sln │ │ ├── AsyncStreamingTcpServer.vcproj │ │ ├── PurchaseOrder.wsdl │ │ └── ReadMe.txt │ ├── CallAbandon │ │ ├── AbandonCallClient.cpp │ │ ├── BlockUnBlockService.wsdl │ │ ├── CallAbandon.sln │ │ ├── CallAbandon.vcproj │ │ └── ReadMe.txt │ ├── CancellingService │ │ ├── BlockUnBlockService.wsdl │ │ ├── CancellingService.cpp │ │ ├── CancellingService.sln │ │ ├── CancellingService.vcproj │ │ └── ReadMe.txt │ ├── CustomHeader │ │ ├── CustomHeader.cpp │ │ ├── CustomHeader.sln │ │ ├── CustomHeader.vcproj │ │ ├── PurchaseOrder.wsdl │ │ └── ReadMe.txt │ ├── DerivedType │ │ ├── DerivedType.cpp │ │ ├── DerivedType.sln │ │ ├── DerivedType.vcproj │ │ ├── DerivedType.xsd │ │ └── ReadMe.txt │ ├── FileRepService │ │ ├── CChannelManager.cpp │ │ ├── CFileRep.cpp │ │ ├── CFileRepClient.cpp │ │ ├── CFileRepServer.cpp │ │ ├── CRequest.cpp │ │ ├── FileRep.mc │ │ ├── FileRep.rc │ │ ├── FileRepService.sln │ │ ├── FileRepService.vcproj │ │ ├── ReadMe.txt │ │ ├── Service.cpp │ │ ├── Service.h │ │ └── common.h │ ├── FileRepTool │ │ ├── FileRepTool.sln │ │ ├── FileRepTool.vcproj │ │ ├── ReadMe.txt │ │ ├── Tool.cpp │ │ └── common.h │ ├── ForwardMessage │ │ ├── ForwardMessage.cpp │ │ ├── ForwardMessage.sln │ │ ├── ForwardMessage.vcproj │ │ ├── PurchaseOrder.wsdl │ │ └── ReadMe.txt │ ├── HttpCalculatorClient │ │ ├── CalculatorService.wsdl │ │ ├── HttpCalculatorClient.cpp │ │ ├── HttpCalculatorClient.sln │ │ ├── HttpCalculatorClient.vcproj │ │ └── ReadMe.txt │ ├── HttpCalculatorService │ │ ├── CalculatorService.wsdl │ │ ├── HttpCalculatorService.cpp │ │ ├── HttpCalculatorService.sln │ │ ├── HttpCalculatorService.vcproj │ │ └── ReadMe.txt │ ├── HttpCalculatorWithBasicOverSslClient │ │ ├── CalculatorService.wsdl │ │ ├── HttpCalculatorWithBasicOverSslClient.cpp │ │ ├── HttpCalculatorWithBasicOverSslClient.sln │ │ ├── HttpCalculatorWithBasicOverSslClient.vcproj │ │ └── ReadMe.txt │ ├── HttpCalculatorWithBasicOverSslService │ │ ├── CalculatorService.wsdl │ │ ├── HttpCalculatorWithBasicOverSslService.cpp │ │ ├── HttpCalculatorWithBasicOverSslService.sln │ │ ├── HttpCalculatorWithBasicOverSslService.vcproj │ │ └── ReadMe.txt │ ├── HttpCalculatorWithEncodedChannelClient │ │ ├── CalculatorService.wsdl │ │ ├── EncodedChannel.cpp │ │ ├── EncodedChannel.h │ │ ├── HttpCalculatorWithEncodedChannelClient.cpp │ │ ├── HttpCalculatorWithEncodedChannelClient.sln │ │ ├── HttpCalculatorWithEncodedChannelClient.vcproj │ │ └── ReadMe.txt │ ├── HttpCalculatorWithEncodedChannelService │ │ ├── CalculatorService.wsdl │ │ ├── EncodedChannel.cpp │ │ ├── EncodedChannel.h │ │ ├── HttpCalculatorWithEncodedChannelService.cpp │ │ ├── HttpCalculatorWithEncodedChannelService.sln │ │ ├── HttpCalculatorWithEncodedChannelService.vcproj │ │ └── ReadMe.txt │ ├── HttpCalculatorWithKerberosOverSslClient │ │ ├── CalculatorClientKerberosOverSsl.cpp │ │ ├── CalculatorService.wsdl │ │ ├── HttpCalculatorWithKerberosOverSslClient.sln │ │ ├── HttpCalculatorWithKerberosOverSslClient.vcproj │ │ └── ReadMe.txt │ ├── HttpCalculatorWithKerberosOverSslService │ │ ├── CalculatorService.wsdl │ │ ├── CalculatorServiceKerberosOverSsl.cpp │ │ ├── HttpCalculatorWithKerberosOverSslService.sln │ │ ├── HttpCalculatorWithKerberosOverSslService.vcproj │ │ └── ReadMe.txt │ ├── HttpCalculatorWithLayeredChannelClient │ │ ├── CalculatorService.wsdl │ │ ├── HttpCalculatorWithLayeredChannelClient.cpp │ │ ├── HttpCalculatorWithLayeredChannelClient.sln │ │ ├── HttpCalculatorWithLayeredChannelClient.vcproj │ │ ├── LayeredChannel.cpp │ │ ├── LayeredChannel.h │ │ └── ReadMe.txt │ ├── HttpCalculatorWithLayeredChannelService │ │ ├── CalculatorService.wsdl │ │ ├── HttpCalculatorWithLayeredChannelService.cpp │ │ ├── HttpCalculatorWithLayeredChannelService.sln │ │ ├── HttpCalculatorWithLayeredChannelService.vcproj │ │ ├── LayeredChannel.cpp │ │ ├── LayeredChannel.h │ │ ├── LayeredListener.cpp │ │ ├── LayeredListener.h │ │ └── ReadMe.txt │ ├── HttpCalculatorWithSslClient │ │ ├── CalculatorService.wsdl │ │ ├── HttpCalculatorClientWithSsl.cpp │ │ ├── HttpCalculatorWithSslClient.sln │ │ ├── HttpCalculatorWithSslClient.vcproj │ │ └── ReadMe.txt │ ├── HttpCalculatorWithSslPolicyClient │ │ ├── CalculatorServiceWithPolicy.wsdl │ │ ├── HttpCalculatorWithSslPolicyClient.cpp │ │ ├── HttpCalculatorWithSslPolicyClient.sln │ │ ├── HttpCalculatorWithSslPolicyClient.vcproj │ │ └── ReadMe.txt │ ├── HttpCalculatorWithSslPolicyService │ │ ├── CalculatorServiceWithPolicy.wsdl │ │ ├── HttpCalculatorWithSslPolicyService.cpp │ │ ├── HttpCalculatorWithSslPolicyService.sln │ │ ├── HttpCalculatorWithSslPolicyService.vcproj │ │ └── ReadMe.txt │ ├── HttpCalculatorWithSslService │ │ ├── CalculatorService.wsdl │ │ ├── HttpCalculatorServiceWithSsl.cpp │ │ ├── HttpCalculatorWithSslService.sln │ │ ├── HttpCalculatorWithSslService.vcproj │ │ └── ReadMe.txt │ ├── HttpCalculatorWithUserNameOverSslService │ │ ├── CalculatorService.wsdl │ │ ├── CalculatorServiceUserNameOverSsl.cpp │ │ ├── HttpCalculatorWithUserNameOverSslService.sln │ │ ├── HttpCalculatorWithUserNameOverSslService.vcproj │ │ └── ReadMe.txt │ ├── HttpCalculatorWithUsernameOverSslClient │ │ ├── CalculatorClientUserNameOverSsl.cpp │ │ ├── CalculatorService.wsdl │ │ ├── HttpCalculatorWithUsernameOverSslClient.sln │ │ ├── HttpCalculatorWithUsernameOverSslClient.vcproj │ │ └── ReadMe.txt │ ├── HttpCalculatorWithUsernameXmlTokenOverSslClient │ │ ├── CalculatorClientUserNameXmlTokenOverSsl.cpp │ │ ├── CalculatorService.wsdl │ │ ├── HttpCalculatorWithUsernameXmlTokenOverSslClient.sln │ │ ├── HttpCalculatorWithUsernameXmlTokenOverSslClient.vcproj │ │ └── ReadMe.txt │ ├── HttpClient │ │ ├── HttpClient.cpp │ │ ├── HttpClient.sln │ │ ├── HttpClient.vcproj │ │ ├── PurchaseOrder.wsdl │ │ └── ReadMe.txt │ ├── HttpClientWithKerberosOverSsl │ │ ├── HttpClientWithKerberosOverSsl.cpp │ │ ├── HttpClientWithKerberosOverSsl.sln │ │ ├── HttpClientWithKerberosOverSsl.vcproj │ │ ├── PurchaseOrder.wsdl │ │ └── ReadMe.txt │ ├── HttpClientWithSsl │ │ ├── HttpClientWithSsl.cpp │ │ ├── HttpClientWithSsl.sln │ │ ├── HttpClientWithSsl.vcproj │ │ ├── PurchaseOrder.wsdl │ │ └── ReadMe.txt │ ├── HttpClientWithUsernameOverSsl │ │ ├── HttpClientWithUsernameOverSsl.cpp │ │ ├── HttpClientWithUsernameOverSsl.sln │ │ ├── HttpClientWithUsernameOverSsl.vcproj │ │ ├── PurchaseOrder.wsdl │ │ └── ReadMe.txt │ ├── HttpCustomHeaderPurchaseOrderClient │ │ ├── HttpCustomHeaderClient.cpp │ │ ├── HttpCustomHeaderPurchaseOrderClient.sln │ │ ├── HttpCustomHeaderPurchaseOrderClient.vcproj │ │ ├── OrderSessionHeader.xsd │ │ ├── PurchaseOrder.wsdl │ │ └── ReadMe.txt │ ├── HttpCustomHeaderPurchaseOrderService │ │ ├── HttpCustomHeaderPurchaseOrderService.sln │ │ ├── HttpCustomHeaderPurchaseOrderService.vcproj │ │ ├── HttpCustomHeaderService.cpp │ │ ├── OrderSessionHeader.xsd │ │ ├── PurchaseOrder.wsdl │ │ └── ReadMe.txt │ ├── HttpGetService │ │ ├── HttpGetService.cpp │ │ ├── HttpGetService.sln │ │ ├── HttpGetService.vcproj │ │ ├── PurchaseOrder.wsdl │ │ └── ReadMe.txt │ ├── HttpPurchaseOrderClient │ │ ├── HttpPurchaseOrderClient.cpp │ │ ├── HttpPurchaseOrderClient.sln │ │ ├── HttpPurchaseOrderClient.vcproj │ │ ├── PurchaseOrder.wsdl │ │ └── ReadMe.txt │ ├── HttpPurchaseOrderService │ │ ├── HttpPurchaseOrderService.cpp │ │ ├── HttpPurchaseOrderService.sln │ │ ├── HttpPurchaseOrderService.vcproj │ │ ├── PurchaseOrder.wsdl │ │ └── ReadMe.txt │ ├── HttpPurchaseOrderWithKerberosOverSslClient │ │ ├── HttpPurchaseOrderWithKerberosOverSslClient.sln │ │ ├── HttpPurchaseOrderWithKerberosOverSslClient.vcproj │ │ ├── PurchaseOrder.wsdl │ │ ├── PurchaseOrderClientKerberosOverSsl.cpp │ │ └── ReadMe.txt │ ├── HttpPurchaseOrderWithKerberosOverSslService │ │ ├── HttpPurchaseOrderWithKerberosOverSslService.sln │ │ ├── HttpPurchaseOrderWithKerberosOverSslService.vcproj │ │ ├── PurchaseOrder.wsdl │ │ ├── PurchaseOrderServiceKerberosOverSsl.cpp │ │ └── ReadMe.txt │ ├── HttpPurchaseOrderWithSslClient │ │ ├── HttpPurchaseOrderClientWithSsl.cpp │ │ ├── HttpPurchaseOrderWithSslClient.sln │ │ ├── HttpPurchaseOrderWithSslClient.vcproj │ │ ├── PurchaseOrder.wsdl │ │ └── ReadMe.txt │ ├── HttpPurchaseOrderWithSslService │ │ ├── HttpPurchaseOrderServiceWithSsl.cpp │ │ ├── HttpPurchaseOrderWithSslService.sln │ │ ├── HttpPurchaseOrderWithSslService.vcproj │ │ ├── PurchaseOrder.wsdl │ │ └── ReadMe.txt │ ├── HttpPurchaseOrderWithUserNameOverSslService │ │ ├── HttpPurchaseOrderWithUserNameOverSslService.sln │ │ ├── HttpPurchaseOrderWithUserNameOverSslService.vcproj │ │ ├── PurchaseOrder.wsdl │ │ ├── PurchaseOrderServiceUserNameOverSsl.cpp │ │ └── ReadMe.txt │ ├── HttpPurchaseOrderWithUsernameOverSslClient │ │ ├── HttpPurchaseOrderWithUsernameOverSslClient.sln │ │ ├── HttpPurchaseOrderWithUsernameOverSslClient.vcproj │ │ ├── PurchaseOrder.wsdl │ │ ├── PurchaseOrderClientUserNameOverSsl.cpp │ │ └── ReadMe.txt │ ├── HttpRawClient │ │ ├── HttpRawClient.cpp │ │ ├── HttpRawClient.sln │ │ ├── HttpRawClient.vcproj │ │ └── ReadMe.txt │ ├── HttpRawService │ │ ├── HttpRawService.cpp │ │ ├── HttpRawService.sln │ │ ├── HttpRawService.vcproj │ │ └── ReadMe.txt │ ├── HttpServer │ │ ├── HttpServer.cpp │ │ ├── HttpServer.sln │ │ ├── HttpServer.vcproj │ │ ├── PurchaseOrder.wsdl │ │ └── ReadMe.txt │ ├── HttpServerWithKerberosOverSsl │ │ ├── HttpServerWithKerberosOverSsl.cpp │ │ ├── HttpServerWithKerberosOverSsl.sln │ │ ├── HttpServerWithKerberosOverSsl.vcproj │ │ ├── PurchaseOrder.wsdl │ │ └── ReadMe.txt │ ├── HttpServerWithSsl │ │ ├── HttpServerWithSsl.cpp │ │ ├── HttpServerWithSsl.sln │ │ ├── HttpServerWithSsl.vcproj │ │ ├── PurchaseOrder.wsdl │ │ └── ReadMe.txt │ ├── HttpServerWithUsernameOverSsl │ │ ├── HttpServerWithUsernameOverSsl.cpp │ │ ├── HttpServerWithUsernameOverSsl.sln │ │ ├── HttpServerWithUsernameOverSsl.vcproj │ │ ├── PurchaseOrder.wsdl │ │ └── ReadMe.txt │ ├── InsertElement │ │ ├── InsertElement.cpp │ │ ├── InsertElement.sln │ │ ├── InsertElement.vcproj │ │ └── ReadMe.txt │ ├── MessageEncoding │ │ ├── MessageEncoding.cpp │ │ ├── MessageEncoding.sln │ │ ├── MessageEncoding.vcproj │ │ ├── PurchaseOrder.wsdl │ │ └── ReadMe.txt │ ├── MetadataExchangeMonikerClient │ │ ├── PurchaseOrderClient.vbs │ │ └── ReadMe.txt │ ├── MetadataExchangeService │ │ ├── MetadataExchangeService.sln │ │ ├── MetadataExchangeService.vcproj │ │ ├── MexService.cpp │ │ ├── PurchaseOrder.wsdl │ │ └── ReadMe.txt │ ├── MetadataImportWithIssuedTokenOverSslExample │ │ ├── MetadataImportWithIssuedTokenOverSslExample.cpp │ │ ├── MetadataImportWithIssuedTokenOverSslExample.sln │ │ ├── MetadataImportWithIssuedTokenOverSslExample.vcproj │ │ └── ReadMe.txt │ ├── MetadataImportWithUsernameOverSslExample │ │ ├── MetadataImportWithUsernameOverSslExample.cpp │ │ ├── MetadataImportWithUsernameOverSslExample.sln │ │ ├── MetadataImportWithUsernameOverSslExample.vcproj │ │ └── ReadMe.txt │ ├── MetadataImportWithX509OverSslExample │ │ ├── MetadataImportWithX509OverSslExample.cpp │ │ ├── MetadataImportWithX509OverSslExample.sln │ │ ├── MetadataImportWithX509OverSslExample.vcproj │ │ └── ReadMe.txt │ ├── MulticastUdpClient │ │ ├── MulticastUdpClient.cpp │ │ ├── MulticastUdpClient.sln │ │ ├── MulticastUdpClient.vcproj │ │ ├── PurchaseOrder.wsdl │ │ └── ReadMe.txt │ ├── MulticastUdpClient6 │ │ ├── MulticastUdpClient6.cpp │ │ ├── MulticastUdpClient6.sln │ │ ├── MulticastUdpClient6.vcproj │ │ ├── PurchaseOrder.wsdl │ │ └── ReadMe.txt │ ├── MulticastUdpServer │ │ ├── MulticastUdpServer.cpp │ │ ├── MulticastUdpServer.sln │ │ ├── MulticastUdpServer.vcproj │ │ ├── PurchaseOrder.wsdl │ │ └── ReadMe.txt │ ├── MulticastUdpServer6 │ │ ├── MulticastUdpServer6.cpp │ │ ├── MulticastUdpServer6.sln │ │ ├── MulticastUdpServer6.vcproj │ │ ├── PurchaseOrder.wsdl │ │ └── ReadMe.txt │ ├── NavigateXml │ │ ├── NavigateXml.cpp │ │ ├── NavigateXml.sln │ │ ├── NavigateXml.vcproj │ │ └── ReadMe.txt │ ├── OneWayTcpClient │ │ ├── OneWayTcpClient.cpp │ │ ├── OneWayTcpClient.sln │ │ ├── OneWayTcpClient.vcproj │ │ ├── PurchaseOrder.wsdl │ │ └── ReadMe.txt │ ├── OneWayTcpServer │ │ ├── OneWayTcpServer.cpp │ │ ├── OneWayTcpServer.sln │ │ ├── OneWayTcpServer.vcproj │ │ ├── PurchaseOrder.wsdl │ │ └── ReadMe.txt │ ├── OneWayUdpClient │ │ ├── OneWayUdpClient.cpp │ │ ├── OneWayUdpClient.sln │ │ ├── OneWayUdpClient.vcproj │ │ ├── PurchaseOrder.wsdl │ │ └── ReadMe.txt │ ├── OneWayUdpServer │ │ ├── OneWayUdpServer.cpp │ │ ├── OneWayUdpServer.sln │ │ ├── OneWayUdpServer.vcproj │ │ ├── PurchaseOrder.wsdl │ │ └── ReadMe.txt │ ├── PolicyTemplate │ │ ├── PolicyTemplate.sln │ │ ├── PolicyTemplate.vcproj │ │ ├── ReadMe.txt │ │ └── policytemplate.cpp │ ├── ReadAttribute │ │ ├── ReadAttribute.cpp │ │ ├── ReadAttribute.sln │ │ ├── ReadAttribute.vcproj │ │ └── ReadMe.txt │ ├── ReadWriteArray │ │ ├── ReadMe.txt │ │ ├── ReadWriteArray.cpp │ │ ├── ReadWriteArray.sln │ │ └── ReadWriteArray.vcproj │ ├── ReadWriteBytesXml │ │ ├── ReadMe.txt │ │ ├── ReadWriteBytesXml.cpp │ │ ├── ReadWriteBytesXml.sln │ │ └── ReadWriteBytesXml.vcproj │ ├── ReadWriteRawXml │ │ ├── ReadMe.txt │ │ ├── ReadWriteRawXml.cpp │ │ ├── ReadWriteRawXml.sln │ │ └── ReadWriteRawXml.vcproj │ ├── ReadWriteXml │ │ ├── PurchaseOrder.wsdl │ │ ├── ReadMe.txt │ │ ├── ReadWriteXml.cpp │ │ ├── ReadWriteXml.sln │ │ └── ReadWriteXml.vcproj │ ├── ReadXml │ │ ├── ReadMe.txt │ │ ├── ReadXml.cpp │ │ ├── ReadXml.sln │ │ └── ReadXml.vcproj │ ├── ReadXmlSimple │ │ ├── ReadMe.txt │ │ ├── ReadXmlSimple.cpp │ │ ├── ReadXmlSimple.sln │ │ └── ReadXmlSimple.vcproj │ ├── RequestReplyTcpClient │ │ ├── PurchaseOrder.wsdl │ │ ├── ReadMe.txt │ │ ├── RequestReplyTcpClient.cpp │ │ ├── RequestReplyTcpClient.sln │ │ └── RequestReplyTcpClient.vcproj │ ├── RequestReplyTcpClientWithWindowsTransportSecurity │ │ ├── PurchaseOrder.wsdl │ │ ├── ReadMe.txt │ │ ├── RequestReplyTcpClientWithWindowsTransportSecurity.cpp │ │ ├── RequestReplyTcpClientWithWindowsTransportSecurity.sln │ │ └── RequestReplyTcpClientWithWindowsTransportSecurity.vcproj │ ├── RequestReplyTcpServer │ │ ├── PurchaseOrder.wsdl │ │ ├── ReadMe.txt │ │ ├── RequestReplyTcpServer.cpp │ │ ├── RequestReplyTcpServer.sln │ │ └── RequestReplyTcpServer.vcproj │ ├── RequestReplyTcpServerWithWindowsTransportSecurity │ │ ├── PurchaseOrder.wsdl │ │ ├── ReadMe.txt │ │ ├── RequestReplyTcpServerWithWindowsTransportSecurity.cpp │ │ ├── RequestReplyTcpServerWithWindowsTransportSecurity.sln │ │ └── RequestReplyTcpServerWithWindowsTransportSecurity.vcproj │ ├── ServiceCancelClient │ │ ├── BlockUnBlockService.wsdl │ │ ├── ReadMe.txt │ │ ├── ServiceCancel.cpp │ │ ├── ServiceCancelClient.sln │ │ └── ServiceCancelClient.vcproj │ ├── SessionfullCalculatorClient │ │ ├── ReadMe.txt │ │ ├── SessionBasedCalculatorService.wsdl │ │ ├── SessionfullCalculatorClient.cpp │ │ ├── SessionfullCalculatorClient.sln │ │ └── SessionfullCalculatorClient.vcproj │ ├── SessionfullCalculatorService │ │ ├── ReadMe.txt │ │ ├── SessionBasedCalculatorService.wsdl │ │ ├── SessionfullCalculatorService.cpp │ │ ├── SessionfullCalculatorService.sln │ │ └── SessionfullCalculatorService.vcproj │ ├── StreamingHttpClient │ │ ├── PurchaseOrder.wsdl │ │ ├── ReadMe.txt │ │ ├── StreamingHttpClient.cpp │ │ ├── StreamingHttpClient.sln │ │ └── StreamingHttpClient.vcproj │ ├── StreamingHttpServer │ │ ├── PurchaseOrder.wsdl │ │ ├── ReadMe.txt │ │ ├── StreamingHttpServer.cpp │ │ ├── StreamingHttpServer.sln │ │ └── StreamingHttpServer.vcproj │ ├── StreamingTcpClient │ │ ├── PurchaseOrder.wsdl │ │ ├── ReadMe.txt │ │ ├── StreamingTcpClient.cpp │ │ ├── StreamingTcpClient.sln │ │ └── StreamingTcpClient.vcproj │ ├── StreamingTcpServer │ │ ├── PurchaseOrder.wsdl │ │ ├── ReadMe.txt │ │ ├── StreamingTcpServer.cpp │ │ ├── StreamingTcpServer.sln │ │ └── StreamingTcpServer.vcproj │ ├── UnTypedClient │ │ ├── PurchaseOrder.wsdl │ │ ├── ReadMe.txt │ │ ├── UnTypedClient.cpp │ │ ├── UnTypedClient.sln │ │ └── UnTypedClient.vcproj │ ├── UnTypedService │ │ ├── PurchaseOrder.wsdl │ │ ├── ReadMe.txt │ │ ├── UnTypedService.cpp │ │ ├── UnTypedService.sln │ │ └── UnTypedService.vcproj │ ├── WcfPublicServiceClient │ │ ├── ReadMe.txt │ │ ├── WcfPublicServiceClient.cpp │ │ ├── WcfPublicServiceClient.sln │ │ ├── WcfPublicServiceClient.vcproj │ │ ├── schemas.microsoft.com.2003.10.Serialization.xsd │ │ ├── tempuri.org.wsdl │ │ └── tempuri.org.xsd │ ├── WriteXmlSimple │ │ ├── ReadMe.txt │ │ ├── WriteXmlSimple.cpp │ │ ├── WriteXmlSimple.sln │ │ └── WriteXmlSimple.vcproj │ ├── XmlBuffer │ │ ├── ReadMe.txt │ │ ├── XmlBuffer.cpp │ │ ├── XmlBuffer.sln │ │ └── XmlBuffer.vcproj │ └── XmlDictionary │ │ ├── ReadMe.txt │ │ ├── XmlDictionary.cpp │ │ ├── XmlDictionary.sln │ │ └── XmlDictionary.vcproj ├── Wininet │ ├── Async │ │ ├── Readme.txt │ │ ├── async.c │ │ ├── async.h │ │ ├── async.sln │ │ ├── async.vcproj │ │ ├── makefile │ │ └── precomp.h │ ├── CacheEnumerate │ │ ├── CacheEnumerate.cpp │ │ ├── CacheEnumerate.h │ │ ├── CacheEnumerate.sln │ │ ├── CacheEnumerate.vcproj │ │ └── ReadMe.txt │ └── httpauth │ │ ├── HttpAuth.vcproj │ │ ├── httpauth.cpp │ │ ├── httpauth.dep │ │ ├── httpauth.sln │ │ └── readme.txt ├── author │ └── html │ │ └── collection2002 │ │ ├── AddDesktop.gif │ │ ├── Calculator2002.htm │ │ ├── Calendar2002.htm │ │ ├── Clock2002.GIF │ │ ├── Clock2002.htm │ │ ├── Collection2002.htm │ │ ├── Logo2002.GIF │ │ ├── Minesweeper2002.htm │ │ ├── Puzzle2002.htm │ │ ├── Readme.txt │ │ ├── Shared.js │ │ └── Shared.vbs ├── behaviors │ └── library │ │ ├── calendar │ │ ├── calendar.htc │ │ ├── calendar.htm │ │ ├── demo.gif │ │ └── readme.htm │ │ ├── colorpick │ │ ├── ColorPick.htc │ │ ├── colorpick.htm │ │ └── demo.gif │ │ ├── coolbar │ │ ├── bag.gif │ │ ├── bagoff.gif │ │ ├── buy.htm │ │ ├── cart.gif │ │ ├── cartoff.gif │ │ ├── coolbar.htc │ │ ├── coolbar.htm │ │ ├── coolbutton.htc │ │ ├── demo.gif │ │ ├── exit.gif │ │ ├── exit.htm │ │ ├── exitoff.gif │ │ ├── help.gif │ │ ├── help.htm │ │ ├── helpoff.gif │ │ ├── home.gif │ │ ├── home.htm │ │ ├── homeoff.gif │ │ ├── intro.htm │ │ ├── readme.htm │ │ ├── readme1.htm │ │ └── shop.htm │ │ ├── dataselect │ │ ├── dataselect.htc │ │ ├── dataselect.htm │ │ ├── dataselect.txt │ │ └── demo.gif │ │ ├── imagerollover │ │ ├── back1.jpg │ │ ├── back2.jpg │ │ ├── back3.jpg │ │ ├── demo.gif │ │ ├── discussion1.jpg │ │ ├── discussion2.jpg │ │ ├── discussion3.jpg │ │ ├── edit1.jpg │ │ ├── favorites1.jpg │ │ ├── favorites2.jpg │ │ ├── favorites3.jpg │ │ ├── forward1.jpg │ │ ├── forward2.jpg │ │ ├── forward3.jpg │ │ ├── history1.jpg │ │ ├── history2.jpg │ │ ├── history3.jpg │ │ ├── home1.jpg │ │ ├── home2.jpg │ │ ├── home3.jpg │ │ ├── imageRollover.htc │ │ ├── mail1.jpg │ │ ├── mail2.jpg │ │ ├── mail3.jpg │ │ ├── print1.jpg │ │ ├── print2.jpg │ │ ├── print3.jpg │ │ ├── readme.htm │ │ ├── refresh1.jpg │ │ ├── refresh2.jpg │ │ ├── refresh3.jpg │ │ ├── search1.jpg │ │ ├── search2.jpg │ │ ├── search3.jpg │ │ ├── seperator.jpg │ │ ├── stop1.jpg │ │ ├── stop2.jpg │ │ ├── stop3.jpg │ │ ├── toolbar.htm │ │ ├── tools1.jpg │ │ ├── tools2.jpg │ │ └── tools3.jpg │ │ ├── mask │ │ ├── demo.gif │ │ ├── mask.htc │ │ ├── mask.htm │ │ └── readme.htm │ │ ├── menu │ │ ├── Readme.txt │ │ ├── book.htm │ │ ├── chap1.htm │ │ ├── chap1pt1.htm │ │ ├── chap1pt2.htm │ │ ├── chap2.htm │ │ ├── chap3.htm │ │ ├── demo.gif │ │ ├── expand.htm │ │ ├── expand_js.htc │ │ ├── expand_js.htm │ │ ├── expand_vbs.htc │ │ ├── expand_vbs.htm │ │ ├── minus.gif │ │ ├── plus.gif │ │ └── readme.htm │ │ ├── movable │ │ ├── demo.gif │ │ ├── movable.htc │ │ ├── movable.htm │ │ └── readme.htm │ │ ├── mpc │ │ ├── demo.gif │ │ ├── flag.gif │ │ ├── mpc.htc │ │ └── mpc.htm │ │ ├── rowover │ │ ├── demo.gif │ │ ├── readme.htm │ │ ├── rowover.htc │ │ ├── rowover.htm │ │ └── rowover.txt │ │ ├── slider │ │ ├── demo.gif │ │ ├── readme.htm │ │ ├── slBottom.gif │ │ ├── slLeft.gif │ │ ├── slRight.gif │ │ ├── slTop.gif │ │ ├── slider.htc │ │ └── slider.htm │ │ └── tooltips │ │ ├── tooltip_js.htc │ │ ├── tooltip_js.htm │ │ ├── tooltip_vbs.htc │ │ └── tooltip_vbs.htm ├── bits │ ├── bits_ie │ │ ├── BITS_IE.sln │ │ ├── BITS_IE.vcproj │ │ ├── bits_ie.cpp │ │ ├── bits_ie.htm │ │ ├── bits_ie.ico │ │ ├── bits_ie.rc │ │ ├── install.js │ │ ├── readme.htm │ │ ├── resource.h │ │ └── uninstall.js │ ├── control │ │ ├── CONTROLS.cpp │ │ ├── CONTROLS.sln │ │ ├── CONTROLS.vcproj │ │ ├── ReadMe.htm │ │ └── stdafx.h │ ├── downloads │ │ ├── DOWNLOADS.cpp │ │ ├── DOWNLOADS.h │ │ ├── DOWNLOADS.sln │ │ ├── DOWNLOADS.vcproj │ │ ├── ReadMe.htm │ │ └── stdafx.h │ ├── httpheader │ │ ├── HTTPHEADER.cpp │ │ ├── HTTPHEADER.h │ │ ├── HTTPHEADER.sln │ │ ├── HTTPHEADER.vcproj │ │ ├── ReadMe.htm │ │ └── stdafx.h │ ├── peercaching │ │ ├── PEERCACHING.cpp │ │ ├── PEERCACHING.h │ │ ├── PEERCACHING.sln │ │ ├── PEERCACHING.vcproj │ │ ├── ReadMe.htm │ │ └── stdafx.h │ ├── upload │ │ ├── cdialog.cpp │ │ ├── cdialog.h │ │ ├── cmonitor.cpp │ │ ├── cmonitor.h │ │ ├── configure.js │ │ ├── cpack.cpp │ │ ├── cpack.h │ │ ├── dialog.rc │ │ ├── main.cpp │ │ ├── main.h │ │ ├── makefile │ │ ├── newupload.asp │ │ ├── readme.htm │ │ ├── resource.h │ │ ├── util.cpp │ │ └── util.h │ └── uploads │ │ ├── ReadMe.htm │ │ ├── UPLOADS.cpp │ │ ├── UPLOADS.h │ │ ├── UPLOADS.sln │ │ ├── UPLOADS.vcproj │ │ └── stdafx.h ├── browser │ └── edannotator │ │ └── Annotator.htm ├── ie55 │ ├── adbanner │ │ ├── Readme.txt │ │ ├── adbanner.htc │ │ └── adbanner.htm │ ├── dxtidemo │ │ ├── FRUIT.GIF │ │ ├── FRUIT.JPG │ │ ├── MOUSE.GIF │ │ ├── MOUSE2.gif │ │ ├── Readme.txt │ │ ├── controlbg.gif │ │ ├── copybg.gif │ │ ├── descbg.gif │ │ ├── dxtidemo.htm │ │ └── iasample.css │ ├── editregions │ │ ├── EditRegions.htm │ │ └── Readme.txt │ ├── htmltimeanimations │ │ ├── readme.txt │ │ └── source │ │ │ ├── graphics files │ │ │ ├── H.gif │ │ │ ├── L.gif │ │ │ ├── M.gif │ │ │ ├── T.gif │ │ │ ├── bgclockgray.gif │ │ │ ├── blacke.gif │ │ │ ├── dot.gif │ │ │ ├── ietexter.gif │ │ │ └── plus.gif │ │ │ └── source files │ │ │ ├── animation1.htm │ │ │ ├── animation2.htm │ │ │ └── animations.htm │ ├── menubehavior │ │ ├── menu.htc │ │ ├── menu.htm │ │ └── readme.txt │ ├── popup │ │ ├── Readme.txt │ │ └── source │ │ │ ├── graphics files │ │ │ ├── back.gif │ │ │ ├── forward.gif │ │ │ ├── home.gif │ │ │ ├── ielogo.gif │ │ │ ├── refresh.gif │ │ │ ├── search.gif │ │ │ └── stop.gif │ │ │ └── source files │ │ │ ├── iframe4popup.htm │ │ │ ├── popup.css │ │ │ ├── popup.htm │ │ │ └── popupagain.htm │ └── vlebcalendar │ │ ├── Readme.txt │ │ └── source │ │ └── source files │ │ ├── vlbuildtree.htc │ │ ├── vlcalendar_vl.htc │ │ ├── vlcalendarnv.htc │ │ ├── vlcomparison.htm │ │ ├── vlelementbehavior.htm │ │ └── vlviewlink.htm ├── ie6 │ ├── htmleditor │ │ ├── HTML_editor.hta │ │ ├── UI_backcolor.gif │ │ ├── UI_bold.gif │ │ ├── UI_bulletlist.gif │ │ ├── UI_centeralign.gif │ │ ├── UI_fontcolor.gif │ │ ├── UI_form-copy.gif │ │ ├── UI_form-strike.gif │ │ ├── UI_indent.gif │ │ ├── UI_italic.gif │ │ ├── UI_leftalign.gif │ │ ├── UI_new.gif │ │ ├── UI_numberlist.gif │ │ ├── UI_open.gif │ │ ├── UI_outdent.gif │ │ ├── UI_paste.gif │ │ ├── UI_redo.gif │ │ ├── UI_rightalign.gif │ │ ├── UI_save.gif │ │ ├── UI_save_alert.gif │ │ ├── UI_subscript.gif │ │ ├── UI_superscript.gif │ │ ├── UI_tool-cut.gif │ │ ├── UI_tool_vertical.gif │ │ ├── UI_underline.gif │ │ ├── UI_undo.gif │ │ ├── comdlg.lpk │ │ ├── dcheckForSave.htm │ │ ├── htmledlogo.gif │ │ ├── menu.htc │ │ ├── netpad.ico │ │ ├── readme.txt │ │ └── toolbar.htc │ └── htmltimetransitions │ │ ├── Readme.txt │ │ ├── barndoorwipe.htm │ │ ├── barwipe.htm │ │ ├── clockwipe.htm │ │ ├── demo.gif │ │ ├── dxfiltran.css │ │ ├── ellipsewipe.htm │ │ ├── fade.htm │ │ ├── fanwipe.htm │ │ ├── filldxfiltran.js │ │ ├── iriswipe.htm │ │ ├── master_sample.htm │ │ ├── pushwipe.htm │ │ ├── slidewipe.htm │ │ ├── snakewipe.htm │ │ ├── spiralwipe.htm │ │ ├── starwipe.htm │ │ ├── ui_bluetab.gif │ │ └── ui_graytab.gif ├── iis │ ├── components │ │ └── cpp │ │ │ └── simple │ │ │ ├── CatlSmpl.Asp │ │ │ ├── CatlSmpl.Cpp │ │ │ ├── CatlSmpl.Def │ │ │ ├── CatlSmpl.Idl │ │ │ ├── CatlSmpl.Rc │ │ │ ├── Resource.h │ │ │ ├── Simple.Cpp │ │ │ ├── Simple.h │ │ │ ├── Smplps.Def │ │ │ ├── StdAfx.Cpp │ │ │ ├── StdAfx.h │ │ │ ├── catlsmpl.sln │ │ │ ├── catlsmpl.vcproj │ │ │ └── readme_catlsmpl.htm │ ├── extensions │ │ ├── dumpvars │ │ │ ├── DumpVars.cpp │ │ │ ├── DumpVars.def │ │ │ ├── DumpVars.sln │ │ │ ├── DumpVars.vcproj │ │ │ ├── MAKEFILE │ │ │ └── readme_dumpvars.htm │ │ ├── io │ │ │ ├── asyncread │ │ │ │ ├── areadcli.c │ │ │ │ ├── areadcli.def │ │ │ │ ├── areadcli.sln │ │ │ │ ├── areadcli.vcproj │ │ │ │ └── makefile │ │ │ ├── asynctrans │ │ │ │ ├── ftrans.c │ │ │ │ ├── ftrans.def │ │ │ │ ├── ftrans.sln │ │ │ │ ├── ftrans.vcproj │ │ │ │ ├── openf.c │ │ │ │ └── openf.h │ │ │ ├── readme_io.htm │ │ │ └── syncread │ │ │ │ ├── makefile │ │ │ │ ├── readcli.c │ │ │ │ ├── readcli.def │ │ │ │ ├── readcli.sln │ │ │ │ └── readcli.vcproj │ │ ├── keep-alive │ │ │ ├── KeepAlive.c │ │ │ ├── KeepAlive.def │ │ │ ├── KeepAlive.sln │ │ │ ├── KeepAlive.vcproj │ │ │ ├── MAKEFILE │ │ │ └── readme_KeepAlive.htm │ │ ├── keepalivewiththreads │ │ │ ├── KeepAliveP.c │ │ │ ├── KeepAliveP.def │ │ │ ├── KeepAliveP.sln │ │ │ ├── KeepAliveP.vcproj │ │ │ ├── MAKEFILE │ │ │ ├── ThreadPool.c │ │ │ ├── ThreadPool.h │ │ │ └── readme_KeepAliveP.htm │ │ ├── redirect │ │ │ ├── MAKEFILE │ │ │ ├── Redirect.cpp │ │ │ ├── Redirect.def │ │ │ ├── Redirect.sln │ │ │ ├── Redirect.vcproj │ │ │ └── readme_redirect.htm │ │ ├── simple │ │ │ ├── MAKEFILE │ │ │ ├── Run.htm │ │ │ ├── Simple.cpp │ │ │ ├── Simple.def │ │ │ ├── Simple.sln │ │ │ ├── Simple.vcproj │ │ │ └── readme_simple.htm │ │ └── workerthread │ │ │ ├── MAKEFILE │ │ │ ├── WorkerThread.c │ │ │ ├── WorkerThread.def │ │ │ ├── WorkerThread.sln │ │ │ ├── WorkerThread.vcproj │ │ │ └── readme_workerthread.htm │ ├── filters │ │ ├── authfilt │ │ │ ├── AuthFilt.c │ │ │ ├── AuthFilt.def │ │ │ ├── AuthFilt.h │ │ │ ├── AuthFilt.htm │ │ │ ├── AuthFilt.sln │ │ │ ├── AuthFilt.vcproj │ │ │ ├── cache.c │ │ │ ├── db.c │ │ │ └── readme_AuthFilt.htm │ │ └── upcase │ │ │ ├── MAKEFILE │ │ │ ├── UpCase.c │ │ │ ├── UpCase.def │ │ │ ├── UpCase.htm │ │ │ ├── UpCase.sln │ │ │ ├── UpCase.vcproj │ │ │ └── readme_upcase.htm │ ├── isapi_6.0 │ │ ├── inc │ │ │ ├── IsapiBuffer.h │ │ │ ├── IsapiDebug.h │ │ │ ├── IsapiExtension.h │ │ │ ├── IsapiModule.h │ │ │ ├── IsapiRequest.h │ │ │ ├── IsapiString.h │ │ │ ├── IsapiStringW.h │ │ │ ├── IsapiTime.h │ │ │ └── IsapiTools.h │ │ └── src │ │ │ ├── IsapiBuffer.cpp │ │ │ ├── IsapiDebug.cpp │ │ │ ├── IsapiExtension.cpp │ │ │ ├── IsapiModule.cpp │ │ │ ├── IsapiRequest.cpp │ │ │ ├── IsapiString.cpp │ │ │ ├── IsapiStringW.cpp │ │ │ └── IsapiTime.cpp │ └── progadmin │ │ ├── adsi │ │ ├── ChangeProperties_ADSI.js │ │ └── readme_changeproperties_adsi.htm │ │ └── wmi │ │ ├── ChangeProperties_WMI.js │ │ └── readme_changeproperties_wmi.htm ├── webservices │ └── calculator │ │ ├── calc.ico │ │ ├── calculator.asmx │ │ ├── calculator.hta │ │ ├── calculator.htc │ │ ├── menu.htc │ │ ├── readme.txt │ │ └── webservice.htc ├── winhttp │ ├── AuthDefaultCred │ │ ├── AuthDefaultCred.sln │ │ ├── AuthDefaultCred.vcproj │ │ ├── ReadMe.txt │ │ └── main.cpp │ ├── AuthNegotiate │ │ ├── ReadMe.txt │ │ ├── Winhttp SspiPfc Sample.sln │ │ ├── Winhttp SspiPfc Sample.vcproj │ │ ├── countbytes.aspx │ │ └── main.c │ ├── WinhttpProxySample │ │ ├── BasicProxyMain.cpp │ │ ├── GetProxy.cpp │ │ ├── GetProxy.h │ │ ├── ReadMe.txt │ │ ├── Winhttp Proxy Sample.sln │ │ └── Winhttp Proxy Sample.vcproj │ ├── winhttpasyncsample │ │ ├── Makefile │ │ ├── Winhttp Async Sample.sln │ │ ├── Winhttp Async Sample.vcproj │ │ ├── main.c │ │ └── readme.txt │ ├── winhttpformsubmitsample │ │ ├── Makefile │ │ ├── WinHttpFormSubmitSample.cpp │ │ ├── formsubmit.asp │ │ ├── formsubmit.html │ │ ├── readme.txt │ │ └── sample.txt │ └── winhttppostsample │ │ ├── Makefile │ │ ├── WinHttpPostSample.cpp │ │ ├── data.asp │ │ └── readme.txt ├── wsdapi │ ├── fileservice │ │ ├── FileService.sln │ │ ├── fileserviceclient │ │ │ ├── Client.cpp │ │ │ ├── Client.h │ │ │ └── FileServiceClient.vcproj │ │ ├── fileservicecontract │ │ │ ├── CodeGen_All.config │ │ │ ├── CodeGen_Client.config │ │ │ ├── CodeGen_Host.config │ │ │ ├── FileService.idl │ │ │ ├── FileService.wsdl │ │ │ ├── FileServiceContract.vcproj │ │ │ ├── FileServiceProxy.cpp │ │ │ ├── FileServiceProxy.h │ │ │ ├── FileServiceStub.cpp │ │ │ ├── FileServiceTypes.cpp │ │ │ └── FileServiceTypes.h │ │ ├── fileserviceservice │ │ │ ├── FileServiceService.vcproj │ │ │ ├── Service.cpp │ │ │ └── Service.h │ │ └── readme.txt │ └── stockquote │ │ ├── StockQuote.sln │ │ ├── readme.txt │ │ ├── stockquoteclient │ │ ├── Client.cpp │ │ ├── Client.h │ │ └── StockQuoteClient.vcproj │ │ ├── stockquotecontract │ │ ├── CodeGen_All.config │ │ ├── CodeGen_Client.config │ │ ├── CodeGen_Host.config │ │ ├── StockQuote.idl │ │ ├── StockQuote.wsdl │ │ ├── StockQuoteContract.vcproj │ │ ├── StockQuoteProxy.cpp │ │ ├── StockQuoteProxy.h │ │ ├── StockQuoteStub.cpp │ │ ├── StockQuoteTypes.cpp │ │ ├── StockQuoteTypes.h │ │ ├── stockquote.xsd │ │ └── stockquoteservice.wsdl │ │ └── stockquoteservice │ │ ├── Service.cpp │ │ ├── Service.h │ │ └── StockQuoteService.vcproj └── xml │ └── xmllite │ ├── xmllitechunkreader │ └── cpp │ │ ├── XmlLiteChunkReader.cpp │ │ ├── XmlLiteChunkReader.sln │ │ ├── XmlLiteChunkReader.vcproj │ │ ├── chunks.xml │ │ ├── readme.txt │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── xmllitelimitedreader │ └── cpp │ │ ├── XmlLiteLimitedReader.cpp │ │ ├── XmlLiteLimitedReader.sln │ │ ├── XmlLiteLimitedReader.vcproj │ │ ├── readme.txt │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── verylongname.xml │ ├── xmllitenamespacereader │ └── cpp │ │ ├── XmlLiteNamespaceReader.cpp │ │ ├── XmlLiteNamespaceReader.sln │ │ ├── XmlLiteNamespaceReader.vcproj │ │ ├── namespaces.xml │ │ ├── readme.txt │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── xmllitenamespacewriter1 │ └── cpp │ │ ├── XmlLiteNamespaceWriter1.cpp │ │ ├── XmlLiteNamespaceWriter1.sln │ │ ├── XmlLiteNamespaceWriter1.vcproj │ │ ├── readme.txt │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── xmllitenamespacewriter2 │ └── cpp │ │ ├── XmlLiteNamespaceWriter2.cpp │ │ ├── XmlLiteNamespaceWriter2.sln │ │ ├── XmlLiteNamespaceWriter2.vcproj │ │ ├── readme.txt │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── xmllitenamespacewriter3 │ └── cpp │ │ ├── XmlLiteNamespaceWriter3.cpp │ │ ├── XmlLiteNamespaceWriter3.sln │ │ ├── XmlLiteNamespaceWriter3.vcproj │ │ ├── readme.txt │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── xmllitenamespacewriter4 │ └── cpp │ │ ├── XmlLiteNamespaceWriter4.cpp │ │ ├── XmlLiteNamespaceWriter4.sln │ │ ├── XmlLiteNamespaceWriter4.vcproj │ │ ├── readme.txt │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── xmllitereader │ └── cpp │ │ ├── XmlLiteReader.cpp │ │ ├── XmlLiteReader.sln │ │ ├── XmlLiteReader.vcproj │ │ ├── readme.txt │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── stocks.xml │ ├── xmllitereaderwriter │ └── cpp │ │ ├── XmlLiteReaderWriter.cpp │ │ ├── XmlLiteReaderWriter.sln │ │ ├── XmlLiteReaderWriter.vcproj │ │ ├── books.xml │ │ ├── readme.txt │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── xmllitereadexternalentities │ └── cpp │ │ ├── XmlLiteReadExternalEntities.cpp │ │ ├── XmlLiteReadExternalEntities.sln │ │ ├── XmlLiteReadExternalEntities.vcproj │ │ ├── date.xml │ │ ├── readme.txt │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── xmllitereadwithencoding │ └── cpp │ │ ├── XmlLiteReadWithEncoding.cpp │ │ ├── XmlLiteReadWithEncoding.sln │ │ ├── XmlLiteReadWithEncoding.vcproj │ │ ├── encoded.xml │ │ ├── readme.txt │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── xmllitewritedoctype │ └── cpp │ │ ├── XmlLiteWriteDocType.cpp │ │ ├── XmlLiteWriteDocType.sln │ │ ├── XmlLiteWriteDocType.vcproj │ │ ├── readme.txt │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── xmllitewriter │ └── cpp │ │ ├── XmlLiteWriter.cpp │ │ ├── XmlLiteWriter.sln │ │ ├── XmlLiteWriter.vcproj │ │ ├── readme.txt │ │ ├── stdafx.cpp │ │ └── stdafx.h │ └── xmllitewritewithencoding │ └── cpp │ ├── XmlLiteWriteWithEncoding.cpp │ ├── XmlLiteWriteWithEncoding.sln │ ├── XmlLiteWriteWithEncoding.vcproj │ ├── readme.txt │ ├── stdafx.cpp │ └── stdafx.h ├── winbase ├── DeviceFoundation │ ├── DeviceFolderExtensibility │ │ ├── Associations.reg │ │ ├── DeviceContextMenu │ │ │ ├── CDeviceContextMenu.cpp │ │ │ ├── CDeviceContextMenu.h │ │ │ ├── CDeviceContextMenuFactory.cpp │ │ │ ├── CDeviceContextMenuFactory.h │ │ │ ├── DeviceContextMenu.def │ │ │ ├── DeviceContextMenu.h │ │ │ ├── DeviceContextMenu.rc │ │ │ ├── DeviceContextMenu.vcproj │ │ │ ├── common.h │ │ │ ├── dllmain.cpp │ │ │ └── resource.h │ │ ├── DeviceFolderExtensibility.sln │ │ ├── DevicePropertyPage │ │ │ ├── CDevicePropertyPage.cpp │ │ │ ├── CDevicePropertyPage.h │ │ │ ├── CDevicePropertyPageFactory.cpp │ │ │ ├── CDevicePropertyPageFactory.h │ │ │ ├── DevicePropertyPage.def │ │ │ ├── DevicePropertyPage.h │ │ │ ├── DevicePropertyPage.rc │ │ │ ├── DevicePropertyPage.vcproj │ │ │ ├── common.h │ │ │ ├── dllmain.cpp │ │ │ └── resource.h │ │ └── readme.htm │ ├── FunctionDiscovery │ │ ├── Client │ │ │ ├── FunDiscovery.cpp │ │ │ ├── FunDiscovery.h │ │ │ ├── fdsample.sln │ │ │ ├── fdsample.vcproj │ │ │ ├── main.cpp │ │ │ └── readme.txt │ │ └── Provider │ │ │ ├── FDProviderHostSample │ │ │ ├── FDProviderHostSample.cpp │ │ │ ├── FDProviderHostSample.rc │ │ │ ├── FDProviderHostSample.vcproj │ │ │ ├── resource.h │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ │ ├── FDProviderSample │ │ │ ├── ClientNotificationWork.cpp │ │ │ ├── ClientNotificationWork.h │ │ │ ├── ComServer.cpp │ │ │ ├── ComServer.def │ │ │ ├── ComServer.h │ │ │ ├── DiscoveryProtocol.cpp │ │ │ ├── DiscoveryProtocol.h │ │ │ ├── FDProvider.cpp │ │ │ ├── FDProvider.h │ │ │ ├── FDProviderSample.rc │ │ │ ├── FDProviderSample.vcproj │ │ │ ├── FunctionDiscoveryProviderHelper.h │ │ │ ├── FunctionInstanceInfo.cpp │ │ │ ├── FunctionInstanceInfo.h │ │ │ ├── LinkedList.h │ │ │ ├── Locks.h │ │ │ ├── ThreadPool.h │ │ │ ├── resource.h │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ │ ├── FDProviderSampleDevice │ │ │ ├── FDProviderSampleDevice.cpp │ │ │ ├── FDProviderSampleDevice.rc │ │ │ ├── FDProviderSampleDevice.vcproj │ │ │ ├── resource.h │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ │ ├── FunctionDiscoveryProvider.sln │ │ │ ├── Install.bat │ │ │ ├── Install.reg │ │ │ ├── Readme.htm │ │ │ └── inc │ │ │ ├── IEXEHostControl.h │ │ │ └── Messages.h │ └── PNPX │ │ └── SimpleThermostat │ │ ├── SimpleThermostat.sln │ │ ├── SimpleThermostatClient │ │ ├── SimpleThermostatClient.vcproj │ │ └── main.cpp │ │ ├── SimpleThermostatDriver │ │ ├── SimpleThermostat.inf │ │ └── SimpleThermostatDriver.vcproj │ │ ├── SimpleThermostatInterface │ │ ├── SimpleThermostat.idl │ │ └── SimpleThermostatInterface.vcproj │ │ ├── SimpleThermostatProxy │ │ ├── CSimpleThermostatProviderFactory.cpp │ │ ├── CSimpleThermostatProviderFactory.h │ │ ├── CSimpleThermostatServiceProvider.cpp │ │ ├── CSimpleThermostatServiceProvider.h │ │ ├── SimpleThermostatProxy.def │ │ ├── SimpleThermostatProxy.idl │ │ ├── SimpleThermostatProxy.vcproj │ │ ├── common.h │ │ ├── dllmain.cpp │ │ └── helpers.cpp │ │ ├── UPnP │ │ ├── UPnPSimpleThermostatDevice │ │ │ ├── UPnPSimpleThermostatDevice.vcproj │ │ │ └── main.cpp │ │ ├── UPnPSimpleThermostatDeviceDLL │ │ │ ├── CSimpleThermostatDevice.cpp │ │ │ ├── CSimpleThermostatDevice.h │ │ │ ├── CSimpleThermostatDeviceFactory.cpp │ │ │ ├── CSimpleThermostatDeviceFactory.h │ │ │ ├── CSimpleThermostatService.cpp │ │ │ ├── CSimpleThermostatService.h │ │ │ ├── SimpleThermostatDevice.def │ │ │ ├── SimpleThermostatDevice.idl │ │ │ ├── SimpleThermostatDevice.rc │ │ │ ├── SimpleThermostatDevice.xml │ │ │ ├── SimpleThermostatService.xml │ │ │ ├── UPnPSimpleThermostatDeviceDLL.vcproj │ │ │ ├── common.h │ │ │ └── dllmain.cpp │ │ └── UPnPSimpleThermostatProxy │ │ │ ├── CUPnPSimpleThermostatProxy.cpp │ │ │ ├── CUPnPSimpleThermostatProxy.h │ │ │ └── UPnPSimpleThermostatProxy.vcproj │ │ ├── WSD │ │ ├── WSDSimpleThermostatContract │ │ │ ├── SimpleThermostat.wsdl │ │ │ └── codegen.config │ │ ├── WSDSimpleThermostatDevice │ │ │ ├── CSimpleThermostatService.cpp │ │ │ ├── CSimpleThermostatService.h │ │ │ ├── WSDSimpleThermostatDevice.vcproj │ │ │ └── main.cpp │ │ ├── WSDSimpleThermostatGenerated │ │ │ ├── SimpleThermostat_WSD.idl │ │ │ ├── SimpleThermostat_WSDProxy.cpp │ │ │ ├── SimpleThermostat_WSDProxy.h │ │ │ ├── SimpleThermostat_WSDStub.cpp │ │ │ ├── SimpleThermostat_WSDTypes.cpp │ │ │ ├── SimpleThermostat_WSDTypes.h │ │ │ └── WSDSimpleThermostatGenerated.vcproj │ │ └── WSDSimpleThermostatProxy │ │ │ ├── CWSDSimpleThermostatProxy.cpp │ │ │ ├── CWSDSimpleThermostatProxy.h │ │ │ └── WSDSimpleThermostatProxy.vcproj │ │ ├── readme.htm │ │ └── scenario.jpg ├── Eventing │ ├── Controller │ │ ├── makefile │ │ ├── readme.txt │ │ ├── tracelog.c │ │ ├── tracelog.sln │ │ └── tracelog.vcproj │ ├── EtwConsumer │ │ ├── EtwConsumer.cpp │ │ ├── EtwConsumer.sln │ │ ├── EtwConsumer.vcproj │ │ ├── ReadMe.txt │ │ ├── TdhUtil.cpp │ │ ├── TdhUtil.h │ │ ├── common.cpp │ │ ├── common.h │ │ └── makefile │ ├── EventLogConsumer │ │ ├── CPP │ │ │ ├── ChangeChannelConfig │ │ │ │ ├── ChangeChannelConfig.vcproj │ │ │ │ └── ChangeMaxSize.cpp │ │ │ ├── EventLogSamples.sln │ │ │ ├── EventsQuery │ │ │ │ ├── Events.c │ │ │ │ └── EventsQuery.vcproj │ │ │ ├── GetEventRawDescription │ │ │ │ ├── GetEventRawDescription.cpp │ │ │ │ └── GetEventRawDescription.vcproj │ │ │ ├── PullSubscription │ │ │ │ ├── PullSubscription.cpp │ │ │ │ └── PullSubscription.vcproj │ │ │ ├── PushSubscription │ │ │ │ ├── PushSubscription.cpp │ │ │ │ └── PushSubscription.vcproj │ │ │ └── ReadMe.txt │ │ └── CSharp │ │ │ ├── Config │ │ │ ├── ChannelConfig.cs │ │ │ ├── ChannelConfig.csproj │ │ │ ├── ChannelConfig.sln │ │ │ └── ReadMe.txt │ │ │ ├── LogManagement │ │ │ ├── LogManagement.cs │ │ │ ├── LogManagement.csproj │ │ │ ├── LogManagement.sln │ │ │ └── ReadMe.txt │ │ │ ├── ProviderMetadata │ │ │ ├── Metadata.cs │ │ │ ├── ProviderMetadata.csproj │ │ │ ├── ProviderMetadata.sln │ │ │ └── ReadMe.txt │ │ │ ├── Querying │ │ │ ├── ReadEvents.cs │ │ │ ├── ReadEvents.csproj │ │ │ ├── ReadEvents.sln │ │ │ └── ReadMe.txt │ │ │ └── Subscribe │ │ │ ├── ReadMe.txt │ │ │ ├── StructuredQuery.xml │ │ │ ├── Subscribe.cs │ │ │ ├── Subscribe.csproj │ │ │ └── Subscribe.sln │ ├── Provider │ │ ├── Advanced │ │ │ ├── CPP │ │ │ │ ├── AdvancedProvider.cpp │ │ │ │ ├── AdvancedProvider.man │ │ │ │ ├── AdvancedProvider.rc │ │ │ │ ├── AdvancedProvider.sln │ │ │ │ ├── AdvancedProvider.vcproj │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── RunE2E.cmd │ │ │ │ └── makefile │ │ │ └── CSharp │ │ │ │ ├── AdvancedProvider.csproj │ │ │ │ ├── AdvancedProvider.man │ │ │ │ ├── AdvancedProvider.sln │ │ │ │ ├── AdvancedProviderEvents.cs │ │ │ │ ├── Program.cs │ │ │ │ ├── ReadMe.txt │ │ │ │ └── RunE2E.cmd │ │ └── Simple │ │ │ ├── CPP │ │ │ ├── ReadMe.txt │ │ │ ├── RunE2E.cmd │ │ │ ├── SimpleProvider.cpp │ │ │ ├── SimpleProvider.man │ │ │ ├── SimpleProvider.rc │ │ │ ├── SimpleProvider.sln │ │ │ ├── SimpleProvider.vcproj │ │ │ └── makefile │ │ │ └── CSharp │ │ │ ├── Program.cs │ │ │ ├── ReadMe.txt │ │ │ ├── RunE2E.cmd │ │ │ ├── SimpleProvider.csproj │ │ │ ├── SimpleProvider.man │ │ │ ├── SimpleProvider.sln │ │ │ └── SimpleProviderEvents.cs │ └── WppConsumer │ │ ├── ReadMe.txt │ │ ├── WppDumper.cpp │ │ ├── common.h │ │ ├── makefile │ │ ├── wppdumper.sln │ │ └── wppdumper.vcproj ├── FSRM │ ├── EnumClassificationProperties │ │ └── cpp │ │ │ ├── FSRM_Get_Enum_Properties.cpp │ │ │ ├── FSRM_Get_Enum_Properties.h │ │ │ ├── FSRM_Get_Enum_Properties.rc │ │ │ ├── FSRM_Get_Enum_Properties.sln │ │ │ ├── FSRM_Get_Enum_Properties.vcproj │ │ │ ├── Readme.txt │ │ │ ├── Resource.h │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ ├── ManagedContentClassifier │ │ └── CS │ │ │ ├── ManagedContentClassifier.cs │ │ │ ├── ManagedContentClassifier.csproj │ │ │ ├── ManagedContentClassifier.sln │ │ │ ├── OverloadStream.cs │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ ├── ReadMe.txt │ │ │ ├── RegisterWithFsrmAsExternal.vbs │ │ │ ├── classreg2.reg │ │ │ ├── install_as_external.cmd │ │ │ ├── keyfile.snk │ │ │ └── register_fsrm_module.vbs │ ├── ManagedGetEnumProperties │ │ └── CS │ │ │ ├── ManagedGetEnumProperties.cs │ │ │ ├── ManagedGetEnumProperties.csproj │ │ │ ├── ManagedGetEnumProperties.sln │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ ├── ReadMe.txt │ │ │ └── keyfile.snk │ ├── PowerShellHostClassifier │ │ └── CS │ │ │ ├── BlockablePropertyBagEnumerator.cs │ │ │ ├── OverloadStream.cs │ │ │ ├── PowerShellHostClassifier.cs │ │ │ ├── PowerShellHostClassifier.csproj │ │ │ ├── PowerShellHostClassifier.sln │ │ │ ├── PowerShellRuleHoster.cs │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ ├── ReadMe.txt │ │ │ ├── RegisterWithFsrmAsExternal.vbs │ │ │ ├── RegisterWithFsrmAsNetworkService.vbs │ │ │ ├── UnregisterFromFsrm.vbs │ │ │ ├── classreg2.reg │ │ │ ├── eventlog.reg │ │ │ ├── file.ps1 │ │ │ ├── install_as_external.cmd │ │ │ ├── install_as_network_service.cmd │ │ │ ├── keyfile.snk │ │ │ ├── modulesuppressions.cs │ │ │ ├── powershell_scripts │ │ │ ├── content_classifier.ps1 │ │ │ ├── demo_script.ps1 │ │ │ └── yes_no_script.ps1 │ │ │ ├── register_fsrm_module.vbs │ │ │ └── uninstall.cmd │ ├── SampleIFilterBasedClassifier │ │ └── CPP │ │ │ ├── ContentBasedClassification.sln │ │ │ ├── ContentBasedClassificationModule │ │ │ ├── ContentBasedClassificationModule.aps │ │ │ ├── ContentBasedClassificationModule.cpp │ │ │ ├── ContentBasedClassificationModule.def │ │ │ ├── ContentBasedClassificationModule.h │ │ │ ├── ContentBasedClassificationModule.idl │ │ │ ├── ContentBasedClassificationModule.rc │ │ │ ├── ContentBasedClassificationModule.rgs │ │ │ ├── ContentBasedClassificationModule.vcproj │ │ │ ├── ContentBasedClassificationModule_i.c │ │ │ ├── ContentBasedClassificationModule_p.c │ │ │ ├── ContentBasedClassifier.cpp │ │ │ ├── ContentBasedClassifier.h │ │ │ ├── ContentBasedClassifier.rgs │ │ │ ├── ReadMe.txt │ │ │ ├── RegisterWithFsrm.vbs │ │ │ ├── Resource.h │ │ │ ├── dlldata.c │ │ │ ├── install.cmd │ │ │ ├── register_app.vbs │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ │ └── FsrmTextReader │ │ │ ├── FsrmTextReader.aps │ │ │ ├── FsrmTextReader.cpp │ │ │ ├── FsrmTextReader.def │ │ │ ├── FsrmTextReader.h │ │ │ ├── FsrmTextReader.idl │ │ │ ├── FsrmTextReader.rc │ │ │ ├── FsrmTextReader.rgs │ │ │ ├── FsrmTextReader.vcproj │ │ │ ├── FsrmTextReader_i.c │ │ │ ├── FsrmTextReader_p.c │ │ │ ├── ReadMe.txt │ │ │ ├── Resource.h │ │ │ ├── TextTokenizer.cpp │ │ │ ├── TextTokenizer.h │ │ │ ├── TextTokenizer.rgs │ │ │ ├── dlldata.c │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ └── SampleTextBasedClassifier │ │ └── CPP │ │ ├── FsrmSampleClassificationModule.aps │ │ ├── FsrmSampleClassificationModule.cpp │ │ ├── FsrmSampleClassificationModule.def │ │ ├── FsrmSampleClassificationModule.h │ │ ├── FsrmSampleClassificationModule.idl │ │ ├── FsrmSampleClassificationModule.rc │ │ ├── FsrmSampleClassificationModule.rgs │ │ ├── FsrmSampleClassificationModule.sln │ │ ├── FsrmSampleClassificationModule.vcproj │ │ ├── FsrmSampleClassificationModule_i.c │ │ ├── FsrmSampleClassifier.cpp │ │ ├── FsrmSampleClassifier.h │ │ ├── FsrmSampleClassifier.rgs │ │ ├── ReadMe.txt │ │ ├── RegisterWithFsrm.vbs │ │ ├── install.cmd │ │ ├── register_app.vbs │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ └── stdafx.h ├── PerfCounters │ ├── Basic │ │ ├── CPP │ │ │ ├── Readme.txt │ │ │ ├── makefile │ │ │ ├── ucs.c │ │ │ ├── ucs.man │ │ │ ├── ucs.rc │ │ │ ├── ucs.sln │ │ │ └── ucs.vcproj │ │ └── CSharp │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ ├── Readme.txt │ │ │ ├── Ucs.cs │ │ │ ├── ucs-managed.csproj │ │ │ ├── ucs-managed.sln │ │ │ ├── ucs.man │ │ │ ├── ucs.rc │ │ │ └── ucs.res │ └── GlobalAggregate │ │ └── CPP │ │ ├── Readme.txt │ │ ├── gas.c │ │ ├── gas.man │ │ ├── gas.rc │ │ ├── gas.sln │ │ ├── gas.vcproj │ │ └── makefile ├── Troubleshooting │ ├── Advanced │ │ ├── AdvancedSample.diag │ │ ├── RS_PowerSaverBattery.ps1 │ │ ├── RS_ServiceStopped.ps1 │ │ ├── Readme.txt │ │ ├── TS_PowerSaverBattery.ps1 │ │ └── TS_ServiceStopped.ps1 │ └── Simple │ │ ├── RS_DetectPopupBlocker.ps1 │ │ ├── Readme.txt │ │ ├── SimpleSample.diag │ │ └── TS_DetectPopupBlocker.ps1 ├── WHEA │ └── DumpRec │ │ ├── Makefile │ │ ├── ReadMe.txt │ │ ├── exe │ │ ├── dumprec.c │ │ ├── dumprec.h │ │ ├── dumprec.rc │ │ ├── dumprecs.h │ │ └── makefile │ │ ├── inc │ │ └── cperhlp.h │ │ └── lib │ │ ├── cper.c │ │ ├── cperhlpp.h │ │ ├── events.c │ │ └── makefile ├── bootconfigurationdata │ ├── BcdSampleApp.sln │ ├── bcdsampleapp │ │ ├── BcdSampleApp.csproj │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── Program.cs │ │ └── properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ ├── bcdsamplelib │ │ ├── BcdSampleLib.csproj │ │ ├── BcdStore.API.cs │ │ ├── Constants.cs │ │ ├── ROOT.WMI.BcdObject.cs │ │ ├── ROOT.WMI.BcdObjectListElement.cs │ │ ├── ROOT.WMI.BcdStore.cs │ │ ├── ROOT.WMI.BcdStringElement.cs │ │ ├── Utils.cs │ │ └── properties │ │ │ └── AssemblyInfo.cs │ └── readme.txt ├── cluster │ └── win2003 │ │ ├── clipbookserver │ │ ├── clipbook server │ │ │ ├── ClRes.cpp │ │ │ ├── ClRes.h │ │ │ ├── ClipBook Server.cpp │ │ │ ├── ClipBook Server.def │ │ │ ├── ClipBook Server.rc │ │ │ ├── ClipBook Server.sln │ │ │ ├── ClipBook Server.vcproj │ │ │ ├── ReadMe.txt │ │ │ └── settings.txt │ │ └── clipbook serverex │ │ │ ├── BasePage.cpp │ │ │ ├── BasePage.h │ │ │ ├── ClipBook ServerEx.cpp │ │ │ ├── ClipBook ServerEx.def │ │ │ ├── ClipBook ServerEx.h │ │ │ ├── ClipBook ServerEx.rc │ │ │ ├── ClipBook ServerEx.sln │ │ │ ├── ClipBook ServerEx.vcproj │ │ │ ├── DDxDDv.cpp │ │ │ ├── DDxDDv.h │ │ │ ├── ExtObj.cpp │ │ │ ├── ExtObj.h │ │ │ ├── ExtObjData.cpp │ │ │ ├── ExtObjData.h │ │ │ ├── ExtObjID.idl │ │ │ ├── PropList.cpp │ │ │ ├── PropList.h │ │ │ ├── ReadMe.txt │ │ │ ├── RegExt.cpp │ │ │ ├── RegExt.h │ │ │ ├── ResProp.cpp │ │ │ ├── ResProp.h │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── res │ │ │ └── ClipBook ServerEx.rc2 │ │ │ └── resource.h │ │ └── filesharesample │ │ ├── file share sample │ │ ├── ClRes.cpp │ │ ├── ClRes.h │ │ ├── File Share Sample.cpp │ │ ├── File Share Sample.def │ │ ├── File Share Sample.rc │ │ ├── File Share Sample.sln │ │ ├── File Share Sample.vcproj │ │ ├── ReadMe.txt │ │ └── settings.txt │ │ └── file share sampleex │ │ ├── BasePage.cpp │ │ ├── BasePage.h │ │ ├── DDxDDv.cpp │ │ ├── DDxDDv.h │ │ ├── ExtObj.cpp │ │ ├── ExtObj.h │ │ ├── ExtObjData.cpp │ │ ├── ExtObjData.h │ │ ├── ExtObjID.idl │ │ ├── File Share SampleEx.cpp │ │ ├── File Share SampleEx.def │ │ ├── File Share SampleEx.h │ │ ├── File Share SampleEx.rc │ │ ├── File Share SampleEx.sln │ │ ├── File Share SampleEx.vcproj │ │ ├── PropList.cpp │ │ ├── PropList.h │ │ ├── ReadMe.txt │ │ ├── RegExt.cpp │ │ ├── RegExt.h │ │ ├── ResProp.cpp │ │ ├── ResProp.h │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── res │ │ └── File Share SampleEx.rc2 │ │ └── resource.h ├── debug │ ├── FailFast │ │ ├── FailFast.c │ │ ├── FailFast.sln │ │ ├── FailFast.vcproj │ │ └── README.TXT │ ├── bpsamp │ │ ├── BPSamp.h │ │ ├── BPSampTest.c │ │ ├── DbgCmd.c │ │ ├── Main.c │ │ ├── Makefile │ │ ├── ReadMe.Txt │ │ └── Utils.c │ ├── dbh │ │ ├── dbh.cpp │ │ ├── dbh.sln │ │ ├── dbh.vcproj │ │ ├── makefile │ │ └── readme.txt │ ├── debughandler │ │ ├── DebugHandler.Cpp │ │ ├── DebugHandler.sln │ │ ├── Makefile │ │ ├── ReadMe.Txt │ │ └── debughandler.vcproj │ └── wct │ │ ├── ReadMe.txt │ │ ├── WctEnum.sln │ │ ├── WctEnum.vcproj │ │ ├── makefile │ │ └── wctenum.cpp ├── deployment │ └── windowsdeploymentservices │ │ ├── filterprov │ │ ├── FilterProv.cpp │ │ ├── FilterProv.def │ │ ├── FilterProv.h │ │ ├── FilterProv.sln │ │ ├── FilterProv.vcproj │ │ └── README.txt │ │ ├── imageenum │ │ ├── ImgEnum.sln │ │ ├── ImgEnum.vcproj │ │ ├── README.txt │ │ ├── imgenum.cpp │ │ ├── imgenum.rc │ │ └── resource.h │ │ ├── management │ │ └── wdstransportmanager │ │ │ ├── ReadMe.txt │ │ │ ├── WdsTransportManager.cpp │ │ │ ├── WdsTransportManager.h │ │ │ ├── WdsTransportManager.sln │ │ │ ├── WdsTransportManager.vcproj │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ ├── multicast │ │ ├── consumer │ │ │ ├── README.txt │ │ │ ├── consumer.sln │ │ │ ├── consumer.vcproj │ │ │ ├── main.cpp │ │ │ └── wdsscon.rc │ │ └── provider │ │ │ ├── README.txt │ │ │ ├── main.c │ │ │ ├── provider.sln │ │ │ ├── provider.vcproj │ │ │ ├── wdscp.def │ │ │ └── wdscp.rc │ │ └── sampprov │ │ ├── README.txt │ │ ├── SampProv.cpp │ │ ├── SampProv.def │ │ ├── SampProv.h │ │ ├── SampProv.sln │ │ └── SampProv.vcproj ├── imapi │ ├── IBurn │ │ ├── IBurn.sln │ │ └── IBurn │ │ │ ├── IBurn.cs │ │ │ ├── IBurn.csproj │ │ │ ├── Interop.cs │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── app.manifest │ │ │ └── obj │ │ │ └── IBurn.csproj.FileList.txt │ ├── imapi2sample │ │ ├── AudioEvent.cpp │ │ ├── AudioEvent.h │ │ ├── CodeTags.txt │ │ ├── DataWriter2Event.cpp │ │ ├── DataWriter2Event.h │ │ ├── DiscMaster2Event.cpp │ │ ├── DiscMaster2Event.h │ │ ├── Erase2Event.cpp │ │ ├── Erase2Event.h │ │ ├── RawWriter.cpp │ │ ├── RawWriter2Event.cpp │ │ ├── RawWriter2Event.h │ │ ├── common.h │ │ ├── consoleUtil.cpp │ │ ├── consoleUtil.h │ │ ├── erase.cpp │ │ ├── imapi2sample.cpp │ │ ├── imapi2sample.h │ │ ├── imapi2sample.rc │ │ ├── imapi2sample.sln │ │ ├── imapi2sample.vcproj │ │ ├── sources │ │ └── util.cpp │ ├── imapiv2 │ │ └── erasesample │ │ │ ├── EraseSample.sln │ │ │ ├── erasesample │ │ │ ├── DiscInformation.cpp │ │ │ ├── EraseSample.aps │ │ │ ├── EraseSample.cpp │ │ │ ├── EraseSample.def │ │ │ ├── EraseSample.h │ │ │ ├── EraseSample.idl │ │ │ ├── EraseSample.rc │ │ │ ├── EraseSample.rgs │ │ │ ├── EraseSample.vcproj │ │ │ ├── EraseSamplePS.vcproj │ │ │ ├── EraseSample_i.c │ │ │ ├── EraseSample_p.c │ │ │ ├── EraseSampleps.def │ │ │ ├── ReadMe.txt │ │ │ ├── Resource.h │ │ │ ├── TaskTimeEstimator.cpp │ │ │ ├── Utility.cpp │ │ │ ├── Utility.h │ │ │ ├── dlldata.c │ │ │ ├── erase.cpp │ │ │ ├── erase.h │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ │ │ ├── erasesampleuuid │ │ │ ├── EraseSampleUUID.cpp │ │ │ ├── EraseSampleUUID.vcproj │ │ │ ├── ReadMe.txt │ │ │ └── dlldata.c │ │ │ └── unittest │ │ │ ├── EraseEventTest.cpp │ │ │ ├── EraseEventTest.h │ │ │ ├── EraseTest.cpp │ │ │ ├── EraseTest.h │ │ │ ├── ReadMe.txt │ │ │ ├── UnitTest.vcproj │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ └── interop │ │ ├── AssemblyInfo.cs │ │ ├── IMAPIv2.cs │ │ ├── IMAPIv2FS.cs │ │ ├── IMAPIv2_Ex.cs │ │ ├── Interop.IMAPI.csproj │ │ ├── Interop.IMAPI.sln │ │ ├── Interop.cs │ │ ├── imapiv2raw.cs │ │ ├── microsoft.storage.imapi.asmmeta │ │ └── sources ├── indexing │ ├── chgstate │ │ ├── ChgState.Cxx │ │ ├── Makefile │ │ └── ReadMe.Txt │ ├── dhtml │ │ ├── CiDHtml.Htm │ │ └── ReadMe.Txt │ ├── iisadmin │ │ ├── Admin.Htm │ │ ├── Install.Bat │ │ ├── Is2Admin.Css │ │ ├── Is2Logo.Gif │ │ ├── Is2Side.Gif │ │ ├── Merge.Ida │ │ ├── ReadMe.txt │ │ ├── Scan.Htx │ │ ├── Scan.Ida │ │ ├── Scan.Idq │ │ ├── State.Htx │ │ ├── State.Ida │ │ ├── UnFilt.Htx │ │ ├── UnFilt.Idq │ │ └── navbara.Htm │ ├── iissearch │ │ ├── AdoVbs.Inc │ │ ├── AdvQuery.Asp │ │ ├── AdvSqlq.Asp │ │ ├── Default.Htm │ │ ├── FastQ.Htm │ │ ├── FastQ.Htx │ │ ├── FastQ.Idq │ │ ├── Hilight.Gif │ │ ├── HtxError.Htx │ │ ├── IE.Gif │ │ ├── IdqError.Htx │ │ ├── Install.Bat │ │ ├── Is2Bkgnd.Gif │ │ ├── Is2Foot.Inc │ │ ├── Is2Logo.Gif │ │ ├── Is2style.Css │ │ ├── Query.Asp │ │ ├── Query.Htm │ │ ├── Query.Htx │ │ ├── Query.Idq │ │ ├── RankBtn1.Gif │ │ ├── RankBtn2.Gif │ │ ├── RankBtn3.Gif │ │ ├── RankBtn4.Gif │ │ ├── RankBtn5.Gif │ │ ├── ReadMe.txt │ │ ├── SqlQHit.Asp │ │ ├── SqlQHit.Htm │ │ ├── defError.Htx │ │ ├── ixqLang.Htm │ │ ├── ixtipHlp.Htm │ │ ├── ixtipSql.Htm │ │ ├── navbar.Htm │ │ ├── qFullHit.Htw │ │ ├── qsumrhit.Htw │ │ ├── resError.Htx │ │ └── win2k.Gif │ └── squery │ │ ├── JSQuery.Js │ │ ├── QSample.Vbs │ │ ├── ReadMe.txt │ │ └── VbsQuery.Vbs ├── io │ ├── Oplocks │ │ ├── Oplocks.sln │ │ └── Oplocks │ │ │ ├── Oplocks.cpp │ │ │ ├── Oplocks.vcproj │ │ │ └── targetver.h │ ├── cancel │ │ └── create │ │ │ ├── AsyncCreate.sln │ │ │ ├── AsyncCreate.vcproj │ │ │ ├── AsyncCreateFile.c │ │ │ ├── IoCancellation.c │ │ │ ├── IoCancellation.h │ │ │ └── README.TXT │ ├── diskquota │ │ ├── Commands.Cpp │ │ ├── Commands.h │ │ ├── DskQuota.Cpp │ │ ├── Makefile │ │ ├── PrintMenu.Cpp │ │ ├── PrintMenu.h │ │ ├── ProcessMenu.Cpp │ │ ├── ProcessMenu.h │ │ └── ReadMe.Txt │ ├── dledit │ │ ├── DLEdit.Cpp │ │ ├── DLEdit.sln │ │ ├── DLEdit.vcproj │ │ └── ReadMe.Txt │ ├── enummount │ │ ├── EnumMountPoints.c │ │ ├── Makefile │ │ └── ReadMe.Txt │ ├── extendedfileapis │ │ ├── ExtendedFileAPIs.cpp │ │ ├── ExtendedFileAPIs.sln │ │ ├── ExtendedFileAPIs.vcproj │ │ └── ReadMe.txt │ ├── fcopy │ │ ├── FCopy.Cpp │ │ ├── Makefile │ │ └── ReadMe.Txt │ ├── mount │ │ ├── Makefile │ │ ├── Mount.Cpp │ │ ├── ReadMe.Txt │ │ └── UnMount.Cpp │ └── unbufcpy │ │ ├── ReadMe.Txt │ │ ├── UnBufCpy.sln │ │ ├── unbufcp1 │ │ ├── UnBufCp1.c │ │ └── UnBufCp1.vcproj │ │ └── unbufcp2 │ │ ├── UnBufCp2.c │ │ └── UnBufCp2.vcproj ├── iscsi │ ├── ISCSI.SLN │ ├── ISCSICLI.C │ ├── ISCSICli.vcproj │ └── README.TXT ├── monitorservices │ ├── MonSvc.sln │ ├── README.txt │ └── monsvc │ │ ├── MonSvc.cxx │ │ └── MonSvc.vcproj ├── rdc │ ├── RdcSample.sln │ ├── Readme.txt │ ├── client │ │ ├── RdcSdkTestClient.cpp │ │ ├── RdcSdkTestClient.vcproj │ │ ├── SimpleFilenameTable.h │ │ ├── rdcSdkTestClient.h │ │ ├── sampleUnknownImpl.h │ │ ├── stdafx.cpp │ │ └── stdafx.h │ └── server │ │ ├── DebugHResult.h │ │ ├── RDCFileTransfer.cpp │ │ ├── RDCFileTransfer.h │ │ ├── RDCFileTransfer.rgs │ │ ├── RdcFileHandleImpl.cpp │ │ ├── RdcFileHandleImpl.h │ │ ├── RdcSdkTestServer.cpp │ │ ├── RdcSdkTestServer.def │ │ ├── RdcSdkTestServer.idl │ │ ├── RdcSdkTestServer.rc │ │ ├── RdcSdkTestServer.rgs │ │ ├── RdcSdkTestServer.vcproj │ │ ├── dlldatax.c │ │ ├── dlldatax.h │ │ ├── globals.h │ │ ├── rdcSmartArray.h │ │ ├── rdcThread.cpp │ │ ├── rdcThread.h │ │ ├── resource.h │ │ ├── smartFileHandle.h │ │ ├── stdafx.cpp │ │ └── stdafx.h ├── registry │ ├── Makefile │ ├── ReadMe.Txt │ ├── RegExplorer.c │ ├── RegExplorer.h │ └── RegExplorer.rc ├── restartmanager │ └── rmfilterapp │ │ ├── RmFilterApp │ │ ├── RmFilterApp.vcproj │ │ └── rmfilterapp.cpp │ │ ├── readme.txt │ │ └── rmfilterapp.sln ├── service │ ├── Client.c │ ├── Makefile │ ├── ReadMe.Txt │ ├── Service.H │ ├── Service.c │ └── Simple.c ├── services │ └── pvtnamespace │ │ ├── Client_PvtNamespace.cxx │ │ ├── MonSvc_PvtNamespace.cxx │ │ ├── PvtNameSpace.sln │ │ ├── PvtNameSpace_Client.vcproj │ │ └── PvtNameSpace_Server.vcproj ├── storage │ ├── EhStorEnumerator │ │ ├── EhStorEnumerator2.sln │ │ ├── EhStorEnumerator2 │ │ │ ├── CertificateSILO.cpp │ │ │ ├── CertificateSILO.h │ │ │ ├── EhStorEnumerator2.cpp │ │ │ ├── EhStorEnumerator2.h │ │ │ ├── EhStorEnumerator2.ico │ │ │ ├── EhStorEnumerator2.rc │ │ │ ├── EhStorEnumerator2.vcproj │ │ │ ├── LocalCertStoreImp.cpp │ │ │ ├── LocalCertStoreImp.h │ │ │ ├── PasswordSILO.cpp │ │ │ ├── PasswordSILO.h │ │ │ ├── PortableDeviceManagerImp.cpp │ │ │ ├── PortableDeviceManagerImp.h │ │ │ ├── SetCertificateDlg.cpp │ │ │ ├── SetCertificateDlg.h │ │ │ ├── resource.h │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ └── targetver.h │ │ └── ReadMe.txt │ └── EhStorManaged │ │ ├── EhStorManaged.sln │ │ ├── EhStorManaged │ │ ├── EhStorManaged.csproj │ │ ├── PortableDeviceManagerImp.cs │ │ ├── Program.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── ReadMe.txt │ │ └── microsoft.storage.EhStorage.dll │ │ ├── EhStorAPIHelper.cs │ │ ├── EhStorAPIInterop.cs │ │ ├── PortableDeviceAPIInterop.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── microsoft.storage.EhStorage.csproj ├── transactions │ ├── io.log │ │ ├── LoggingBasics.cs │ │ ├── LoggingBasics.csproj │ │ ├── LoggingBasics.sln │ │ ├── properties │ │ │ └── AssemblyInfo.cs │ │ └── readme.txt │ ├── simpleresourcemanager │ │ ├── Readme.txt │ │ ├── SimpleResourceManager.cpp │ │ ├── SimpleResourceManager.sln │ │ └── SimpleResourceManager.vcproj │ ├── transactedfile │ │ ├── TransactedFile.cpp │ │ ├── TransactedFile.sln │ │ ├── TransactedFile.vcproj │ │ └── readme.txt │ ├── transactedfileandsql │ │ ├── CreatePubsDB.sql │ │ ├── TransactedFileAndSQL.cpp │ │ ├── TransactedFileAndSQL.sln │ │ ├── TransactedFileAndSQL.vcproj │ │ └── readme.txt │ └── xasuperior │ │ ├── Readme.txt │ │ ├── XASuperior.cpp │ │ ├── XASuperior.sln │ │ └── XASuperior.vcproj ├── vss │ ├── ExpressW │ │ ├── ExpressW.sln │ │ ├── ExpressW.vcproj │ │ ├── helpers.cpp │ │ ├── helpers.h │ │ ├── main.cpp │ │ ├── readme.txt │ │ └── stdafx.h │ ├── samplewriter │ │ ├── CodeTags.txt │ │ ├── Sample Writer.sln │ │ ├── Sample Writer.vcproj │ │ ├── main.cpp │ │ ├── main.h │ │ ├── readme.txt │ │ ├── stdafx.h │ │ ├── swriter.cpp │ │ └── swriter.h │ ├── vshadow │ │ ├── CodeTags.txt │ │ ├── break.cpp │ │ ├── create.cpp │ │ ├── delete.cpp │ │ ├── expose.cpp │ │ ├── macros.h │ │ ├── makefile │ │ ├── query.cpp │ │ ├── readme.html │ │ ├── readme.txt │ │ ├── revert.cpp │ │ ├── select.cpp │ │ ├── shadow.cpp │ │ ├── shadow.h │ │ ├── sources │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── tracing.cpp │ │ ├── tracing.h │ │ ├── util.h │ │ ├── vshadow.rc │ │ ├── vshadow.sln │ │ ├── vshadow.vcproj │ │ ├── vssclient.cpp │ │ ├── vssclient.h │ │ ├── writer.cpp │ │ └── writer.h │ └── vsssampleprovider │ │ ├── CodeTags.txt │ │ ├── SampleProvider.h │ │ ├── SampleProvider.rgs │ │ ├── async.h │ │ ├── eventlogmsgs.mc │ │ ├── install-sampleprovider.cmd │ │ ├── makefile │ │ ├── readme.txt │ │ ├── register_app.vbs │ │ ├── resource.h │ │ ├── sampleprovider.cpp │ │ ├── setup.txt │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── uninstall-sampleprovider.cmd │ │ ├── utility.cpp │ │ ├── utility.h │ │ ├── vsssampleprovider.cpp │ │ ├── vsssampleprovider.def │ │ ├── vsssampleprovider.idl │ │ ├── vsssampleprovider.rc │ │ ├── vsssampleprovider.rgs │ │ ├── vsssampleprovider.sln │ │ ├── vsssampleprovider.vcproj │ │ └── vstorinterface.h ├── windowserrorreporting │ ├── AddDumpSample │ │ ├── AddDumpSample.c │ │ ├── AddDumpSample.sln │ │ ├── AddDumpSample.vcproj │ │ └── Readme.txt │ ├── AddFileSample │ │ ├── AddFileSample.c │ │ ├── AddFileSample.sln │ │ ├── AddFileSample.vcproj │ │ └── ReadMe.txt │ ├── AppRecovery │ │ ├── AppRecovery.c │ │ ├── AppRecovery.sln │ │ ├── AppRecovery.vcproj │ │ └── README.TXT │ ├── AppRestart │ │ ├── AppRestart.c │ │ ├── AppRestart.sln │ │ ├── AppRestart.vcproj │ │ └── README.TXT │ ├── RegisterFile │ │ ├── README.TXT │ │ ├── RegisterFile.c │ │ ├── RegisterFile.sln │ │ └── RegisterFile.vcproj │ ├── RegisterMemoryBlock │ │ ├── README.TXT │ │ ├── RegisterMemoryBlock.c │ │ ├── RegisterMemoryBlock.sln │ │ └── RegisterMemoryBlock.vcproj │ ├── RuntimeExceptionModule │ │ ├── CrashExe │ │ │ ├── CrashExe.c │ │ │ └── CrashExe.vcproj │ │ ├── HandlerDll │ │ │ ├── HandlerDll.c │ │ │ ├── HandlerDll.def │ │ │ └── HandlerDll.vcproj │ │ ├── README.TXT │ │ └── RuntimeExceptionModule.sln │ └── UICustomizationSample │ │ ├── Readme.txt │ │ ├── UICustomizationSample.c │ │ ├── UICustomizationSample.sln │ │ └── UICustomizationSample.vcproj ├── winnt │ ├── perflogsalert │ │ └── datacollectorset │ │ │ ├── Datacollectorset.cpp │ │ │ ├── Datacollectorset.sln │ │ │ ├── Datacollectorset.vbs │ │ │ ├── Datacollectorset.vcproj │ │ │ └── Readme.txt │ └── perftool │ │ ├── Makefile │ │ ├── pdh │ │ ├── Makefile │ │ ├── proclist │ │ │ ├── Makefile │ │ │ ├── ProcList.Rc │ │ │ └── ProcList.c │ │ └── statlist │ │ │ ├── AboutDlg.c │ │ │ ├── AboutDlg.h │ │ │ ├── Help.Bmp │ │ │ ├── MainWnd.c │ │ │ ├── MainWnd.h │ │ │ ├── Makefile │ │ │ ├── ReadMe.Txt │ │ │ ├── Resource.h │ │ │ ├── Small.Ico │ │ │ ├── StatList.Bmp │ │ │ ├── StatList.Cnt │ │ │ ├── StatList.Def │ │ │ ├── StatList.Hpj │ │ │ ├── StatList.Ico │ │ │ ├── StatList.Rc │ │ │ ├── StatList.Rtf │ │ │ ├── StatList.c │ │ │ ├── StatList.h │ │ │ ├── StatList.hlp │ │ │ ├── WinUtils.c │ │ │ └── WinUtils.h │ │ └── perfdlls │ │ ├── Makefile │ │ ├── appmem │ │ ├── Makefile │ │ ├── ReadMe.Txt │ │ ├── appdll │ │ │ ├── AppMema.Def │ │ │ ├── AppMema.Rc │ │ │ ├── AppMema.c │ │ │ ├── AppMema.h │ │ │ ├── DllInit.c │ │ │ └── Makefile │ │ ├── inc │ │ │ └── AppMemi.h │ │ ├── perfdll │ │ │ ├── AppMem.Def │ │ │ ├── DataMem.c │ │ │ ├── DataMem.h │ │ │ ├── LEAKYBIN.HLP │ │ │ ├── LeakyBin.Bmp │ │ │ ├── LeakyBin.Cnt │ │ │ ├── LeakyBin.Hpj │ │ │ ├── LeakyBin.Ico │ │ │ ├── LeakyBin.Rc │ │ │ ├── LeakyBin.Rtf │ │ │ ├── LeakyBin.c │ │ │ ├── LeakyBin.h │ │ │ ├── Makefile │ │ │ ├── MemCtrs.Mc │ │ │ ├── PerfUtil.c │ │ │ ├── PerfUtil.h │ │ │ ├── Perfmem.Rc │ │ │ ├── Perfmem.c │ │ │ ├── Perfmsg.h │ │ │ ├── ReadMe.Txt │ │ │ ├── Resource.h │ │ │ ├── ShareMem.c │ │ │ └── Small.Ico │ │ └── pub │ │ │ ├── AppMem.Ini │ │ │ ├── AppMem.Reg │ │ │ ├── AppMem.h │ │ │ └── MemCtrnm.h │ │ ├── leakybin │ │ ├── LEAKYBIN.HLP │ │ ├── LeakyBin.Bmp │ │ ├── LeakyBin.Cnt │ │ ├── LeakyBin.Hpj │ │ ├── LeakyBin.Ico │ │ ├── LeakyBin.Rc │ │ ├── LeakyBin.Rtf │ │ ├── LeakyBin.c │ │ ├── LeakyBin.h │ │ ├── Makefile │ │ ├── ReadMe.Txt │ │ ├── Resource.h │ │ └── Small.Ico │ │ └── perfgen │ │ ├── DataGen.c │ │ ├── DataGen.h │ │ ├── GenCtrnm.h │ │ ├── GenCtrs.Mc │ │ ├── Makefile │ │ ├── PerfUtil.c │ │ ├── PerfUtil.h │ │ ├── Perfgen.Def │ │ ├── Perfgen.Ini │ │ ├── Perfgen.Rc │ │ ├── Perfgen.Reg │ │ ├── Perfgen.c │ │ ├── Perfmsg.h │ │ └── ReadMe.Txt ├── winsat │ ├── initiateassessment │ │ └── cpp │ │ │ ├── InitiateAssessment.cpp │ │ │ ├── InitiateAssessment.sln │ │ │ ├── InitiateAssessment.vcproj │ │ │ └── ReadMe.txt │ └── querywinsat │ │ ├── cpp │ │ ├── QueryWinSAT.cpp │ │ ├── QueryWinSAT.sln │ │ ├── QueryWinSAT.vcproj │ │ └── ReadMe.txt │ │ └── js │ │ ├── QueryWinsat.js │ │ └── ReadMe.txt └── wtsapi │ ├── API.Cpp │ ├── API.Rc │ ├── API.h │ ├── APIDoc.Cpp │ ├── APIDoc.h │ ├── APIView.Cpp │ ├── APIView.h │ ├── MainFrm.Cpp │ ├── MainFrm.h │ ├── Makefile │ ├── MessageDlg.Cpp │ ├── MessageDlg.h │ ├── ProcessDlg.Cpp │ ├── ProcessDlg.h │ ├── QueryDlg.Cpp │ ├── QueryDlg.h │ ├── ReadMe.Txt │ ├── Resource.h │ ├── ServerDlg.Cpp │ ├── ServerDlg.h │ ├── SessionDlg.Cpp │ ├── SessionDlg.h │ ├── ShutdownDlg.Cpp │ ├── ShutdownDlg.h │ ├── StdAfx.Cpp │ ├── StdAfx.h │ ├── WaitDlg.Cpp │ ├── WaitDlg.h │ ├── WaitSystemDlg.Cpp │ ├── WaitSystemDlg.h │ ├── res │ ├── API.Ico │ ├── API.Rc2 │ ├── APIDoc.Ico │ └── Toolbar.Bmp │ ├── tssysinf │ ├── Client.Reg │ ├── Makefile │ ├── ReadMe.Txt │ ├── SysInf_C.Def │ ├── SysInf_C.Rc │ ├── SysInf_C.c │ ├── SysInfo.h │ ├── client │ │ ├── Client.Reg │ │ ├── Makefile │ │ ├── SysInf_C.Def │ │ ├── SysInf_C.Rc │ │ └── SysInf_C.c │ ├── inc │ │ └── SysInfo.h │ └── server │ │ ├── Makefile │ │ ├── Server.Reg │ │ ├── SysInf_S.Rc │ │ └── SysInf_S.c │ └── tst4wts │ ├── Makefile │ ├── ReadMe.Txt │ ├── Tst4Wts.Rc │ └── Tst4Wts.c ├── winui ├── CWMFEx │ ├── CWMFExReceiver │ │ ├── CWMFExReceiver.cpp │ │ ├── CWMFExReceiver.vcproj │ │ ├── ReadMe.txt │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ ├── CWMFExSender │ │ ├── CWMFExSender.cpp │ │ ├── CWMFExSender.vcproj │ │ ├── ReadMe.txt │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ ├── ChangeWindowMessageFilterEx.sln │ ├── Include │ │ └── CWMFExTest.h │ └── ReadMe.txt ├── ChooseFont │ ├── ChooseFont.cpp │ ├── ChooseFont.sln │ ├── ChooseFont.vcproj │ └── ReadMe.txt ├── Location │ ├── LocateMe.gadget │ │ ├── LocateMe.htm │ │ ├── ReadMe.txt │ │ └── gadget.xml │ ├── LocationEvents │ │ ├── LocationCallback.cpp │ │ ├── LocationCallback.h │ │ ├── LocationEvents.cpp │ │ ├── LocationEvents.sln │ │ ├── LocationEvents.vcproj │ │ └── ReadMe.txt │ ├── SetLocation │ │ ├── LocationReportObject.cpp │ │ ├── LocationReportObject.h │ │ ├── ReadMe.txt │ │ ├── SetLocation.cpp │ │ ├── SetLocation.sln │ │ └── SetLocation.vcproj │ └── SimpleLocation │ │ ├── ReadMe.txt │ │ ├── SimpleLocation.cpp │ │ ├── SimpleLocation.sln │ │ └── SimpleLocation.vcproj ├── RegisterHotKey │ ├── ReadMe.txt │ ├── RegisterHotKey.cpp │ ├── RegisterHotKey.sln │ └── RegisterHotKey.vcproj ├── Sensors │ └── AmbientLightAware │ │ ├── AmbientLightAware.cpp │ │ ├── AmbientLightAware.h │ │ ├── AmbientLightAware.ico │ │ ├── AmbientLightAware.rc │ │ ├── AmbientLightAware.rc2 │ │ ├── AmbientLightAware.sln │ │ ├── AmbientLightAware.vcproj │ │ ├── AmbientLightAwareDlg.cpp │ │ ├── AmbientLightAwareDlg.h │ │ ├── AmbientLightAwareSensorEvents.cpp │ │ ├── AmbientLightAwareSensorEvents.h │ │ ├── AmbientLightAwareSensorManagerEvents.cpp │ │ ├── AmbientLightAwareSensorManagerEvents.h │ │ ├── ReadMe.txt │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ └── stdafx.h ├── WindowsRibbon │ ├── ContextPopup │ │ ├── CPP │ │ │ ├── Application.cpp │ │ │ ├── Application.h │ │ │ ├── CommandHandler.cpp │ │ │ ├── CommandHandler.h │ │ │ ├── ContextPopup.cpp │ │ │ ├── ContextPopup.h │ │ │ ├── ContextPopup.ico │ │ │ ├── ContextPopup.manifest │ │ │ ├── ContextPopup.rc │ │ │ ├── ContextPopup.sln │ │ │ ├── ContextPopup.vcproj │ │ │ ├── ContextPopup.xml │ │ │ ├── ContextUI.cpp │ │ │ ├── ContextUI.h │ │ │ ├── Resource.h │ │ │ ├── RibbonFramework.cpp │ │ │ ├── RibbonFramework.h │ │ │ ├── res │ │ │ │ ├── AddTableL.bmp │ │ │ │ ├── Button_Image.bmp │ │ │ │ ├── Copy.bmp │ │ │ │ ├── Cut.bmp │ │ │ │ ├── DeleteTableL.bmp │ │ │ │ ├── ExitL.bmp │ │ │ │ ├── GraphHH.bmp │ │ │ │ ├── OpenHH.bmp │ │ │ │ ├── Paste.bmp │ │ │ │ ├── PrintRelationshipsL.bmp │ │ │ │ └── delete.bmp │ │ │ └── small.ico │ │ └── ReadMe.txt │ ├── DropDownColorPicker │ │ ├── CPP │ │ │ ├── Application.cpp │ │ │ ├── Application.h │ │ │ ├── CommandHandler.cpp │ │ │ ├── CommandHandler.h │ │ │ ├── DropDownColorPicker.cpp │ │ │ ├── DropDownColorPicker.h │ │ │ ├── DropDownColorPicker.rc │ │ │ ├── DropDownColorPicker.sln │ │ │ ├── DropDownColorPicker.vcproj │ │ │ ├── Renderer.cpp │ │ │ ├── Renderer.h │ │ │ ├── Resource.h │ │ │ ├── RibbonFramework.cpp │ │ │ ├── RibbonFramework.h │ │ │ ├── res │ │ │ │ ├── DDCP.bmp │ │ │ │ ├── DDCP.ico │ │ │ │ ├── Delete.bmp │ │ │ │ └── Update.bmp │ │ │ └── ribbonmarkup.xml │ │ └── ReadMe.txt │ ├── FontControl │ │ ├── CPP │ │ │ ├── Application.cpp │ │ │ ├── Application.h │ │ │ ├── CommandHandler.cpp │ │ │ ├── CommandHandler.h │ │ │ ├── FontControl.cpp │ │ │ ├── FontControl.h │ │ │ ├── FontControl.ico │ │ │ ├── FontControl.manifest │ │ │ ├── FontControl.rc │ │ │ ├── FontControl.sln │ │ │ ├── FontControl.vcproj │ │ │ ├── MiniToolbar.cpp │ │ │ ├── MiniToolbar.h │ │ │ ├── PropertyStore.cpp │ │ │ ├── PropertyStore.h │ │ │ ├── Resource.h │ │ │ ├── RibbonFramework.cpp │ │ │ ├── RibbonFramework.h │ │ │ ├── RichEditMng.cpp │ │ │ ├── RichEditMng.h │ │ │ ├── res │ │ │ │ ├── Button_Image.bmp │ │ │ │ └── ExitL.bmp │ │ │ ├── ribbonmarkup.xml │ │ │ └── small.ico │ │ └── ReadMe.txt │ ├── Gallery │ │ ├── CPP │ │ │ ├── Application.cpp │ │ │ ├── Application.h │ │ │ ├── BorderSizeHandler.cpp │ │ │ ├── BorderSizeHandler.h │ │ │ ├── BorderStyleHandler.cpp │ │ │ ├── BorderStyleHandler.h │ │ │ ├── ButtonHandler.cpp │ │ │ ├── ButtonHandler.h │ │ │ ├── Gallery.cpp │ │ │ ├── Gallery.h │ │ │ ├── Gallery.ico │ │ │ ├── Gallery.rc │ │ │ ├── Gallery.sln │ │ │ ├── Gallery.vcproj │ │ │ ├── LayoutHandler.cpp │ │ │ ├── LayoutHandler.h │ │ │ ├── PropertySet.cpp │ │ │ ├── PropertySet.h │ │ │ ├── Renderer.cpp │ │ │ ├── Renderer.h │ │ │ ├── Resource.h │ │ │ ├── RibbonFramework.cpp │ │ │ ├── RibbonFramework.h │ │ │ ├── ShapeHandler.cpp │ │ │ ├── ShapeHandler.h │ │ │ ├── SizeAndColorHandler.cpp │ │ │ ├── SizeAndColorHandler.h │ │ │ ├── gallery.manifest │ │ │ ├── gallery.xml │ │ │ ├── res │ │ │ │ ├── blue_120.bmp │ │ │ │ ├── blue_144.bmp │ │ │ │ ├── blue_192.bmp │ │ │ │ ├── blue_96.bmp │ │ │ │ ├── dashBorder_120.bmp │ │ │ │ ├── dashBorder_144.bmp │ │ │ │ ├── dashBorder_192.bmp │ │ │ │ ├── dashBorder_96.bmp │ │ │ │ ├── diamond_120.bmp │ │ │ │ ├── diamond_144.bmp │ │ │ │ ├── diamond_192.bmp │ │ │ │ ├── diamond_96.bmp │ │ │ │ ├── ellipse_120.bmp │ │ │ │ ├── ellipse_144.bmp │ │ │ │ ├── ellipse_192.bmp │ │ │ │ ├── ellipse_96.bmp │ │ │ │ ├── green_120.bmp │ │ │ │ ├── green_144.bmp │ │ │ │ ├── green_192.bmp │ │ │ │ ├── green_96.bmp │ │ │ │ ├── large_120.bmp │ │ │ │ ├── large_144.bmp │ │ │ │ ├── large_192.bmp │ │ │ │ ├── large_96.bmp │ │ │ │ ├── medium_120.bmp │ │ │ │ ├── medium_144.bmp │ │ │ │ ├── medium_192.bmp │ │ │ │ ├── medium_96.bmp │ │ │ │ ├── noBorder_120.bmp │ │ │ │ ├── noBorder_144.bmp │ │ │ │ ├── noBorder_192.bmp │ │ │ │ ├── noBorder_96.bmp │ │ │ │ ├── rectangle_120.bmp │ │ │ │ ├── rectangle_144.bmp │ │ │ │ ├── rectangle_192.bmp │ │ │ │ ├── rectangle_96.bmp │ │ │ │ ├── red_120.bmp │ │ │ │ ├── red_144.bmp │ │ │ │ ├── red_192.bmp │ │ │ │ ├── red_96.bmp │ │ │ │ ├── roundedRectangle_120.bmp │ │ │ │ ├── roundedRectangle_144.bmp │ │ │ │ ├── roundedRectangle_192.bmp │ │ │ │ ├── roundedRectangle_96.bmp │ │ │ │ ├── sizeAndColor_120.bmp │ │ │ │ ├── sizeAndColor_144.bmp │ │ │ │ ├── sizeAndColor_192.bmp │ │ │ │ ├── sizeAndColor_96.bmp │ │ │ │ ├── small_120.bmp │ │ │ │ ├── small_144.bmp │ │ │ │ ├── small_192.bmp │ │ │ │ ├── small_96.bmp │ │ │ │ ├── solidBorder_120.bmp │ │ │ │ ├── solidBorder_144.bmp │ │ │ │ ├── solidBorder_192.bmp │ │ │ │ └── solidBorder_96.bmp │ │ │ └── small.ico │ │ └── ReadMe.txt │ ├── HTMLEditRibbon │ │ ├── CPP │ │ │ ├── AddressCombo.cpp │ │ │ ├── AddressCombo.h │ │ │ ├── EditToolbar.cpp │ │ │ ├── EditToolbar.h │ │ │ ├── GetURL.cpp │ │ │ ├── GetURL.h │ │ │ ├── HTMLEdDoc.cpp │ │ │ ├── HTMLEdDoc.h │ │ │ ├── HTMLEdView.cpp │ │ │ ├── HTMLEdView.h │ │ │ ├── HTMLEdit.rc │ │ │ ├── InsertTbl.cpp │ │ │ ├── InsertTbl.h │ │ │ ├── MainFrm.cpp │ │ │ ├── MainFrm.h │ │ │ ├── Ribbon │ │ │ │ ├── Font.cpp │ │ │ │ ├── Font.h │ │ │ │ ├── MRU.cpp │ │ │ │ ├── MRU.h │ │ │ │ ├── Ribbon.cpp │ │ │ │ ├── Ribbon.h │ │ │ │ └── ribbonmarkup.xml │ │ │ ├── SourceView.cpp │ │ │ ├── SourceView.h │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── htmledit.cpp │ │ │ ├── htmledit.h │ │ │ ├── htmledit.sln │ │ │ ├── htmledit.vcproj │ │ │ ├── res │ │ │ │ ├── AddTableL.bmp │ │ │ │ ├── AddTableS.bmp │ │ │ │ ├── BulletsS.bmp │ │ │ │ ├── Button_Image.bmp │ │ │ │ ├── CenterJustifyS.bmp │ │ │ │ ├── ClosePreviewHH.bmp │ │ │ │ ├── Copy.bmp │ │ │ │ ├── Cut.bmp │ │ │ │ ├── DeleteTableL.bmp │ │ │ │ ├── DeleteTableS.bmp │ │ │ │ ├── HTMLEdDoc.ico │ │ │ │ ├── HyperlinkL.bmp │ │ │ │ ├── IndentS.bmp │ │ │ │ ├── InsertPictureL.bmp │ │ │ │ ├── LeftJustifyS.bmp │ │ │ │ ├── NumberedS.bmp │ │ │ │ ├── OpenFileL.bmp │ │ │ │ ├── OutdentS.bmp │ │ │ │ ├── Paste.bmp │ │ │ │ ├── PrintL.bmp │ │ │ │ ├── PrintPreviewL.bmp │ │ │ │ ├── RightJustifyS.bmp │ │ │ │ ├── SaveAsL.bmp │ │ │ │ ├── SaveL.bmp │ │ │ │ ├── SelectAllS.bmp │ │ │ │ ├── Toolbar.bmp │ │ │ │ ├── UndoS.bmp │ │ │ │ ├── htmledit.ico │ │ │ │ ├── htmledit.rc2 │ │ │ │ ├── id_toolb.bmp │ │ │ │ ├── newL.bmp │ │ │ │ └── viewsourceS.bmp │ │ │ └── resource.h │ │ └── ReadMe.txt │ └── SimpleRibbon │ │ ├── CPP │ │ ├── Application.cpp │ │ ├── Application.h │ │ ├── CommandHandler.cpp │ │ ├── CommandHandler.h │ │ ├── Resource.h │ │ ├── RibbonFramework.cpp │ │ ├── RibbonFramework.h │ │ ├── SimpleRibbon.cpp │ │ ├── SimpleRibbon.h │ │ ├── SimpleRibbon.ico │ │ ├── SimpleRibbon.manifest │ │ ├── SimpleRibbon.rc │ │ ├── SimpleRibbon.sln │ │ ├── SimpleRibbon.vcproj │ │ ├── SimpleRibbon.xml │ │ ├── res │ │ │ ├── AddTableL.bmp │ │ │ ├── AddTableS.bmp │ │ │ ├── Button_Image.bmp │ │ │ ├── Copy.bmp │ │ │ ├── Cut.bmp │ │ │ ├── DeleteTableL.bmp │ │ │ ├── DeleteTableS.bmp │ │ │ ├── ExitL.bmp │ │ │ ├── Paste.bmp │ │ │ ├── PrintRelationshipsL.bmp │ │ │ └── PrintRelationshipsS.bmp │ │ └── small.ico │ │ └── ReadMe.txt ├── WindowsSearch │ ├── CrawlScopeCommandLine │ │ ├── cmdline.cpp │ │ ├── csmcmd.cpp │ │ ├── csmcmd.h │ │ ├── csmcmd.sln │ │ └── csmcmd.vcproj │ ├── DSearch │ │ ├── App.ico │ │ ├── AssemblyInfo.cs │ │ ├── DSearch.cs │ │ ├── DSearch.csproj │ │ └── DSearch.sln │ ├── IFilterSample │ │ ├── Dll.cpp │ │ ├── FilterBase.h │ │ ├── FilterSample.cpp │ │ ├── FilterSample.def │ │ ├── FilterSample.sln │ │ ├── FilterSample.vcproj │ │ ├── ReadMe.txt │ │ └── SampleFile.filtersample │ ├── ReindexMatchingUrls │ │ ├── CmdLineBase.cpp │ │ ├── CmdLineBase.h │ │ ├── Reindex.sln │ │ ├── Reindex.vcproj │ │ └── reindex.cpp │ ├── SearchEvents │ │ ├── Eventing.sln │ │ ├── Eventing.vcproj │ │ ├── ReadMe.txt │ │ └── evtdemo.cpp │ ├── StructuredQuerySample │ │ ├── ReadMe.txt │ │ ├── StructuredQuerySample.cpp │ │ ├── StructuredQuerySample.sln │ │ └── StructuredQuerySample.vcproj │ ├── WSFromScript │ │ └── QueryEverything.vbs │ ├── WSOleDB │ │ ├── WSOleDB.cpp │ │ ├── WSOleDB.h │ │ ├── WSOleDB.sln │ │ ├── WSOleDB.vcproj │ │ ├── cmdline.cpp │ │ └── cmdline.h │ └── WSSQL │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── WSSQL.cs │ │ ├── WSSQL.csproj │ │ └── WSSQL.sln ├── clipboardchainimprovementapis │ ├── ClipboardChainImprovementAPIs.cpp │ ├── ClipboardChainImprovementAPIs.h │ ├── ClipboardChainImprovementAPIs.sln │ ├── ClipboardChainImprovementAPIs.vcproj │ ├── ReadMe.txt │ ├── stdafx.cpp │ └── stdafx.h ├── controls │ ├── common │ │ ├── property │ │ │ ├── BackColo.Ico │ │ │ ├── Property.Rc │ │ │ ├── Property.c │ │ │ ├── Property.h │ │ │ ├── Property.sln │ │ │ ├── Property.vcproj │ │ │ ├── ReadMe.Txt │ │ │ └── Resource.h │ │ ├── rebar │ │ │ ├── Backgrnd.Bmp │ │ │ ├── Logo.Bmp │ │ │ ├── MainIcon.Ico │ │ │ ├── ReadMe.Txt │ │ │ ├── Rebar.Rc │ │ │ ├── Rebar.c │ │ │ ├── Rebar.sln │ │ │ ├── Rebar.vcproj │ │ │ └── Resource.h │ │ └── vlistvw │ │ │ ├── Disk.Ico │ │ │ ├── ReadMe.Txt │ │ │ ├── Resource.h │ │ │ ├── VListVw.Rc │ │ │ ├── VListVw.c │ │ │ ├── VListVw.h │ │ │ ├── VListVw.sln │ │ │ ├── VListVw.vcproj │ │ │ └── Windows.Ico │ └── custom │ │ └── spincube │ │ ├── Paint.c │ │ ├── Paint.h │ │ ├── ReadMe.Txt │ │ ├── SpinCube.Def │ │ ├── SpinCube.Rc │ │ ├── SpinCube.c │ │ ├── SpinCube.h │ │ ├── SpinCube.sln │ │ ├── SpinCube.vcproj │ │ ├── SpinTest.Def │ │ ├── SpinTest.Dlg │ │ ├── SpinTest.Ico │ │ ├── SpinTest.Rc │ │ ├── SpinTest.c │ │ ├── SpinTest.h │ │ └── SpinTest.vcproj ├── cursor │ ├── BullsEye.Cur │ ├── Cursor.Def │ ├── Cursor.Rc │ ├── Cursor.c │ ├── Cursor.h │ └── Makefile ├── fulldrag │ ├── fulldrag.c │ ├── fulldrag.h │ └── makefile ├── helpapisample │ ├── cpp │ │ └── helpapisample_cpp │ │ │ ├── HelpAPISample_CPP.cpp │ │ │ ├── HelpAPISample_CPP.sln │ │ │ ├── HelpAPISample_CPP.vcproj │ │ │ ├── ReadMe.txt │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ ├── cs │ │ └── helpapisample_cs │ │ │ ├── HelpAPISample.cs │ │ │ ├── HelpAPISample_CS.csproj │ │ │ ├── HelpAPISample_CS.sln │ │ │ └── Readme.txt │ └── vb │ │ ├── HelpAPISample_VB.sln │ │ └── helpapisample │ │ ├── HelpAPISample_VB.vbproj │ │ ├── Module1.vb │ │ ├── Readme.txt │ │ └── my project │ │ ├── Application.Designer.vb │ │ ├── Application.myapp │ │ ├── AssemblyInfo.vb │ │ ├── Resources.Designer.vb │ │ ├── Resources.resx │ │ ├── Settings.Designer.vb │ │ └── Settings.settings ├── input │ ├── ime │ │ ├── fullime │ │ │ ├── CANDUI.C │ │ │ ├── FullIME.Ico │ │ │ ├── FullIME.Rc │ │ │ ├── FullIME.h │ │ │ ├── FullIME.sln │ │ │ ├── FullIME.vcproj │ │ │ ├── Global.C │ │ │ ├── ImeUI.C │ │ │ └── Main.C │ │ ├── halfime │ │ │ ├── HalfIME.Ico │ │ │ ├── HalfIME.Rc │ │ │ ├── HalfIME.h │ │ │ ├── HalfIME.sln │ │ │ ├── HalfIME.vcproj │ │ │ └── Main.C │ │ ├── imeapps │ │ │ ├── Comp.c │ │ │ ├── Data.c │ │ │ ├── IMEApps.Ico │ │ │ ├── IMEApps.Rc │ │ │ ├── IMEApps.Rcv │ │ │ ├── IMEApps.c │ │ │ ├── IMEApps.h │ │ │ ├── IMEApps.sln │ │ │ ├── IMEApps.vcproj │ │ │ ├── ImeMenu.c │ │ │ ├── Mode.c │ │ │ ├── Paint.c │ │ │ ├── Pch.h │ │ │ ├── Resource.h │ │ │ ├── Setcomp.c │ │ │ ├── Status.c │ │ │ ├── Subs.c │ │ │ ├── ToolBar.Bmp │ │ │ ├── ToolBar.c │ │ │ ├── ToolBar.h │ │ │ ├── Wapi.h │ │ │ └── Wsubs.c │ │ └── multiui │ │ │ ├── Data.C │ │ │ ├── Dlgs.C │ │ │ ├── MultiUI.C │ │ │ ├── MultiUI.Ico │ │ │ ├── MultiUI.Rc │ │ │ ├── MultiUI.h │ │ │ ├── MultiUI.sln │ │ │ ├── MultiUI.vcproj │ │ │ ├── MultiWnd.C │ │ │ └── Resource.h │ ├── mouseinfo │ │ ├── Makefile │ │ ├── MousInfo.Ico │ │ ├── MousInfo.Rc │ │ ├── MousInfo.c │ │ ├── MousInfo.h │ │ └── ReadMe.Txt │ └── tsf │ │ ├── textservice │ │ ├── extentmonitor │ │ │ ├── DllMain.cpp │ │ │ ├── DumpExtent.cpp │ │ │ ├── EditSession.h │ │ │ ├── ExtentMonitor.sln │ │ │ ├── ExtentMonitor.vcproj │ │ │ ├── ExtentVisual.cpp │ │ │ ├── ExtentVisual.h │ │ │ ├── Globals.cpp │ │ │ ├── Globals.h │ │ │ ├── LanguageBar.cpp │ │ │ ├── MemoryStream.cpp │ │ │ ├── MemoryStream.h │ │ │ ├── PopupWindow.cpp │ │ │ ├── PopupWindow.h │ │ │ ├── PreComp.cpp │ │ │ ├── RangeExtent.cpp │ │ │ ├── RangeExtent.h │ │ │ ├── RangeFromPoint.cpp │ │ │ ├── RangeFromPoint.h │ │ │ ├── Register.cpp │ │ │ ├── Resource.h │ │ │ ├── Server.cpp │ │ │ ├── TextEditSink.cpp │ │ │ ├── TextService.cpp │ │ │ ├── TextService.h │ │ │ ├── ThreadFocusSink.cpp │ │ │ ├── ThreadMgrEventSink.cpp │ │ │ ├── TsfExtentMonitor.def │ │ │ ├── TsfExtentMonitor.ico │ │ │ └── TsfExtentMonitor.rc │ │ ├── propertymonitor │ │ │ ├── DllMain.cpp │ │ │ ├── DumpProperties.cpp │ │ │ ├── EditSession.h │ │ │ ├── Globals.cpp │ │ │ ├── Globals.h │ │ │ ├── LanguageBar.cpp │ │ │ ├── MemoryStream.cpp │ │ │ ├── MemoryStream.h │ │ │ ├── PopupWindow.cpp │ │ │ ├── PopupWindow.h │ │ │ ├── PreComp.cpp │ │ │ ├── PropertyMonitor.sln │ │ │ ├── PropertyMonitor.vcproj │ │ │ ├── Register.cpp │ │ │ ├── Resource.h │ │ │ ├── Server.cpp │ │ │ ├── TextEditSink.cpp │ │ │ ├── TextService.cpp │ │ │ ├── TextService.h │ │ │ ├── ThreadFocusSink.cpp │ │ │ ├── ThreadMgrEventSink.cpp │ │ │ ├── TsfPropertyMonitor.def │ │ │ ├── TsfPropertyMonitor.ico │ │ │ └── TsfPropertyMonitor.rc │ │ ├── propertytextservice │ │ │ ├── CustomProperty.cpp │ │ │ ├── CustomPropertyStore.cpp │ │ │ ├── CustomPropertyStore.h │ │ │ ├── DllMain.cpp │ │ │ ├── EditSession.h │ │ │ ├── Globals.cpp │ │ │ ├── Globals.h │ │ │ ├── LanguageBar.cpp │ │ │ ├── PreComp.cpp │ │ │ ├── PropertyTextService.def │ │ │ ├── PropertyTextService.ico │ │ │ ├── PropertyTextService.rc │ │ │ ├── PropertyTextService.sln │ │ │ ├── PropertyTextService.vcproj │ │ │ ├── Register.cpp │ │ │ ├── Resource.h │ │ │ ├── Server.cpp │ │ │ ├── StaticCompactProperty.cpp │ │ │ ├── StaticProperty.cpp │ │ │ ├── TextEditSink.cpp │ │ │ ├── TextService.cpp │ │ │ ├── TextService.h │ │ │ └── ThreadMgrEventSink.cpp │ │ ├── textservice-step01 │ │ │ ├── DllMain.cpp │ │ │ ├── Globals.cpp │ │ │ ├── Globals.h │ │ │ ├── PreComp.cpp │ │ │ ├── Register.cpp │ │ │ ├── Resource.h │ │ │ ├── Server.cpp │ │ │ ├── TextService-Step01.sln │ │ │ ├── TextService-Step01.vcproj │ │ │ ├── TextService.cpp │ │ │ ├── TextService.def │ │ │ ├── TextService.h │ │ │ ├── TextService.ico │ │ │ └── TextService.rc │ │ ├── textservice-step02 │ │ │ ├── DllMain.cpp │ │ │ ├── Globals.cpp │ │ │ ├── Globals.h │ │ │ ├── PreComp.cpp │ │ │ ├── Register.cpp │ │ │ ├── Resource.h │ │ │ ├── Server.cpp │ │ │ ├── TextService-Step02.sln │ │ │ ├── TextService-Step02.vcproj │ │ │ ├── TextService.cpp │ │ │ ├── TextService.def │ │ │ ├── TextService.h │ │ │ ├── TextService.ico │ │ │ ├── TextService.rc │ │ │ └── ThreadMgrEventSink.cpp │ │ ├── textservice-step03 │ │ │ ├── DllMain.cpp │ │ │ ├── Globals.cpp │ │ │ ├── Globals.h │ │ │ ├── PreComp.cpp │ │ │ ├── Register.cpp │ │ │ ├── Resource.h │ │ │ ├── Server.cpp │ │ │ ├── TextEditSink.cpp │ │ │ ├── TextService-Step03.sln │ │ │ ├── TextService-Step03.vcproj │ │ │ ├── TextService.cpp │ │ │ ├── TextService.def │ │ │ ├── TextService.h │ │ │ ├── TextService.ico │ │ │ ├── TextService.rc │ │ │ └── ThreadMgrEventSink.cpp │ │ ├── textservice-step04 │ │ │ ├── DllMain.cpp │ │ │ ├── Globals.cpp │ │ │ ├── Globals.h │ │ │ ├── LanguageBar.cpp │ │ │ ├── PreComp.cpp │ │ │ ├── Register.cpp │ │ │ ├── Resource.h │ │ │ ├── Server.cpp │ │ │ ├── TextEditSink.cpp │ │ │ ├── TextService-Step04.sln │ │ │ ├── TextService-Step04.vcproj │ │ │ ├── TextService.cpp │ │ │ ├── TextService.def │ │ │ ├── TextService.h │ │ │ ├── TextService.ico │ │ │ ├── TextService.rc │ │ │ └── ThreadMgrEventSink.cpp │ │ ├── textservice-step05 │ │ │ ├── DllMain.cpp │ │ │ ├── EditSession.h │ │ │ ├── Globals.cpp │ │ │ ├── Globals.h │ │ │ ├── InsertHello.cpp │ │ │ ├── LanguageBar.cpp │ │ │ ├── PreComp.cpp │ │ │ ├── Register.cpp │ │ │ ├── Resource.h │ │ │ ├── Server.cpp │ │ │ ├── TextEditSink.cpp │ │ │ ├── TextService-Step05.sln │ │ │ ├── TextService-Step05.vcproj │ │ │ ├── TextService.cpp │ │ │ ├── TextService.def │ │ │ ├── TextService.h │ │ │ ├── TextService.ico │ │ │ ├── TextService.rc │ │ │ └── ThreadMgrEventSink.cpp │ │ ├── textservice-step06-1 │ │ │ ├── Compartment.cpp │ │ │ ├── Composition.cpp │ │ │ ├── DllMain.cpp │ │ │ ├── EditSession.h │ │ │ ├── EndComposition.cpp │ │ │ ├── Globals.cpp │ │ │ ├── Globals.h │ │ │ ├── KeyEventSink.cpp │ │ │ ├── KeyHandler.cpp │ │ │ ├── LanguageBar.cpp │ │ │ ├── PreComp.cpp │ │ │ ├── Register.cpp │ │ │ ├── Resource.h │ │ │ ├── Server.cpp │ │ │ ├── StartComposition.cpp │ │ │ ├── TextEditSink.cpp │ │ │ ├── TextService-Step06-1.sln │ │ │ ├── TextService-Step06-1.vcproj │ │ │ ├── TextService.cpp │ │ │ ├── TextService.def │ │ │ ├── TextService.h │ │ │ ├── TextService.ico │ │ │ ├── TextService.rc │ │ │ └── ThreadMgrEventSink.cpp │ │ ├── textservice-step06-2 │ │ │ ├── Compartment.cpp │ │ │ ├── Composition.cpp │ │ │ ├── DisplayAttribute.cpp │ │ │ ├── DisplayAttributeInfo.cpp │ │ │ ├── DisplayAttributeInfo.h │ │ │ ├── DisplayAttributeProvider.cpp │ │ │ ├── DllMain.cpp │ │ │ ├── EditSession.h │ │ │ ├── EndComposition.cpp │ │ │ ├── EnumDisplayAttributeInfo.cpp │ │ │ ├── EnumDisplayAttributeInfo.h │ │ │ ├── Globals.cpp │ │ │ ├── Globals.h │ │ │ ├── KeyEventSink.cpp │ │ │ ├── KeyHandler.cpp │ │ │ ├── LanguageBar.cpp │ │ │ ├── PreComp.cpp │ │ │ ├── Register.cpp │ │ │ ├── Resource.h │ │ │ ├── Server.cpp │ │ │ ├── StartComposition.cpp │ │ │ ├── TextEditSink.cpp │ │ │ ├── TextService-Step06-2.sln │ │ │ ├── TextService-Step06-2.vcproj │ │ │ ├── TextService.cpp │ │ │ ├── TextService.def │ │ │ ├── TextService.h │ │ │ ├── TextService.ico │ │ │ ├── TextService.rc │ │ │ └── ThreadMgrEventSink.cpp │ │ ├── textservice-step06-3 │ │ │ ├── CandidateList.cpp │ │ │ ├── CandidateList.h │ │ │ ├── CandidateWindow.cpp │ │ │ ├── CandidateWindow.h │ │ │ ├── Compartment.cpp │ │ │ ├── Composition.cpp │ │ │ ├── DisplayAttribute.cpp │ │ │ ├── DisplayAttributeInfo.cpp │ │ │ ├── DisplayAttributeInfo.h │ │ │ ├── DisplayAttributeProvider.cpp │ │ │ ├── DllMain.cpp │ │ │ ├── EditSession.h │ │ │ ├── EndComposition.cpp │ │ │ ├── EnumDisplayAttributeInfo.cpp │ │ │ ├── EnumDisplayAttributeInfo.h │ │ │ ├── Globals.cpp │ │ │ ├── Globals.h │ │ │ ├── KeyEventSink.cpp │ │ │ ├── KeyHandler.cpp │ │ │ ├── LanguageBar.cpp │ │ │ ├── PreComp.cpp │ │ │ ├── Register.cpp │ │ │ ├── Resource.h │ │ │ ├── Server.cpp │ │ │ ├── StartComposition.cpp │ │ │ ├── TextEditSink.cpp │ │ │ ├── TextService-Step06-3.sln │ │ │ ├── TextService-Step06-3.vcproj │ │ │ ├── TextService.cpp │ │ │ ├── TextService.def │ │ │ ├── TextService.h │ │ │ ├── TextService.ico │ │ │ ├── TextService.rc │ │ │ └── ThreadMgrEventSink.cpp │ │ ├── textservice-step06 │ │ │ ├── Compartment.cpp │ │ │ ├── DllMain.cpp │ │ │ ├── Globals.cpp │ │ │ ├── Globals.h │ │ │ ├── KeyEventSink.cpp │ │ │ ├── LanguageBar.cpp │ │ │ ├── PreComp.cpp │ │ │ ├── Register.cpp │ │ │ ├── Resource.h │ │ │ ├── Server.cpp │ │ │ ├── TextEditSink.cpp │ │ │ ├── TextService-Step06.sln │ │ │ ├── TextService-Step06.vcproj │ │ │ ├── TextService.cpp │ │ │ ├── TextService.def │ │ │ ├── TextService.h │ │ │ ├── TextService.ico │ │ │ ├── TextService.rc │ │ │ └── ThreadMgrEventSink.cpp │ │ └── uilessmode │ │ │ ├── CandidateList.cpp │ │ │ ├── CandidateList.h │ │ │ ├── CandidateWindow.cpp │ │ │ ├── CandidateWindow.h │ │ │ ├── Compartment.cpp │ │ │ ├── Composition.cpp │ │ │ ├── DisplayAttribute.cpp │ │ │ ├── DisplayAttributeInfo.cpp │ │ │ ├── DisplayAttributeInfo.h │ │ │ ├── DisplayAttributeProvider.cpp │ │ │ ├── DllMain.cpp │ │ │ ├── EditSession.h │ │ │ ├── EndComposition.cpp │ │ │ ├── EnumDisplayAttributeInfo.cpp │ │ │ ├── EnumDisplayAttributeInfo.h │ │ │ ├── Globals.cpp │ │ │ ├── Globals.h │ │ │ ├── KeyEventSink.cpp │ │ │ ├── KeyHandler.cpp │ │ │ ├── LanguageBar.cpp │ │ │ ├── PreComp.cpp │ │ │ ├── Register.cpp │ │ │ ├── Resource.h │ │ │ ├── Server.cpp │ │ │ ├── StartComposition.cpp │ │ │ ├── TextEditSink.cpp │ │ │ ├── TextService.cpp │ │ │ ├── TextService.def │ │ │ ├── TextService.h │ │ │ ├── TextService.ico │ │ │ ├── TextService.rc │ │ │ ├── ThreadMgrEventSink.cpp │ │ │ ├── UILessMode.sln │ │ │ └── UILessMode.vcproj │ │ └── tsfapps │ │ ├── immpad-interim │ │ ├── ImmPad-Interim.sln │ │ ├── ImmPad-Interim.vcproj │ │ ├── ImmPad.h │ │ ├── ImmPad.ico │ │ ├── ImmPad.rc │ │ ├── TextContainer.cpp │ │ ├── TextContainer.h │ │ ├── TextEditor.cpp │ │ ├── TextEditor.h │ │ ├── TextInputCtrl.cpp │ │ ├── TextInputCtrl.h │ │ ├── TextLayout.cpp │ │ ├── TextLayout.h │ │ ├── immpad.cpp │ │ ├── private.h │ │ ├── resource.h │ │ └── small.ico │ │ ├── immpad-level1 │ │ ├── ImmPad-Level1.sln │ │ ├── ImmPad-Level1.vcproj │ │ ├── ImmPad.h │ │ ├── ImmPad.ico │ │ ├── ImmPad.rc │ │ ├── TextContainer.cpp │ │ ├── TextContainer.h │ │ ├── TextEditor.cpp │ │ ├── TextEditor.h │ │ ├── TextInputCtrl.cpp │ │ ├── TextInputCtrl.h │ │ ├── TextLayout.cpp │ │ ├── TextLayout.h │ │ ├── immpad.cpp │ │ ├── private.h │ │ ├── resource.h │ │ └── small.ico │ │ ├── immpad-level2 │ │ ├── ImmPad-Level2.sln │ │ ├── ImmPad-Level2.vcproj │ │ ├── ImmPad.h │ │ ├── ImmPad.ico │ │ ├── ImmPad.rc │ │ ├── TextContainer.cpp │ │ ├── TextContainer.h │ │ ├── TextEditor.cpp │ │ ├── TextEditor.h │ │ ├── TextInputCtrl.cpp │ │ ├── TextInputCtrl.h │ │ ├── TextLayout.cpp │ │ ├── TextLayout.h │ │ ├── immpad.cpp │ │ ├── private.h │ │ ├── resource.h │ │ └── small.ico │ │ ├── immpad-level3-step2 │ │ ├── ImmPad-Level3-Step2.sln │ │ ├── ImmPad-Level3-Step2.vcproj │ │ ├── ImmPad.h │ │ ├── ImmPad.ico │ │ ├── ImmPad.rc │ │ ├── TextContainer.cpp │ │ ├── TextContainer.h │ │ ├── TextEditor.cpp │ │ ├── TextEditor.h │ │ ├── TextInputCtrl.cpp │ │ ├── TextInputCtrl.h │ │ ├── TextLayout.cpp │ │ ├── TextLayout.h │ │ ├── immpad.cpp │ │ ├── private.h │ │ ├── resource.h │ │ └── small.ico │ │ ├── immpad-level3-step3 │ │ ├── ImmPad-Level3-Step3.sln │ │ ├── ImmPad-Level3-Step3.vcproj │ │ ├── ImmPad.h │ │ ├── ImmPad.ico │ │ ├── ImmPad.rc │ │ ├── TextContainer.cpp │ │ ├── TextContainer.h │ │ ├── TextEditor.cpp │ │ ├── TextEditor.h │ │ ├── TextInputCtrl.cpp │ │ ├── TextInputCtrl.h │ │ ├── TextLayout.cpp │ │ ├── TextLayout.h │ │ ├── immpad.cpp │ │ ├── private.h │ │ ├── resource.h │ │ └── small.ico │ │ ├── immpad-level3 │ │ ├── ImmPad-Level3.sln │ │ ├── ImmPad-Level3.vcproj │ │ ├── ImmPad.h │ │ ├── ImmPad.ico │ │ ├── ImmPad.rc │ │ ├── TextContainer.cpp │ │ ├── TextContainer.h │ │ ├── TextEditor.cpp │ │ ├── TextEditor.h │ │ ├── TextInputCtrl.cpp │ │ ├── TextInputCtrl.h │ │ ├── TextLayout.cpp │ │ ├── TextLayout.h │ │ ├── immpad.cpp │ │ ├── private.h │ │ ├── resource.h │ │ └── small.ico │ │ ├── tsfpad-hybrid │ │ ├── DisplayAttribute.cpp │ │ ├── DisplayAttribute.h │ │ ├── TextContainer.cpp │ │ ├── TextContainer.h │ │ ├── TextEditSink.cpp │ │ ├── TextEditSink.h │ │ ├── TextEditor.cpp │ │ ├── TextEditor.h │ │ ├── TextInputCtrl.cpp │ │ ├── TextInputCtrl.h │ │ ├── TextLayout.cpp │ │ ├── TextLayout.h │ │ ├── TextStore.cpp │ │ ├── TextStore.h │ │ ├── TsfPad-Hybrid.sln │ │ ├── TsfPad-Hybrid.vcproj │ │ ├── TsfPad.cpp │ │ ├── TsfPad.h │ │ ├── TsfPad.ico │ │ ├── TsfPad.rc │ │ ├── private.h │ │ ├── resource.h │ │ └── small.ico │ │ ├── tsfpad-step1 │ │ ├── TextContainer.cpp │ │ ├── TextContainer.h │ │ ├── TextEditor.cpp │ │ ├── TextEditor.h │ │ ├── TextInputCtrl.cpp │ │ ├── TextInputCtrl.h │ │ ├── TextLayout.cpp │ │ ├── TextLayout.h │ │ ├── TextStore.cpp │ │ ├── TextStore.h │ │ ├── TsfPad-Step1.sln │ │ ├── TsfPad-Step1.vcproj │ │ ├── TsfPad.cpp │ │ ├── TsfPad.h │ │ ├── TsfPad.ico │ │ ├── TsfPad.rc │ │ ├── private.h │ │ ├── resource.h │ │ └── small.ico │ │ ├── tsfpad-step2 │ │ ├── DisplayAttribute.cpp │ │ ├── DisplayAttribute.h │ │ ├── TextContainer.cpp │ │ ├── TextContainer.h │ │ ├── TextEditSink.cpp │ │ ├── TextEditSink.h │ │ ├── TextEditor.cpp │ │ ├── TextEditor.h │ │ ├── TextInputCtrl.cpp │ │ ├── TextInputCtrl.h │ │ ├── TextLayout.cpp │ │ ├── TextLayout.h │ │ ├── TextStore.cpp │ │ ├── TextStore.h │ │ ├── TsfPad-Step2.sln │ │ ├── TsfPad-Step2.vcproj │ │ ├── TsfPad.cpp │ │ ├── TsfPad.h │ │ ├── TsfPad.ico │ │ ├── TsfPad.rc │ │ ├── private.h │ │ ├── resource.h │ │ └── small.ico │ │ ├── tsfpad-step3 │ │ ├── DisplayAttribute.cpp │ │ ├── DisplayAttribute.h │ │ ├── TextContainer.cpp │ │ ├── TextContainer.h │ │ ├── TextEditSink.cpp │ │ ├── TextEditSink.h │ │ ├── TextEditor.cpp │ │ ├── TextEditor.h │ │ ├── TextINputCtrl.h │ │ ├── TextInputCtrl.cpp │ │ ├── TextLayout.cpp │ │ ├── TextLayout.h │ │ ├── TextStore.cpp │ │ ├── TextStore.h │ │ ├── TsfPad-Step3.sln │ │ ├── TsfPad-Step3.vcproj │ │ ├── TsfPad.cpp │ │ ├── TsfPad.h │ │ ├── TsfPad.ico │ │ ├── TsfPad.rc │ │ ├── private.h │ │ ├── resource.h │ │ └── small.ico │ │ └── tsfpad-step4 │ │ ├── DisplayAttribute.cpp │ │ ├── DisplayAttribute.h │ │ ├── TextContainer.cpp │ │ ├── TextContainer.h │ │ ├── TextEditSink.cpp │ │ ├── TextEditSink.h │ │ ├── TextEditor.cpp │ │ ├── TextEditor.h │ │ ├── TextInputCtrl.cpp │ │ ├── TextInputCtrl.h │ │ ├── TextLayout.cpp │ │ ├── TextLayout.h │ │ ├── TextStore.cpp │ │ ├── TextStore.h │ │ ├── TsfPad-Step4.sln │ │ ├── TsfPad-Step4.vcproj │ │ ├── TsfPad.cpp │ │ ├── TsfPad.h │ │ ├── TsfPad.ico │ │ ├── TsfPad.rc │ │ ├── private.h │ │ ├── resource.h │ │ └── small.ico ├── magnification │ ├── CPP │ │ ├── MagnifierSample.cpp │ │ ├── MagnifierSample.sln │ │ └── MagnifierSample.vcproj │ └── readme.txt ├── msaa │ ├── CPP │ │ ├── AccServer.cpp │ │ ├── AccServer.h │ │ ├── AccServer.ico │ │ ├── AccServer.rc │ │ ├── AccServer.sln │ │ ├── AccServer.vcproj │ │ ├── CustomControl.cpp │ │ ├── CustomControl.h │ │ ├── EntryPoint.cpp │ │ ├── resource.h │ │ └── stdafx.h │ └── readme.txt ├── nls │ └── namednlsfunctions │ │ ├── NamedNlsFunctions.cpp │ │ ├── NamedNlsFunctions.sln │ │ ├── NamedNlsFunctions.vcproj │ │ └── ReadMe.txt ├── obscure │ ├── Obscure.c │ └── makefile ├── pictures │ ├── acquisitionplugin │ │ ├── AcquireSamplePlugin.cpp │ │ ├── AcquireSamplePlugin.def │ │ ├── AcquireSamplePlugin.ico │ │ ├── AcquireSamplePlugin.rc │ │ ├── AcquireSamplePlugin.reg │ │ ├── PluginSample.sln │ │ ├── PluginSample.vcproj │ │ ├── readme.txt │ │ └── resource.h │ ├── pictureacquisition │ │ ├── AcquireTest.cpp │ │ ├── AcquireTest.rc │ │ ├── AcquireTest.sln │ │ ├── AcquireTest.vcproj │ │ ├── PhotoAcq.ico │ │ ├── readme.txt │ │ └── resource.h │ ├── pictureacquisitionplugin │ │ ├── ReadOnlyPlugin.cpp │ │ ├── ReadOnlyPlugin.def │ │ ├── ReadOnlyPlugin.rc │ │ ├── ReadOnlyPlugin.sln │ │ ├── ReadOnlyPlugin.vcproj │ │ ├── Readme.txt │ │ └── resource.h │ └── transcodeimage │ │ ├── TranscodeImage.cpp │ │ ├── TranscodeImage.sln │ │ ├── TranscodeImage.vcproj │ │ └── readme.txt ├── printer │ ├── forms_sample │ │ ├── Forms_Sample.cpp │ │ ├── Forms_Sample.sln │ │ ├── Forms_Sample.vcproj │ │ └── readme.txt │ └── ptpcmxdw │ │ ├── PrintJobImagePassThrough.cpp │ │ ├── PrintJobMultiplePT.cpp │ │ ├── PrintJobSimple.cpp │ │ ├── image1.jpg │ │ ├── mxdw.cpp │ │ ├── mxdw.h │ │ ├── ptpc.cpp │ │ ├── ptpc.h │ │ ├── ptpcmxdw.cpp │ │ ├── ptpcmxdw.h │ │ ├── ptpcmxdw.rc │ │ ├── ptpcmxdw.sln │ │ ├── ptpcmxdw.vcproj │ │ ├── readme.txt │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── util.cpp │ │ └── util.h ├── rssscreensaver │ ├── CommonFeedListUtils.cs │ ├── FeedList.cs │ ├── OptionsForm.Designer.cs │ ├── OptionsForm.cs │ ├── OptionsForm.resx │ ├── Program.cs │ ├── Readme.txt │ ├── ScreenSaver.csproj │ ├── ScreenSaver.sln │ ├── ScreenSaverForm.Designer.cs │ ├── ScreenSaverForm.cs │ ├── ScreenSaverForm.resx │ ├── app.config │ ├── properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.designer.cs │ │ ├── Settings.settings │ │ └── app.manifest │ ├── resources │ │ ├── App.ico │ │ ├── DefaultRss.xml │ │ ├── SSaverBackground.jpg │ │ └── SSaverBackground2.jpg │ ├── rss │ │ ├── RssFeed.cs │ │ └── RssItem.cs │ └── ui │ │ ├── FeedListView.cs │ │ ├── IItem.cs │ │ ├── ItemDescriptionView.cs │ │ └── ItemListView.cs ├── sendto │ ├── makefile │ ├── readme.txt │ ├── sendto.c │ ├── sendto.h │ └── sendto.rc ├── shell │ ├── appplatform │ │ ├── ChangeNotifyWatcher │ │ │ ├── ChangeNotifyWatcher.cpp │ │ │ ├── ChangeNotifyWatcher.sln │ │ │ ├── ChangeNotifyWatcher.vcproj │ │ │ ├── DragDropHelpers.h │ │ │ ├── LogWindow.h │ │ │ ├── ResizeableDialog.h │ │ │ ├── ShellHelpers.h │ │ │ ├── readme.txt │ │ │ ├── resource.h │ │ │ └── resource.rc │ │ ├── CommonFileDialogModes │ │ │ ├── CommonFileDialogModes.cpp │ │ │ ├── CommonFileDialogModes.sln │ │ │ ├── CommonFileDialogModes.vcproj │ │ │ ├── ShellHelpers.h │ │ │ └── readme.txt │ │ ├── DragDropVisuals │ │ │ ├── DataObject.cpp │ │ │ ├── DataObject.h │ │ │ ├── DragDropHelpers.h │ │ │ ├── DragDropVisuals.cpp │ │ │ ├── DragDropVisuals.rc │ │ │ ├── DragDropVisuals.sln │ │ │ ├── DragDropVisuals.vcproj │ │ │ ├── ShellHelpers.h │ │ │ ├── readme.txt │ │ │ └── resource.h │ │ ├── ExecInExplorer │ │ │ ├── ExecInExplorer.cpp │ │ │ ├── ExecInExplorer.sln │ │ │ ├── ExecInExplorer.vcproj │ │ │ └── readme.txt │ │ ├── ExplorerBrowserCustomContents │ │ │ ├── ExplorerBrowserCustomContents.cpp │ │ │ ├── ExplorerBrowserCustomContents.sln │ │ │ ├── ExplorerBrowserCustomContents.vcproj │ │ │ ├── readme.txt │ │ │ ├── resource.h │ │ │ └── resources.rc │ │ ├── ExplorerBrowserSearch │ │ │ ├── ExplorerBrowserSearch.cpp │ │ │ ├── ExplorerBrowserSearch.sln │ │ │ ├── ExplorerBrowserSearch.vcproj │ │ │ ├── ResizeableDialog.h │ │ │ ├── ShellHelpers.h │ │ │ ├── clear.bmp │ │ │ ├── clearhot.bmp │ │ │ ├── clearwh.bmp │ │ │ ├── readme.txt │ │ │ ├── resource.h │ │ │ ├── resources.rc │ │ │ ├── search.bmp │ │ │ └── searchwh.bmp │ │ ├── FileOperationProgressSink │ │ │ ├── FileOperationProgressSinkSample.sln │ │ │ ├── FileOperationProgressSinkSample.vcproj │ │ │ ├── ProgressSinkSampleApp.cpp │ │ │ ├── ProgressSinkSampleApp.rc │ │ │ └── Resource.h │ │ ├── ParsingWithParameters │ │ │ ├── ParsingWithParameters.cpp │ │ │ ├── ParsingWithParameters.sln │ │ │ ├── ParsingWithParameters.vcproj │ │ │ ├── ShellHelpers.h │ │ │ └── readme.txt │ │ ├── PropertyEdit │ │ │ ├── PropertyEdit.cpp │ │ │ ├── PropertyEdit.sln │ │ │ ├── PropertyEdit.vcproj │ │ │ └── readme.txt │ │ ├── ShellLibraryBackup │ │ │ ├── ShellLibraryBackup.cpp │ │ │ ├── ShellLibraryBackup.rc │ │ │ ├── ShellLibraryBackup.sln │ │ │ ├── ShellLibraryBackup.vcproj │ │ │ ├── readme.txt │ │ │ └── resource.h │ │ ├── ShellLibraryCommandLine │ │ │ ├── CmdLineBase.cpp │ │ │ ├── CmdLineBase.h │ │ │ ├── ShellLibraryCommandLine.cpp │ │ │ ├── ShellLibraryCommandLine.sln │ │ │ ├── ShellLibraryCommandLine.vcproj │ │ │ └── readme.txt │ │ ├── ShellStorage │ │ │ ├── ShellStorage.cpp │ │ │ ├── ShellStorage.sln │ │ │ ├── ShellStorage.vcproj │ │ │ └── readme.txt │ │ ├── UsingImageFactory │ │ │ ├── ImageFactorySample.cpp │ │ │ ├── ImageFactorySample.rc │ │ │ ├── ImageFactorySample.sln │ │ │ ├── ImageFactorySample.vcproj │ │ │ ├── ReadMe.txt │ │ │ └── resource.h │ │ ├── UsingThumbnailProviders │ │ │ ├── ReadMe.txt │ │ │ ├── ThumbnailProvider.cpp │ │ │ ├── ThumbnailProvider.sln │ │ │ └── ThumbnailProvider.vcproj │ │ ├── aerowizards │ │ │ ├── MigrationToAeroWizardsSDKSampleReadMe.txt │ │ │ └── migratingtoaerowizardssdksample │ │ │ │ ├── MigratingToAeroWizards.doc │ │ │ │ ├── aerowizard │ │ │ │ ├── AeroWiz.cpp │ │ │ │ ├── AeroWiz.exe.manifest │ │ │ │ ├── AeroWiz.rc │ │ │ │ ├── AeroWiz.sln │ │ │ │ ├── AeroWiz.vcproj │ │ │ │ ├── Header.bmp │ │ │ │ ├── Watermrk.bmp │ │ │ │ ├── notepad.ico │ │ │ │ └── resource.h │ │ │ │ └── wizard97 │ │ │ │ ├── Header.bmp │ │ │ │ ├── Watermrk.bmp │ │ │ │ ├── Wizard97.cpp │ │ │ │ ├── Wizard97.exe.manifest │ │ │ │ ├── Wizard97.rc │ │ │ │ ├── Wizard97.sln │ │ │ │ ├── Wizard97.vcproj │ │ │ │ ├── notepad.ico │ │ │ │ └── resource.h │ │ ├── commonfiledialog │ │ │ ├── CommonFileDialogApp.cpp │ │ │ ├── CommonFileDialogSDKSample.sln │ │ │ ├── CommonFileDialogSDKSample.vcproj │ │ │ └── readme.txt │ │ ├── fileisinuse │ │ │ ├── FileIsInUseSample.sln │ │ │ ├── FileIsInUseSample.vcproj │ │ │ ├── IFileIsInUse_sample.docx │ │ │ ├── fileisinusesample.cpp │ │ │ ├── fileisinusesample.rc │ │ │ └── resource.h │ │ ├── fileoperations │ │ │ ├── FileOperationSDKSampleReadMe.txt │ │ │ ├── FileOperationSample.cpp │ │ │ ├── FileOperationSample.sln │ │ │ └── FileOperationSample.vcproj │ │ ├── knownfolders │ │ │ ├── KnownFolderAPISDKSampleReadMe.txt │ │ │ ├── KnownFolders.sln │ │ │ ├── KnownFolders.vcproj │ │ │ ├── handler_24bit.ico │ │ │ ├── kfdef.reg │ │ │ ├── kfexplorer.cpp │ │ │ ├── kfexplorer.rc │ │ │ └── resource.h │ │ ├── namespacetreecontrol │ │ │ ├── NameSpaceTreeSample.cpp │ │ │ ├── NameSpaceTreeSample.rc │ │ │ ├── NamespaceTreeSDKSample.sln │ │ │ ├── NamespaceTreeSDKSample.vcproj │ │ │ ├── readme.txt │ │ │ └── resource.h │ │ ├── propertyschemas │ │ │ ├── PropSchema.cpp │ │ │ ├── PropSchema.sln │ │ │ ├── PropSchema.vcproj │ │ │ └── readme.txt │ │ ├── searchfolder │ │ │ ├── ReadMe.txt │ │ │ ├── SearchFolder.cpp │ │ │ ├── SearchFolder.sln │ │ │ └── SearchFolder.vcproj │ │ └── taskdialogs │ │ │ ├── Resource.h │ │ │ ├── TaskDialogSDKSample.cpp │ │ │ ├── TaskDialogSDKSample.rc │ │ │ ├── TaskDialogSDKSample.sln │ │ │ └── TaskDialogSDKSample.vcproj │ ├── appshellintegration │ │ ├── AppUserModelIDWindowProperty │ │ │ ├── AppUserModelIDWindowProperty.cpp │ │ │ ├── AppUserModelIDWindowProperty.ico │ │ │ ├── AppUserModelIDWindowProperty.rc │ │ │ ├── AppUserModelIDWindowProperty.sln │ │ │ ├── AppUserModelIDWindowProperty.vcproj │ │ │ ├── DeclareDPIAware.manifest │ │ │ ├── ReadMe.txt │ │ │ └── resource.h │ │ ├── AutomaticJumpList │ │ │ ├── AutomaticJumpListSample.cpp │ │ │ ├── AutomaticJumpListSample.ico │ │ │ ├── AutomaticJumpListSample.rc │ │ │ ├── AutomaticJumpListSample.sln │ │ │ ├── AutomaticJumpListSample.vcproj │ │ │ ├── DeclareDPIAware.manifest │ │ │ ├── FileRegistrations.h │ │ │ ├── ReadMe.txt │ │ │ └── resource.h │ │ ├── CreateProcessVerb │ │ │ ├── CreateProcessVerb.cpp │ │ │ ├── CreateProcessVerb.sln │ │ │ ├── CreateProcessVerb.vcproj │ │ │ ├── RegisterExtension.cpp │ │ │ ├── RegisterExtension.h │ │ │ └── readme.txt │ │ ├── CustomJumpList │ │ │ ├── CustomJumpListSample.cpp │ │ │ ├── CustomJumpListSample.ico │ │ │ ├── CustomJumpListSample.rc │ │ │ ├── CustomJumpListSample.sln │ │ │ ├── CustomJumpListSample.vcproj │ │ │ ├── DeclareDPIAware.manifest │ │ │ ├── FileRegistrations.h │ │ │ ├── ReadMe.txt │ │ │ └── resource.h │ │ ├── DropTargetVerb │ │ │ ├── DropTargetVerb.cpp │ │ │ ├── DropTargetVerb.sln │ │ │ ├── DropTargetVerb.vcproj │ │ │ ├── RegisterExtension.cpp │ │ │ ├── RegisterExtension.h │ │ │ ├── ShellHelpers.h │ │ │ ├── VerbHelpers.h │ │ │ └── readme.txt │ │ ├── ExecuteCommandVerb │ │ │ ├── ExecuteCommand.sln │ │ │ ├── ExecuteCommand.vcproj │ │ │ ├── ExecuteCommandVerb.cpp │ │ │ ├── RegisterExtension.cpp │ │ │ ├── RegisterExtension.h │ │ │ ├── ShellHelpers.h │ │ │ ├── VerbHelpers.h │ │ │ └── readme.txt │ │ ├── ExplorerCommandVerb │ │ │ ├── Dll.def │ │ │ ├── Dll.h │ │ │ ├── ExplorerCommandStateHandler.cpp │ │ │ ├── ExplorerCommandVerb.cpp │ │ │ ├── ExplorerCommandVerb.sln │ │ │ ├── ExplorerCommandVerb.vcproj │ │ │ ├── RegisterExtension.cpp │ │ │ ├── RegisterExtension.h │ │ │ ├── ShellHelpers.h │ │ │ ├── dll.cpp │ │ │ └── readme.txt │ │ ├── HomeGroup │ │ │ ├── DeclareDPIAware.manifest │ │ │ ├── HomeGroup.cpp │ │ │ ├── HomeGroup.ico │ │ │ ├── HomeGroup.rc │ │ │ ├── HomeGroup.sln │ │ │ ├── HomeGroup.vcproj │ │ │ ├── ReadMe.txt │ │ │ └── Resource.h │ │ ├── IdealPropertyHandler │ │ │ ├── Dll.cpp │ │ │ ├── DocFile.ico │ │ │ ├── DocFileHandler.cpp │ │ │ ├── OpenMetadata.ico │ │ │ ├── OpenMetadataHandler.cpp │ │ │ ├── PropertyHandler.def │ │ │ ├── PropertyHandler.rc │ │ │ ├── PropertyHandler.sln │ │ │ ├── PropertyHandler.vcproj │ │ │ ├── PropertyStoreHelpers.cpp │ │ │ ├── PropertyStoreHelpers.h │ │ │ ├── RegisterExtension.cpp │ │ │ ├── RegisterExtension.h │ │ │ ├── Sample.openmetadata-ms │ │ │ ├── dll.h │ │ │ ├── readme.txt │ │ │ └── resource.h │ │ ├── NonDefaultDropMenuVerb │ │ │ ├── DefaultClassFactory.cpp │ │ │ ├── Dll.def │ │ │ ├── NonDefaultDropMenuVerb.cpp │ │ │ ├── NonDefaultDropMenuVerb.h │ │ │ ├── NonDefaultDropMenuVerb.rc │ │ │ ├── NonDefaultDropMenuVerb.rcv │ │ │ ├── NonDefaultDropMenuVerb.reg │ │ │ ├── NonDefaultDropMenuVerb.sln │ │ │ ├── NonDefaultDropMenuVerb.vcproj │ │ │ ├── Priv.h │ │ │ └── ReadMe.Txt │ │ ├── NotificationIcon │ │ │ ├── DeclareDPIAware.manifest │ │ │ ├── NotificationIcon.cpp │ │ │ ├── NotificationIcon.ico │ │ │ ├── NotificationIcon.rc │ │ │ ├── NotificationIcon.sln │ │ │ ├── NotificationIcon.vcproj │ │ │ ├── ReadMe.txt │ │ │ ├── Resource.h │ │ │ └── printer.bmp │ │ ├── PlayerVerbSample │ │ │ ├── ApplicationVerb.h │ │ │ ├── DragDropHelpers.h │ │ │ ├── PlayerVerbSample.cpp │ │ │ ├── PlayerVerbSample.rc │ │ │ ├── PlayerVerbSample.sln │ │ │ ├── PlayerVerbSample.vcproj │ │ │ ├── RegisterExtension.cpp │ │ │ ├── RegisterExtension.h │ │ │ ├── ResizeableDialog.h │ │ │ ├── ShellHelpers.h │ │ │ ├── readme.txt │ │ │ └── resource.h │ │ ├── PlaylistCreator │ │ │ ├── ApplicationVerb.h │ │ │ ├── COMHelpers.cpp │ │ │ ├── COMHelpers.h │ │ │ ├── PlaylistCreator.cpp │ │ │ ├── PlaylistCreator.sln │ │ │ ├── PlaylistCreator.vcproj │ │ │ ├── PropertyStoreReader.h │ │ │ ├── RegisterExtension.cpp │ │ │ ├── RegisterExtension.h │ │ │ ├── ShellHelpers.h │ │ │ └── readme.txt │ │ ├── PlaylistPropertyHandler │ │ │ ├── Dll.cpp │ │ │ ├── Dll.h │ │ │ ├── Exports.def │ │ │ ├── PlaylistPropertyHandler.cpp │ │ │ ├── PlaylistPropertyHandler.sln │ │ │ ├── PlaylistPropertyHandler.vcproj │ │ │ ├── PropertyStoreHelpers.cpp │ │ │ ├── PropertyStoreHelpers.h │ │ │ ├── RegisterExtension.cpp │ │ │ ├── RegisterExtension.h │ │ │ ├── Sample1.WPL │ │ │ ├── Sample1.zpl │ │ │ ├── Sample2.WPL │ │ │ ├── Sample2.zpl │ │ │ ├── Sample3.WPL │ │ │ ├── Sample3.zpl │ │ │ └── readme.txt │ │ ├── RecipePreviewHandler │ │ │ ├── PerfectSteaks.recipe │ │ │ ├── PreviewHandlerSDKSample.def │ │ │ ├── PreviewHandlerSDKSample.sln │ │ │ ├── PreviewHandlerSDKSample.vcproj │ │ │ ├── ReadMe.txt │ │ │ ├── RecipePreviewHandler.cpp │ │ │ └── dll.cpp │ │ ├── RecipePropertyHandler │ │ │ ├── Dll.cpp │ │ │ ├── Dll.h │ │ │ ├── PerfectSteaks.recipe │ │ │ ├── ReadMe.txt │ │ │ ├── RecipeProperties.propdesc │ │ │ ├── RecipePropertyHandler.cpp │ │ │ ├── RecipePropertyHandler.def │ │ │ ├── RecipePropertyHandler.sln │ │ │ ├── RecipePropertyHandler.vcproj │ │ │ ├── RegisterExtension.cpp │ │ │ └── RegisterExtension.h │ │ ├── RecipeThumbnailProvider │ │ │ ├── Dll.cpp │ │ │ ├── RecipeThumbnailProvider.cpp │ │ │ ├── RecipeThumbnailProvider.def │ │ │ ├── RecipeThumbnailProvider.vcproj │ │ │ ├── ThumbnailProviderSDKSampleReadMe.txt │ │ │ ├── ThumbnailProviderSample.sln │ │ │ └── chocolatechipcookies.recipe │ │ ├── SyncAndShareVerbs │ │ │ ├── readme.txt │ │ │ ├── share.reg │ │ │ ├── sync.reg │ │ │ ├── uninstallshare.reg │ │ │ └── uninstallsync.reg │ │ ├── TabThumbnails │ │ │ ├── DeclareDPIAware.manifest │ │ │ ├── TabApp.cpp │ │ │ ├── TabApp.h │ │ │ ├── TabApp.rc │ │ │ ├── TabThumbnails.sln │ │ │ ├── TabThumbnails.vcproj │ │ │ ├── TabWnd.cpp │ │ │ ├── TabWnd.h │ │ │ ├── readme.txt │ │ │ ├── resource.h │ │ │ └── tabapp.ico │ │ ├── TaskbarPeripheralStatus │ │ │ ├── DeclareDPIAware.manifest │ │ │ ├── PeripheralStatus.cpp │ │ │ ├── PeripheralStatus.ico │ │ │ ├── PeripheralStatus.rc │ │ │ ├── PeripheralStatus.sln │ │ │ ├── PeripheralStatus.vcproj │ │ │ ├── overlay1.ico │ │ │ ├── overlay2.ico │ │ │ └── resource.h │ │ ├── TaskbarThumbnailToolbar │ │ │ ├── ThumbnailToolbar.cpp │ │ │ ├── ThumbnailToolbar.ico │ │ │ ├── ThumbnailToolbar.rc │ │ │ ├── ThumbnailToolbar.sln │ │ │ ├── ThumbnailToolbar.vcproj │ │ │ ├── buttons120.bmp │ │ │ ├── buttons144.bmp │ │ │ ├── buttons96.bmp │ │ │ └── resource.h │ │ └── TextOnGlassBuffered │ │ │ ├── Resource.h │ │ │ ├── TextOnGlass.sln │ │ │ ├── TextOnGlass.vcproj │ │ │ ├── line.ico │ │ │ ├── line.rc │ │ │ ├── line_buffered.cpp │ │ │ └── stdafx.h │ ├── legacysamples │ │ ├── appbar │ │ │ ├── AppBar.Bmp │ │ │ ├── AppBar.Ico │ │ │ ├── AppBar.Rc │ │ │ ├── AppBar.cpp │ │ │ ├── AppBar.h │ │ │ ├── AppBar.sln │ │ │ ├── AppBar.vcproj │ │ │ ├── Base.Bmp │ │ │ ├── PropSht.cpp │ │ │ ├── Resource.h │ │ │ ├── Window.Bmp │ │ │ └── WndProc.cpp │ │ ├── enumdesk │ │ │ ├── enumdesk.cpp │ │ │ ├── enumdesk.h │ │ │ ├── enumdesk.rc │ │ │ ├── list.cpp │ │ │ ├── list.h │ │ │ ├── makefile │ │ │ ├── readme.txt │ │ │ ├── resource.h │ │ │ ├── split.cur │ │ │ ├── tree.cpp │ │ │ └── tree.h │ │ └── fakemenu │ │ │ ├── Fakemenu.sln │ │ │ ├── Fakemenu.vcproj │ │ │ └── fakemenu.cpp │ └── shellextensibility │ │ ├── OpenSearch │ │ ├── AdventureSearch.sln │ │ ├── App_Code │ │ │ ├── AdvWorks.dbml │ │ │ ├── AdvWorks.dbml.layout │ │ │ └── AdvWorks.designer.cs │ │ ├── Default.aspx │ │ ├── Default.aspx.cs │ │ ├── DisplayPicture.aspx │ │ ├── DisplayPicture.aspx.cs │ │ ├── GetOSDX.aspx │ │ ├── GetOSDX.aspx.cs │ │ ├── MasterPage.master │ │ ├── Photo Search.osdx │ │ ├── Product Search.osdx │ │ ├── ProductInfo.aspx │ │ ├── ProductInfo.aspx.cs │ │ ├── StyleSheet.css │ │ ├── aw.jpg │ │ ├── readme.txt │ │ ├── search.aspx │ │ ├── search.aspx.cs │ │ ├── searchrss.aspx │ │ ├── searchrss.aspx.cs │ │ └── web.config │ │ ├── deskbands │ │ ├── ClassFactory.cpp │ │ ├── ClassFactory.h │ │ ├── DeskBand.cpp │ │ ├── DeskBand.h │ │ ├── DeskBandSDKSample.def │ │ ├── DeskBandSDKSampleReadMe.txt │ │ ├── DeskbandSDKSample.sln │ │ ├── DeskbandSDKSample.vcproj │ │ └── DllMain.cpp │ │ └── explorerdataprovider │ │ ├── Category.cpp │ │ ├── Category.h │ │ ├── ContextMenu.cpp │ │ ├── Dll.cpp │ │ ├── ExplorerDataProvider.cpp │ │ ├── ExplorerDataProvider.def │ │ ├── ExplorerDataProvider.propdesc │ │ ├── ExplorerDataProvider.rc │ │ ├── ExplorerDataProvider.sln │ │ ├── ExplorerDataProvider.vcproj │ │ ├── FVCommands.cpp │ │ ├── FVCommands.h │ │ ├── Guid.h │ │ ├── Using the System Folder View.doc │ │ ├── Utils.cpp │ │ ├── Utils.h │ │ ├── readme.txt │ │ └── resource.h ├── sidebar │ ├── IDesktopGadget │ │ ├── IDesktopGadget.sln │ │ ├── IDesktopGadget.vcproj │ │ ├── README.txt │ │ └── main.cpp │ ├── sdk_docked.gadget │ │ ├── Docked.html │ │ ├── Gadget.xml │ │ ├── css │ │ │ └── Docked.css │ │ ├── images │ │ │ ├── aerologo.PNG │ │ │ ├── bg_docked.png │ │ │ ├── bg_undocked.png │ │ │ └── logo.png │ │ └── js │ │ │ └── Docked.js │ ├── sdk_flyout.gadget │ │ ├── Gadget.xml │ │ ├── css │ │ │ ├── example.css │ │ │ └── flyout.css │ │ ├── example.html │ │ ├── flyout.html │ │ ├── images │ │ │ ├── aerologo.PNG │ │ │ ├── background.png │ │ │ └── logo.png │ │ └── js │ │ │ ├── example.js │ │ │ └── flyout.js │ ├── sdk_graphicsapi.gadget │ │ ├── css │ │ │ └── graphicsapi.css │ │ ├── gadget.xml │ │ ├── graphicsapi.html │ │ ├── images │ │ │ ├── aerologo.png │ │ │ ├── background.png │ │ │ ├── image120.png │ │ │ ├── image144.png │ │ │ ├── image96.png │ │ │ ├── logo.png │ │ │ ├── navbar.png │ │ │ ├── next_down.png │ │ │ ├── next_hov.png │ │ │ ├── next_rest.png │ │ │ ├── pause_down.png │ │ │ ├── pause_hov.png │ │ │ ├── pause_rest.png │ │ │ ├── play_down.png │ │ │ ├── play_hov.png │ │ │ ├── play_rest.png │ │ │ ├── prev_down.png │ │ │ ├── prev_hov.png │ │ │ └── prev_rest.png │ │ └── js │ │ │ └── graphicsapi.js │ ├── sdk_helloworld.gadget │ │ ├── HelloWorld.html │ │ ├── gadget.xml │ │ └── images │ │ │ ├── aerologo.PNG │ │ │ ├── background.png │ │ │ └── logo.png │ ├── sdk_settings.gadget │ │ ├── Example.html │ │ ├── Gadget.xml │ │ ├── Settings.html │ │ ├── css │ │ │ ├── Example.css │ │ │ └── Settings.css │ │ ├── images │ │ │ ├── aerologo.PNG │ │ │ ├── background.png │ │ │ └── logo.png │ │ └── js │ │ │ ├── Example.js │ │ │ └── Settings.js │ └── sdk_systemdebug.gadget │ │ ├── Debug.html │ │ ├── Gadget.xml │ │ ├── Settings.html │ │ ├── css │ │ ├── Debug.css │ │ └── Settings.css │ │ ├── images │ │ ├── aerologo.PNG │ │ └── logo.png │ │ └── js │ │ ├── Debug.js │ │ └── Settings.js ├── sideshow │ ├── alarms │ │ ├── AlarmClient.cpp │ │ ├── AlarmClient.h │ │ ├── AlarmContent.cpp │ │ ├── AlarmContent.h │ │ ├── Alarms.cpp │ │ ├── Alarms.ico │ │ ├── Alarms.rc │ │ ├── Alarms.sln │ │ ├── Alarms.vcproj │ │ ├── ReadMe.txt │ │ ├── alarms.reg │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── helloworld │ │ ├── HelloWorld.cpp │ │ ├── HelloWorld.reg │ │ ├── HelloWorld.sln │ │ ├── HelloWorld.vcproj │ │ ├── HelloWorldClient.cpp │ │ ├── HelloWorldClient.h │ │ ├── HelloWorldContent.cpp │ │ ├── HelloWorldContent.h │ │ ├── ReadMe.txt │ │ ├── helloworld.ico │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── pictures │ │ ├── BaseClient.cpp │ │ ├── BaseClient.h │ │ ├── BaseContent.cpp │ │ ├── BaseContent.h │ │ ├── BaseEvents.cpp │ │ ├── BaseEvents.h │ │ ├── ImageContent.cpp │ │ ├── ImageContent.h │ │ ├── Picture.cpp │ │ ├── Picture.h │ │ ├── PictureClient.cpp │ │ ├── PictureClient.h │ │ ├── PictureContent.cpp │ │ ├── PictureContent.h │ │ ├── Pictures.cpp │ │ ├── Pictures.ico │ │ ├── Pictures.rc │ │ ├── Pictures.reg │ │ ├── Pictures.sln │ │ ├── Pictures.vcproj │ │ ├── ReadMe.txt │ │ ├── XmlDocument.cpp │ │ ├── XmlDocument.h │ │ ├── XmlElement.cpp │ │ ├── XmlElement.h │ │ ├── XmlNode.cpp │ │ ├── XmlNode.h │ │ ├── XmlNodeList.cpp │ │ ├── XmlNodeList.h │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ └── stdafx.h │ └── tasks │ │ ├── BaseClient.cpp │ │ ├── BaseClient.h │ │ ├── BaseContent.cpp │ │ ├── BaseContent.h │ │ ├── BaseEvents.cpp │ │ ├── BaseEvents.h │ │ ├── GlanceContent.cpp │ │ ├── GlanceContent.h │ │ ├── ReadMe.txt │ │ ├── Task.cpp │ │ ├── Task.h │ │ ├── TaskList.xml │ │ ├── Tasks.cpp │ │ ├── Tasks.ico │ │ ├── Tasks.idl │ │ ├── Tasks.ini │ │ ├── Tasks.rc │ │ ├── Tasks.rgs │ │ ├── Tasks.sln │ │ ├── Tasks.vcproj │ │ ├── TasksClient.cpp │ │ ├── TasksClient.h │ │ ├── TasksContent.cpp │ │ ├── TasksContent.h │ │ ├── TasksEvents.cpp │ │ ├── TasksEvents.h │ │ ├── TasksPropPage.cpp │ │ ├── TasksPropPage.h │ │ ├── WindowsSideShowTasks.def │ │ ├── WindowsSideShowTasks.rgs │ │ ├── XmlDocument.cpp │ │ ├── XmlDocument.h │ │ ├── XmlElement.cpp │ │ ├── XmlElement.h │ │ ├── XmlNode.cpp │ │ ├── XmlNode.h │ │ ├── XmlNodeList.cpp │ │ ├── XmlNodeList.h │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ └── stdafx.h ├── speech │ ├── cs │ │ ├── listbox │ │ │ ├── ListBox.sln │ │ │ ├── Readme.txt │ │ │ ├── speechlistbox │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── SpeechListBox.cs │ │ │ │ ├── SpeechListBox.csproj │ │ │ │ ├── SpeechListBox.resx │ │ │ │ └── small.ico │ │ │ └── speechlistboxapplication │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── SpeechListBoxApplication.cs │ │ │ │ ├── SpeechListBoxApplication.csproj │ │ │ │ ├── SpeechListBoxApplication.resx │ │ │ │ └── small.ico │ │ ├── simpletts │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Readme.txt │ │ │ ├── SimpleTTS.csproj │ │ │ ├── SimpleTTS.sln │ │ │ └── SimpleTts.cs │ │ └── speechrecognition │ │ │ ├── Info.xaml │ │ │ ├── Readme.txt │ │ │ ├── SpeechRecognition.csproj │ │ │ ├── SpeechRecognition.sln │ │ │ ├── SpeechRecognition.xaml │ │ │ ├── SpeechRecognitionWindow.xaml │ │ │ ├── SpeechRecognitionWindow.xaml.cs │ │ │ └── properties │ │ │ └── AssemblyInfo.cs │ ├── dictationpad │ │ ├── DictationPad.cpp │ │ ├── DictationPad.h │ │ ├── DictationPad.ico │ │ ├── DictationPad.rc │ │ ├── DictationPad.sln │ │ ├── DictationPad.vcproj │ │ ├── Readme.txt │ │ ├── candidatelist.cpp │ │ ├── candidatelist.h │ │ ├── chs_cmdmode.xml │ │ ├── chs_dictmode.xml │ │ ├── chs_dictpad.rc │ │ ├── cht_cmdmode.xml │ │ ├── cht_dictmode.xml │ │ ├── cht_dictpad.rc │ │ ├── cmdmode.xml │ │ ├── deu_cmdmode.xml │ │ ├── deu_dictmode.xml │ │ ├── deu_dictpad.rc │ │ ├── dictationrun.cpp │ │ ├── dictationrun.h │ │ ├── dictmode.xml │ │ ├── dictpad_sapi.cpp │ │ ├── phrasereplace.cpp │ │ ├── phrasereplace.h │ │ ├── recomgr.cpp │ │ ├── recomgr.h │ │ ├── resource.h │ │ ├── resultcontainer.cpp │ │ ├── resultcontainer.h │ │ ├── small.ico │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ ├── textrun.cpp │ │ ├── textrun.h │ │ ├── textrunlist.cpp │ │ ├── textrunlist.h │ │ ├── toolbar1.bmp │ │ └── version.rc2 │ ├── engines │ │ ├── samplesrengine │ │ │ ├── Readme.txt │ │ │ ├── SampleSrEngine.cpp │ │ │ ├── SampleSrEngine.def │ │ │ ├── SampleSrEngine.idl │ │ │ ├── SampleSrEngine.rc │ │ │ ├── SampleSrEngine.rgs │ │ │ ├── SampleSrEngine.sln │ │ │ ├── SampleSrEngine.vcproj │ │ │ ├── resource.h │ │ │ ├── srengalt.cpp │ │ │ ├── srengalt.h │ │ │ ├── srengalt.rgs │ │ │ ├── srengext.cpp │ │ │ ├── srengext.h │ │ │ ├── srengext.rgs │ │ │ ├── srengobj.cpp │ │ │ ├── srengobj.h │ │ │ ├── srengui.cpp │ │ │ ├── srengui.h │ │ │ ├── srengui.rgs │ │ │ ├── srengver.h │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ └── version.rc2 │ │ └── samplettsengine │ │ │ ├── Readme.txt │ │ │ ├── SampleTtsEngine.sln │ │ │ ├── makevoice │ │ │ ├── MakeVoice.cpp │ │ │ ├── MakeVoice.rc │ │ │ ├── MakeVoice.vcproj │ │ │ ├── anglais.wav │ │ │ ├── as.wav │ │ │ ├── blah.wav │ │ │ ├── computer_s.wav │ │ │ ├── default.wav │ │ │ ├── enter.wav │ │ │ ├── have.wav │ │ │ ├── he.wav │ │ │ ├── here.wav │ │ │ ├── je.wav │ │ │ ├── parler.wav │ │ │ ├── peut.wav │ │ │ ├── said.wav │ │ │ ├── sample.wav │ │ │ ├── selected.wav │ │ │ ├── she.wav │ │ │ ├── speak.wav │ │ │ ├── spoken.wav │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ ├── text.wav │ │ │ ├── the.wav │ │ │ ├── to.wav │ │ │ ├── tts.wav │ │ │ ├── type.wav │ │ │ ├── version.rc2 │ │ │ ├── voice.wav │ │ │ ├── wish.wav │ │ │ ├── wordlist.txt │ │ │ └── you.wav │ │ │ └── samplettsengine │ │ │ ├── SampleTtsEngine.cpp │ │ │ ├── SampleTtsEngine.def │ │ │ ├── SampleTtsEngine.idl │ │ │ ├── SampleTtsEngine.rc │ │ │ ├── SampleTtsEngine.vcproj │ │ │ ├── resource.h │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ ├── ttsengobj.cpp │ │ │ ├── ttsengobj.h │ │ │ ├── ttsengobj.rgs │ │ │ ├── ttsengver.h │ │ │ └── version.rc2 │ ├── reco │ │ ├── Readme.txt │ │ ├── Reco.sln │ │ ├── Reco.vcproj │ │ ├── chs_reco.rc │ │ ├── chs_sol.xml │ │ ├── cht_reco.rc │ │ ├── cht_sol.xml │ │ ├── deu_cardinals.xml │ │ ├── deu_reco.rc │ │ ├── eng_reco.rc │ │ ├── eng_sol.xml │ │ ├── esp_dates.xml │ │ ├── esp_reco.rc │ │ ├── fra_cardinals.xml │ │ ├── fra_reco.rc │ │ ├── itn_j.xml │ │ ├── jpn_reco.rc │ │ ├── jpn_sol.xml │ │ ├── kor_cardinals.xml │ │ ├── kor_reco.rc │ │ ├── lmadapt.cpp │ │ ├── reco.cpp │ │ ├── reco.h │ │ ├── reco.ico │ │ ├── reco.rc │ │ ├── resource.h │ │ ├── small.ico │ │ ├── sol.ENG.xml │ │ ├── sol.xml │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── version.rc2 │ ├── simpleaudio │ │ ├── Readme.txt │ │ ├── SimpleAudio.sln │ │ ├── SimpleAudio.vcproj │ │ ├── SpAudioPlug.cpp │ │ ├── SpAudioPlug.h │ │ ├── SpAudioPlug.rgs │ │ ├── resource.h │ │ ├── simpleaudio.cpp │ │ ├── simpleaudio.def │ │ ├── simpleaudio.idl │ │ ├── simpleaudio.rc │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── version.rc2 │ ├── simpledictation │ │ ├── Readme.txt │ │ ├── SimpleDictation.cpp │ │ ├── SimpleDictation.h │ │ ├── SimpleDictation.ico │ │ ├── SimpleDictation.rc │ │ ├── SimpleDictation.sln │ │ ├── SimpleDictation.vcproj │ │ ├── resource.h │ │ ├── small.ico │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── version.rc2 │ ├── simpletelephony │ │ ├── Readme.txt │ │ ├── SimpleTelephony.sln │ │ ├── SimpleTelephony.vcproj │ │ ├── callnot.cpp │ │ ├── callnot.h │ │ ├── operator.cpp │ │ ├── operator.h │ │ ├── resource.h │ │ ├── simpletelephony.ico │ │ ├── simpletelephony.rc │ │ └── version.rc2 │ ├── talkback │ │ ├── Readme.txt │ │ ├── TalkBack.sln │ │ ├── TalkBack.vcproj │ │ ├── talkback.cpp │ │ ├── talkback.ico │ │ ├── talkback.rc │ │ └── version.rc2 │ ├── ttsapplication │ │ ├── Readme.txt │ │ ├── TtsApplication.cpp │ │ ├── TtsApplication.h │ │ ├── TtsApplication.ico │ │ ├── TtsApplication.rc │ │ ├── TtsApplication.sln │ │ ├── TtsApplication.vcproj │ │ ├── childwin.cpp │ │ ├── dlgmain.cpp │ │ ├── globals.cpp │ │ ├── globals.h │ │ ├── res │ │ │ ├── appicon.ico │ │ │ ├── mic eyes closed.bmp │ │ │ ├── mic.bmp │ │ │ ├── mic_eyes_narrow.bmp │ │ │ ├── mic_mouth_10.bmp │ │ │ ├── mic_mouth_11.bmp │ │ │ ├── mic_mouth_12.bmp │ │ │ ├── mic_mouth_13.bmp │ │ │ ├── mic_mouth_2.bmp │ │ │ ├── mic_mouth_3.bmp │ │ │ ├── mic_mouth_4.bmp │ │ │ ├── mic_mouth_5.bmp │ │ │ ├── mic_mouth_6.bmp │ │ │ ├── mic_mouth_7.bmp │ │ │ ├── mic_mouth_8.bmp │ │ │ ├── mic_mouth_9.bmp │ │ │ ├── mouthclo.bmp │ │ │ ├── mouthmed.bmp │ │ │ ├── mouthnar.bmp │ │ │ ├── mouthop1.bmp │ │ │ ├── mouthop2.bmp │ │ │ ├── mouthop3.bmp │ │ │ └── mouthop4.bmp │ │ ├── resource.h │ │ └── version.rc2 │ └── tutorial │ │ ├── Tutorial.sln │ │ ├── coffeeshop0 │ │ ├── CoffeeShop0.cpp │ │ ├── CoffeeShop0.h │ │ ├── CoffeeShop0.ico │ │ ├── CoffeeShop0.rc │ │ ├── CoffeeShop0.sln │ │ ├── CoffeeShop0.vcproj │ │ ├── Readme.txt │ │ ├── coffee.bmp │ │ ├── coffee.xml │ │ ├── common.h │ │ ├── display.cpp │ │ ├── resource.h │ │ ├── small.ico │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── version.rc2 │ │ ├── coffeeshop1 │ │ ├── CoffeeShop1.cpp │ │ ├── CoffeeShop1.h │ │ ├── CoffeeShop1.ico │ │ ├── CoffeeShop1.rc │ │ ├── CoffeeShop1.sln │ │ ├── CoffeeShop1.vcproj │ │ ├── Readme.txt │ │ ├── coffee.bmp │ │ ├── coffee.xml │ │ ├── common.h │ │ ├── display.cpp │ │ ├── resource.h │ │ ├── small.ico │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── version.rc2 │ │ ├── coffeeshop2 │ │ ├── CoffeeShop2.cpp │ │ ├── CoffeeShop2.h │ │ ├── CoffeeShop2.ico │ │ ├── CoffeeShop2.rc │ │ ├── CoffeeShop2.sln │ │ ├── CoffeeShop2.vcproj │ │ ├── Readme.txt │ │ ├── coffee.bmp │ │ ├── coffee.xml │ │ ├── common.h │ │ ├── display.cpp │ │ ├── resource.h │ │ ├── small.ico │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── version.rc2 │ │ ├── coffeeshop3 │ │ ├── CoffeeShop3.cpp │ │ ├── CoffeeShop3.h │ │ ├── CoffeeShop3.ico │ │ ├── CoffeeShop3.rc │ │ ├── CoffeeShop3.sln │ │ ├── CoffeeShop3.vcproj │ │ ├── Readme.txt │ │ ├── coffee.bmp │ │ ├── coffee.xml │ │ ├── common.h │ │ ├── display.cpp │ │ ├── resource.h │ │ ├── small.ico │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── version.rc2 │ │ ├── coffeeshop4 │ │ ├── CoffeeShop4.cpp │ │ ├── CoffeeShop4.h │ │ ├── CoffeeShop4.ico │ │ ├── CoffeeShop4.rc │ │ ├── CoffeeShop4.sln │ │ ├── CoffeeShop4.vcproj │ │ ├── Readme.txt │ │ ├── coffee.bmp │ │ ├── coffee.xml │ │ ├── common.h │ │ ├── display.cpp │ │ ├── resource.h │ │ ├── small.ico │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── version.rc2 │ │ ├── coffeeshop5 │ │ ├── CoffeeShop5.cpp │ │ ├── CoffeeShop5.h │ │ ├── CoffeeShop5.ico │ │ ├── CoffeeShop5.rc │ │ ├── CoffeeShop5.sln │ │ ├── CoffeeShop5.vcproj │ │ ├── Readme.txt │ │ ├── coffee.bmp │ │ ├── coffee.xml │ │ ├── common.h │ │ ├── display.cpp │ │ ├── resource.h │ │ ├── small.ico │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── version.rc2 │ │ └── coffeeshop6 │ │ ├── CoffeeShop6.cpp │ │ ├── CoffeeShop6.h │ │ ├── CoffeeShop6.ico │ │ ├── CoffeeShop6.rc │ │ ├── CoffeeShop6.sln │ │ ├── CoffeeShop6.vcproj │ │ ├── Readme.txt │ │ ├── coffee.bmp │ │ ├── coffee.xml │ │ ├── common.h │ │ ├── display.cpp │ │ ├── resource.h │ │ ├── small.ico │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── version.rc2 ├── tallmenu │ ├── makefile │ ├── tallmenu.c │ ├── tallmenu.h │ └── tallmenu.rc ├── tsf │ ├── tsfapp │ │ ├── afxres.h │ │ ├── context.cpp │ │ ├── dataobj.cpp │ │ ├── dataobj.h │ │ ├── funcprov.cpp │ │ ├── globals.h │ │ ├── mainicon.ico │ │ ├── makefile │ │ ├── persist.cpp │ │ ├── propldr.cpp │ │ ├── propldr.h │ │ ├── resource.h │ │ ├── test.cpp │ │ ├── textstor.cpp │ │ ├── tsfapp.cpp │ │ ├── tsfapp.rc │ │ ├── tsfedit.cpp │ │ ├── tsfedit.h │ │ ├── tsfwnd.cpp │ │ ├── tsfwnd.h │ │ └── winres.h │ ├── tsfcase │ │ ├── case.cpp │ │ ├── case.def │ │ ├── case.h │ │ ├── case.ico │ │ ├── case.rc │ │ ├── dllmain.cpp │ │ ├── editsess.h │ │ ├── editsink.cpp │ │ ├── flipdoc.cpp │ │ ├── flipsel.cpp │ │ ├── globals.cpp │ │ ├── globals.h │ │ ├── hello.cpp │ │ ├── keys.cpp │ │ ├── langbar.cpp │ │ ├── makefile │ │ ├── precomp.cpp │ │ ├── readme.txt │ │ ├── register.cpp │ │ ├── resource.h │ │ ├── server.cpp │ │ ├── snoop.cpp │ │ ├── snoop.h │ │ └── tmgrsink.cpp │ ├── tsfcompart │ │ ├── afxres.h │ │ ├── compart.cpp │ │ ├── compart.rc │ │ ├── makefile │ │ ├── monitor.cpp │ │ ├── monitor.h │ │ ├── readme.txt │ │ ├── resource.h │ │ └── winres.h │ └── tsfmark │ │ ├── cleanup.cpp │ │ ├── compart.cpp │ │ ├── compose.cpp │ │ ├── dap.cpp │ │ ├── dllmain.cpp │ │ ├── editsess.h │ │ ├── editsink.cpp │ │ ├── globals.cpp │ │ ├── globals.h │ │ ├── keys.cpp │ │ ├── langbar.cpp │ │ ├── makefile │ │ ├── mark.cpp │ │ ├── mark.def │ │ ├── mark.h │ │ ├── mark.ico │ │ ├── mark.rc │ │ ├── precomp.cpp │ │ ├── property.cpp │ │ ├── pstore.cpp │ │ ├── pstore.h │ │ ├── readme.txt │ │ ├── register.cpp │ │ ├── resource.h │ │ ├── server.cpp │ │ └── tmgrsink.cpp └── uiautomation │ ├── UIAFragmentProvider │ ├── CPP │ │ ├── CustomControl.cpp │ │ ├── CustomControl.h │ │ ├── ListItemProvider.cpp │ │ ├── ListProvider.cpp │ │ ├── UIAFragmentProvider.cpp │ │ ├── UIAFragmentProvider.ico │ │ ├── UIAFragmentProvider.rc │ │ ├── UIAFragmentProvider.sln │ │ ├── UIAFragmentProvider.vcproj │ │ ├── UIAProviders.h │ │ ├── resource.h │ │ └── stdafx.h │ └── ReadMe.txt │ └── simpleuiaprovider │ ├── CPP │ ├── Control.cpp │ ├── Control.h │ ├── Provider.cpp │ ├── Provider.h │ ├── UIASimpleProvider.cpp │ ├── UIASimpleProvider.ico │ ├── UIASimpleProvider.rc │ ├── UIASimpleProvider.sln │ ├── UIASimpleProvider.vcproj │ ├── resource.h │ └── stdafx.h │ └── ReadMe.txt └── xps ├── FlowText ├── FlowText.sln ├── FlowText.vcproj ├── FlowTextMain.cpp ├── LayoutToCanvasBuilder.cpp ├── LayoutToCanvasBuilder.h ├── README.txt └── common.h ├── XpsLoadModifySave ├── XpsLoadModifySave.rc ├── XpsLoadModifySave.sln ├── XpsLoadModifySave.vcproj ├── main.cpp ├── readme.txt ├── resource.h └── sample1.xps ├── XpsOMPrint ├── README.txt ├── XpsOMPrint.sln ├── XpsOMPrint.vcproj └── main.cpp └── XpsRollup ├── README.txt ├── XpsRollup.sln ├── XpsRollup.vcproj └── main.cpp /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/README.md -------------------------------------------------------------------------------- /StartSamples.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/StartSamples.htm -------------------------------------------------------------------------------- /Touch/MTGestures/CS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/Touch/MTGestures/CS/Program.cs -------------------------------------------------------------------------------- /Touch/MTGestures/CS/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/Touch/MTGestures/CS/readme.txt -------------------------------------------------------------------------------- /Touch/MTGestures/cpp/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/Touch/MTGestures/cpp/Resource.h -------------------------------------------------------------------------------- /Touch/MTGestures/cpp/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/Touch/MTGestures/cpp/readme.txt -------------------------------------------------------------------------------- /begin/dll/Demo.Def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/dll/Demo.Def -------------------------------------------------------------------------------- /begin/dll/Demo.Rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/dll/Demo.Rc -------------------------------------------------------------------------------- /begin/dll/Demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/dll/Demo.c -------------------------------------------------------------------------------- /begin/dll/Demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/dll/Demo.h -------------------------------------------------------------------------------- /begin/dll/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/dll/Makefile -------------------------------------------------------------------------------- /begin/dll/ReadMe.Txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/dll/ReadMe.Txt -------------------------------------------------------------------------------- /begin/dll/Select.Def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/dll/Select.Def -------------------------------------------------------------------------------- /begin/dll/Select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/dll/Select.c -------------------------------------------------------------------------------- /begin/dll/Select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/dll/Select.h -------------------------------------------------------------------------------- /begin/sdkdiff/ErrorOut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/sdkdiff/ErrorOut.cpp -------------------------------------------------------------------------------- /begin/sdkdiff/ErrorOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/sdkdiff/ErrorOut.h -------------------------------------------------------------------------------- /begin/sdkdiff/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/sdkdiff/Makefile -------------------------------------------------------------------------------- /begin/sdkdiff/bar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/sdkdiff/bar.cpp -------------------------------------------------------------------------------- /begin/sdkdiff/compitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/sdkdiff/compitem.cpp -------------------------------------------------------------------------------- /begin/sdkdiff/compitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/sdkdiff/compitem.h -------------------------------------------------------------------------------- /begin/sdkdiff/complist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/sdkdiff/complist.cpp -------------------------------------------------------------------------------- /begin/sdkdiff/complist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/sdkdiff/complist.h -------------------------------------------------------------------------------- /begin/sdkdiff/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/sdkdiff/file.cpp -------------------------------------------------------------------------------- /begin/sdkdiff/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/sdkdiff/file.h -------------------------------------------------------------------------------- /begin/sdkdiff/findgoto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/sdkdiff/findgoto.cpp -------------------------------------------------------------------------------- /begin/sdkdiff/findgoto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/sdkdiff/findgoto.h -------------------------------------------------------------------------------- /begin/sdkdiff/gfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/sdkdiff/gfile.cpp -------------------------------------------------------------------------------- /begin/sdkdiff/gutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/sdkdiff/gutils.cpp -------------------------------------------------------------------------------- /begin/sdkdiff/gutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/sdkdiff/gutils.h -------------------------------------------------------------------------------- /begin/sdkdiff/gutilsrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/sdkdiff/gutilsrc.h -------------------------------------------------------------------------------- /begin/sdkdiff/horzline.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/sdkdiff/horzline.cur -------------------------------------------------------------------------------- /begin/sdkdiff/line.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/sdkdiff/line.cpp -------------------------------------------------------------------------------- /begin/sdkdiff/line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/sdkdiff/line.h -------------------------------------------------------------------------------- /begin/sdkdiff/list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/sdkdiff/list.cpp -------------------------------------------------------------------------------- /begin/sdkdiff/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/sdkdiff/list.h -------------------------------------------------------------------------------- /begin/sdkdiff/precomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/sdkdiff/precomp.cpp -------------------------------------------------------------------------------- /begin/sdkdiff/precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/sdkdiff/precomp.h -------------------------------------------------------------------------------- /begin/sdkdiff/profile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/sdkdiff/profile.cpp -------------------------------------------------------------------------------- /begin/sdkdiff/profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/sdkdiff/profile.h -------------------------------------------------------------------------------- /begin/sdkdiff/profile.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/sdkdiff/profile.key -------------------------------------------------------------------------------- /begin/sdkdiff/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/sdkdiff/readme.txt -------------------------------------------------------------------------------- /begin/sdkdiff/scandir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/sdkdiff/scandir.cpp -------------------------------------------------------------------------------- /begin/sdkdiff/scandir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/sdkdiff/scandir.h -------------------------------------------------------------------------------- /begin/sdkdiff/sdkdiff.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/sdkdiff/sdkdiff.chm -------------------------------------------------------------------------------- /begin/sdkdiff/sdkdiff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/sdkdiff/sdkdiff.cpp -------------------------------------------------------------------------------- /begin/sdkdiff/sdkdiff.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/sdkdiff/sdkdiff.def -------------------------------------------------------------------------------- /begin/sdkdiff/sdkdiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/sdkdiff/sdkdiff.h -------------------------------------------------------------------------------- /begin/sdkdiff/sdkdiff.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/sdkdiff/sdkdiff.ico -------------------------------------------------------------------------------- /begin/sdkdiff/sdkdiff.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/sdkdiff/sdkdiff.rc -------------------------------------------------------------------------------- /begin/sdkdiff/sdkdiff.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/sdkdiff/sdkdiff.sln -------------------------------------------------------------------------------- /begin/sdkdiff/sdkdiff.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/sdkdiff/sdkdiff.vcproj -------------------------------------------------------------------------------- /begin/sdkdiff/section.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/sdkdiff/section.cpp -------------------------------------------------------------------------------- /begin/sdkdiff/section.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/sdkdiff/section.h -------------------------------------------------------------------------------- /begin/sdkdiff/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/sdkdiff/state.h -------------------------------------------------------------------------------- /begin/sdkdiff/status.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/sdkdiff/status.cpp -------------------------------------------------------------------------------- /begin/sdkdiff/table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/sdkdiff/table.cpp -------------------------------------------------------------------------------- /begin/sdkdiff/table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/sdkdiff/table.h -------------------------------------------------------------------------------- /begin/sdkdiff/tpaint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/sdkdiff/tpaint.cpp -------------------------------------------------------------------------------- /begin/sdkdiff/tprint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/sdkdiff/tprint.cpp -------------------------------------------------------------------------------- /begin/sdkdiff/tpriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/sdkdiff/tpriv.h -------------------------------------------------------------------------------- /begin/sdkdiff/tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/sdkdiff/tree.cpp -------------------------------------------------------------------------------- /begin/sdkdiff/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/sdkdiff/tree.h -------------------------------------------------------------------------------- /begin/sdkdiff/tscroll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/sdkdiff/tscroll.cpp -------------------------------------------------------------------------------- /begin/sdkdiff/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/sdkdiff/utils.cpp -------------------------------------------------------------------------------- /begin/sdkdiff/vertline.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/sdkdiff/vertline.cur -------------------------------------------------------------------------------- /begin/sdkdiff/view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/sdkdiff/view.cpp -------------------------------------------------------------------------------- /begin/sdkdiff/view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/sdkdiff/view.h -------------------------------------------------------------------------------- /begin/sdkdiff/wdiffrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/sdkdiff/wdiffrc.h -------------------------------------------------------------------------------- /begin/simple/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/simple/Makefile -------------------------------------------------------------------------------- /begin/simple/ReadMe.Txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/simple/ReadMe.Txt -------------------------------------------------------------------------------- /begin/simple/Simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/begin/simple/Simple.c -------------------------------------------------------------------------------- /com/Readme.Htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/com/Readme.Htm -------------------------------------------------------------------------------- /com/administration/Admin.Htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/com/administration/Admin.Htm -------------------------------------------------------------------------------- /com/administration/spy/spy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/com/administration/spy/spy.sln -------------------------------------------------------------------------------- /com/docs/64bit_notes.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/com/docs/64bit_notes.htm -------------------------------------------------------------------------------- /com/docs/BuildEnv.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/com/docs/BuildEnv.htm -------------------------------------------------------------------------------- /com/docs/Styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/com/docs/Styles.css -------------------------------------------------------------------------------- /com/docs/Troubleshooting.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/com/docs/Troubleshooting.htm -------------------------------------------------------------------------------- /com/docs/comsdk.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/com/docs/comsdk.sln -------------------------------------------------------------------------------- /com/docs/comsdk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/com/docs/comsdk.xml -------------------------------------------------------------------------------- /com/docs/default.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/com/docs/default.htm -------------------------------------------------------------------------------- /com/docs/fixvbpref.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/com/docs/fixvbpref.htm -------------------------------------------------------------------------------- /com/docs/footer.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/com/docs/footer.htm -------------------------------------------------------------------------------- /com/docs/left_foot.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/com/docs/left_foot.htm -------------------------------------------------------------------------------- /com/docs/left_head.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/com/docs/left_head.htm -------------------------------------------------------------------------------- /com/docs/toc.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/com/docs/toc.xsl -------------------------------------------------------------------------------- /com/images/Bullet-minus.Gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/com/images/Bullet-minus.Gif -------------------------------------------------------------------------------- /com/images/Bullet-plus.Gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/com/images/Bullet-plus.Gif -------------------------------------------------------------------------------- /com/images/Com_small.Gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/com/images/Com_small.Gif -------------------------------------------------------------------------------- /com/images/help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/com/images/help.gif -------------------------------------------------------------------------------- /com/uac/ElevationSample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/com/uac/ElevationSample.sln -------------------------------------------------------------------------------- /com/uac/mui.rcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/com/uac/mui.rcconfig -------------------------------------------------------------------------------- /com/uac/proxystub/proxy.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/com/uac/proxystub/proxy.def -------------------------------------------------------------------------------- /com/uac/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/com/uac/readme.txt -------------------------------------------------------------------------------- /dataaccess/OPC/SetAuthor/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/dataaccess/OPC/SetAuthor/util.h -------------------------------------------------------------------------------- /dataaccess/oledb/sampprov/row.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/dataaccess/oledb/sampprov/row.h -------------------------------------------------------------------------------- /dataaccess/osp/customer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/dataaccess/osp/customer.txt -------------------------------------------------------------------------------- /dataaccess/osp/vc/cexlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/dataaccess/osp/vc/cexlist.h -------------------------------------------------------------------------------- /dataaccess/osp/vc/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/dataaccess/osp/vc/common.cpp -------------------------------------------------------------------------------- /dataaccess/osp/vc/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/dataaccess/osp/vc/common.h -------------------------------------------------------------------------------- /dataaccess/osp/vc/myospobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/dataaccess/osp/vc/myospobject.h -------------------------------------------------------------------------------- /dataaccess/osp/vc/sampleosp.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/dataaccess/osp/vc/sampleosp.rc -------------------------------------------------------------------------------- /multimedia/DirectWrite/HelloWorld/DWriteHelloWorld.rc: -------------------------------------------------------------------------------- 1 | 2 | Tulip Image "img1.jpg" 3 | 4 | -------------------------------------------------------------------------------- /multimedia/WMP/media/glass.wmv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/multimedia/WMP/media/glass.wmv -------------------------------------------------------------------------------- /multimedia/WMP/media/house.wma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/multimedia/WMP/media/house.wma -------------------------------------------------------------------------------- /multimedia/WMP/media/jeanne.wma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/multimedia/WMP/media/jeanne.wma -------------------------------------------------------------------------------- /multimedia/WMP/media/laure.wma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/multimedia/WMP/media/laure.wma -------------------------------------------------------------------------------- /multimedia/WMP/media/loader.hta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/multimedia/WMP/media/loader.hta -------------------------------------------------------------------------------- /multimedia/WMP/media/mellow.wma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/multimedia/WMP/media/mellow.wma -------------------------------------------------------------------------------- /multimedia/WMP/media/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/multimedia/WMP/media/readme.txt -------------------------------------------------------------------------------- /multimedia/WMP/media/smooth.wmv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/multimedia/WMP/media/smooth.wmv -------------------------------------------------------------------------------- /multimedia/audio/midiplyr/ReadMe.Txt: -------------------------------------------------------------------------------- 1 | Sample MIDI player. 2 | -------------------------------------------------------------------------------- /multimedia/audio/midiplyr/SEQ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/multimedia/audio/midiplyr/SEQ.h -------------------------------------------------------------------------------- /multimedia/audio/midiplyr/SMF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/multimedia/audio/midiplyr/SMF.c -------------------------------------------------------------------------------- /multimedia/audio/midiplyr/SMF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/multimedia/audio/midiplyr/SMF.h -------------------------------------------------------------------------------- /multimedia/audio/osd/OSD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/multimedia/audio/osd/OSD.cpp -------------------------------------------------------------------------------- /multimedia/audio/osd/OSD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/multimedia/audio/osd/OSD.h -------------------------------------------------------------------------------- /multimedia/audio/osd/OSD.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/multimedia/audio/osd/OSD.rc -------------------------------------------------------------------------------- /multimedia/audio/osd/OSD.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/multimedia/audio/osd/OSD.sln -------------------------------------------------------------------------------- /multimedia/audio/osd/OSD.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/multimedia/audio/osd/OSD.vcproj -------------------------------------------------------------------------------- /multimedia/audio/osd/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/multimedia/audio/osd/readme.txt -------------------------------------------------------------------------------- /multimedia/audio/osd/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/multimedia/audio/osd/stdafx.cpp -------------------------------------------------------------------------------- /multimedia/audio/osd/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/multimedia/audio/osd/stdafx.h -------------------------------------------------------------------------------- /multimedia/directshow/capture/amcap/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | 3 | 4 | -------------------------------------------------------------------------------- /multimedia/gameux/gdf/gdf.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/multimedia/gameux/gdf/gdf.ico -------------------------------------------------------------------------------- /multimedia/gameux/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/multimedia/gameux/readme.txt -------------------------------------------------------------------------------- /multimedia/gdi/printer/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/multimedia/gdi/printer/Common.h -------------------------------------------------------------------------------- /multimedia/gdi/printer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/multimedia/gdi/printer/Makefile -------------------------------------------------------------------------------- /multimedia/gdi/printer/Paint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/multimedia/gdi/printer/Paint.c -------------------------------------------------------------------------------- /multimedia/gdi/printer/Paint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/multimedia/gdi/printer/Paint.h -------------------------------------------------------------------------------- /multimedia/gdi/wcs/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/multimedia/gdi/wcs/Main.cpp -------------------------------------------------------------------------------- /multimedia/gdi/wcs/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/multimedia/gdi/wcs/Readme.txt -------------------------------------------------------------------------------- /multimedia/gdi/wcs/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/multimedia/gdi/wcs/Resource.h -------------------------------------------------------------------------------- /multimedia/gdi/wcs/Utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/multimedia/gdi/wcs/Utilities.h -------------------------------------------------------------------------------- /multimedia/gdi/wcs/precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/multimedia/gdi/wcs/precomp.h -------------------------------------------------------------------------------- /netds/MB/mbapi/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/MB/mbapi/Readme.txt -------------------------------------------------------------------------------- /netds/MB/mbapi/mbapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/MB/mbapi/mbapi.cpp -------------------------------------------------------------------------------- /netds/MB/mbapi/mbapi.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/MB/mbapi/mbapi.sln -------------------------------------------------------------------------------- /netds/MB/mbapi/mbapi.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/MB/mbapi/mbapi.vcproj -------------------------------------------------------------------------------- /netds/Qos/Qos2/qossample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/Qos/Qos2/qossample.c -------------------------------------------------------------------------------- /netds/Qos/Qos2/qossample.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/Qos/Qos2/qossample.rc -------------------------------------------------------------------------------- /netds/Qos/Qos2/qossample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/Qos/Qos2/qossample.sln -------------------------------------------------------------------------------- /netds/Qos/Qos2/qossample.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/Qos/Qos2/qossample.vcproj -------------------------------------------------------------------------------- /netds/Qos/Qos2/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/Qos/Qos2/readme.txt -------------------------------------------------------------------------------- /netds/Qos/TC/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/Qos/TC/ReadMe.txt -------------------------------------------------------------------------------- /netds/Qos/TC/TCSample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/Qos/TC/TCSample.c -------------------------------------------------------------------------------- /netds/Qos/TC/TCSample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/Qos/TC/TCSample.sln -------------------------------------------------------------------------------- /netds/Qos/TC/TCSample.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/Qos/TC/TCSample.vcproj -------------------------------------------------------------------------------- /netds/adsi/ASP/First/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/adsi/ASP/First/ReadMe.txt -------------------------------------------------------------------------------- /netds/adsi/ASP/First/enum.asp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/adsi/ASP/First/enum.asp -------------------------------------------------------------------------------- /netds/adsi/ASP/WAB/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/adsi/ASP/WAB/ReadMe.txt -------------------------------------------------------------------------------- /netds/adsi/ASP/WAB/banner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/adsi/ASP/WAB/banner.gif -------------------------------------------------------------------------------- /netds/adsi/ASP/WAB/default.asp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/adsi/ASP/WAB/default.asp -------------------------------------------------------------------------------- /netds/adsi/ASP/WAB/detail.asp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/adsi/ASP/WAB/detail.asp -------------------------------------------------------------------------------- /netds/adsi/ASP/WAB/global.asa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/adsi/ASP/WAB/global.asa -------------------------------------------------------------------------------- /netds/adsi/ASP/WAB/group.asp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/adsi/ASP/WAB/group.asp -------------------------------------------------------------------------------- /netds/adsi/ASP/WAB/person.asp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/adsi/ASP/WAB/person.asp -------------------------------------------------------------------------------- /netds/adsi/ASP/WAB/print.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/adsi/ASP/WAB/print.gif -------------------------------------------------------------------------------- /netds/adsi/ASP/WAB/search.asp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/adsi/ASP/WAB/search.asp -------------------------------------------------------------------------------- /netds/adsi/ASP/WAB/search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/adsi/ASP/WAB/search.gif -------------------------------------------------------------------------------- /netds/adsi/ASP/WAB/search.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/adsi/ASP/WAB/search.jpg -------------------------------------------------------------------------------- /netds/adsi/DistQuery/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/adsi/DistQuery/ReadMe.txt -------------------------------------------------------------------------------- /netds/adsi/DistQuery/dq.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/adsi/DistQuery/dq.sql -------------------------------------------------------------------------------- /netds/adsi/Perl/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/adsi/Perl/ReadMe.txt -------------------------------------------------------------------------------- /netds/adsi/Perl/binding.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/adsi/Perl/binding.pl -------------------------------------------------------------------------------- /netds/adsi/Perl/create.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/adsi/Perl/create.pl -------------------------------------------------------------------------------- /netds/adsi/Perl/modify.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/adsi/Perl/modify.pl -------------------------------------------------------------------------------- /netds/adsi/devguide/ad.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/adsi/devguide/ad.gif -------------------------------------------------------------------------------- /netds/adsi/devguide/ad.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/adsi/devguide/ad.htm -------------------------------------------------------------------------------- /netds/adsi/devguide/adadsi.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/adsi/devguide/adadsi.htm -------------------------------------------------------------------------------- /netds/adsi/devguide/adqi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/adsi/devguide/adqi.jpg -------------------------------------------------------------------------------- /netds/adsi/devguide/adsi01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/adsi/devguide/adsi01.gif -------------------------------------------------------------------------------- /netds/adsi/devguide/banner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/adsi/devguide/banner.gif -------------------------------------------------------------------------------- /netds/adsi/devguide/banner.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/adsi/devguide/banner.htm -------------------------------------------------------------------------------- /netds/adsi/devguide/banner.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/adsi/devguide/banner.inc -------------------------------------------------------------------------------- /netds/adsi/devguide/command.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/adsi/devguide/command.jpg -------------------------------------------------------------------------------- /netds/adsi/devguide/dev.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/adsi/devguide/dev.gif -------------------------------------------------------------------------------- /netds/adsi/devguide/dev.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/adsi/devguide/dev.htm -------------------------------------------------------------------------------- /netds/adsi/devguide/dq.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/adsi/devguide/dq.gif -------------------------------------------------------------------------------- /netds/adsi/devguide/dq.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/adsi/devguide/dq.htm -------------------------------------------------------------------------------- /netds/adsi/devguide/exch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/adsi/devguide/exch.jpg -------------------------------------------------------------------------------- /netds/adsi/devguide/mmc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/adsi/devguide/mmc.gif -------------------------------------------------------------------------------- /netds/adsi/devguide/mslogo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/adsi/devguide/mslogo.gif -------------------------------------------------------------------------------- /netds/adsi/devguide/nds.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/adsi/devguide/nds.htm -------------------------------------------------------------------------------- /netds/adsi/devguide/print.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/adsi/devguide/print.gif -------------------------------------------------------------------------------- /netds/adsi/devguide/router.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/adsi/devguide/router.gif -------------------------------------------------------------------------------- /netds/adsi/devguide/samapps.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/adsi/devguide/samapps.htm -------------------------------------------------------------------------------- /netds/adsi/devguide/samples.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/adsi/devguide/samples.gif -------------------------------------------------------------------------------- /netds/adsi/devguide/samples.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/adsi/devguide/samples.htm -------------------------------------------------------------------------------- /netds/adsi/devguide/service.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/adsi/devguide/service.jpg -------------------------------------------------------------------------------- /netds/adsi/devguide/ss.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/adsi/devguide/ss.htm -------------------------------------------------------------------------------- /netds/adsi/devguide/start.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/adsi/devguide/start.gif -------------------------------------------------------------------------------- /netds/adsi/devguide/start.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/adsi/devguide/start.htm -------------------------------------------------------------------------------- /netds/adsi/devguide/usrmgr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/adsi/devguide/usrmgr.jpg -------------------------------------------------------------------------------- /netds/adsi/devguide/vbref.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/adsi/devguide/vbref.jpg -------------------------------------------------------------------------------- /netds/adsi/devguide/vcref.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/adsi/devguide/vcref.jpg -------------------------------------------------------------------------------- /netds/adsi/devguide/wab.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/adsi/devguide/wab.jpg -------------------------------------------------------------------------------- /netds/adsi/devguide/warning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/adsi/devguide/warning.gif -------------------------------------------------------------------------------- /netds/adsi/devguide/web.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/adsi/devguide/web.gif -------------------------------------------------------------------------------- /netds/adsi/devguide/winnt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/adsi/devguide/winnt.gif -------------------------------------------------------------------------------- /netds/adsi/devguide/winnt.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/adsi/devguide/winnt.htm -------------------------------------------------------------------------------- /netds/adsi/general/adqi/ADQI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/adsi/general/adqi/ADQI.h -------------------------------------------------------------------------------- /netds/adsi/general/adqi/ADQI.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/adsi/general/adqi/ADQI.rc -------------------------------------------------------------------------------- /netds/adsi/general/adqi/ADs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/adsi/general/adqi/ADs.cpp -------------------------------------------------------------------------------- /netds/adsi/general/adqi/ADs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/adsi/general/adqi/ADs.h -------------------------------------------------------------------------------- /netds/dhcp/dhcpnotify/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/dhcp/dhcpnotify/Makefile -------------------------------------------------------------------------------- /netds/dhcp/dhcppersist/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/dhcp/dhcppersist/Makefile -------------------------------------------------------------------------------- /netds/dhcp/dhcprequest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/dhcp/dhcprequest/Makefile -------------------------------------------------------------------------------- /netds/dns/dnsquery/DNSQuery.Cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/dns/dnsquery/DNSQuery.Cpp -------------------------------------------------------------------------------- /netds/dns/dnsquery/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/dns/dnsquery/Makefile -------------------------------------------------------------------------------- /netds/dns/dnsquery/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/dns/dnsquery/ReadMe.txt -------------------------------------------------------------------------------- /netds/eap/eaphost/EapSdk.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/eap/eaphost/EapSdk.sln -------------------------------------------------------------------------------- /netds/fax/faxaccount/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/fax/faxaccount/Makefile -------------------------------------------------------------------------------- /netds/fax/faxaccount/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/fax/faxaccount/ReadMe.txt -------------------------------------------------------------------------------- /netds/fax/faxaccount/cs/key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/fax/faxaccount/cs/key.snk -------------------------------------------------------------------------------- /netds/fax/faxaccount/vb/key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/fax/faxaccount/vb/key.snk -------------------------------------------------------------------------------- /netds/fax/faxnotify/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/fax/faxnotify/Makefile -------------------------------------------------------------------------------- /netds/fax/faxnotify/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/fax/faxnotify/ReadMe.txt -------------------------------------------------------------------------------- /netds/fax/faxreassign/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/fax/faxreassign/Makefile -------------------------------------------------------------------------------- /netds/fax/faxsecurity/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/fax/faxsecurity/Makefile -------------------------------------------------------------------------------- /netds/fax/foldersenum/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/fax/foldersenum/Makefile -------------------------------------------------------------------------------- /netds/fax/fsp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/fax/fsp/Makefile -------------------------------------------------------------------------------- /netds/fax/fsp/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/fax/fsp/ReadMe.txt -------------------------------------------------------------------------------- /netds/fax/fsp/cpp/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/fax/fsp/cpp/Macros.h -------------------------------------------------------------------------------- /netds/fax/fsp/cpp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/fax/fsp/cpp/Makefile -------------------------------------------------------------------------------- /netds/fax/fsp/cpp/Reg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/fax/fsp/cpp/Reg.cpp -------------------------------------------------------------------------------- /netds/fax/fsp/cpp/Reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/fax/fsp/cpp/Reg.h -------------------------------------------------------------------------------- /netds/fax/fsp/cpp/SampleFSP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/fax/fsp/cpp/SampleFSP.cpp -------------------------------------------------------------------------------- /netds/fax/fsp/cpp/SampleFSP.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/fax/fsp/cpp/SampleFSP.def -------------------------------------------------------------------------------- /netds/fax/fsp/cpp/SampleFSP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/fax/fsp/cpp/SampleFSP.h -------------------------------------------------------------------------------- /netds/fax/fsp/cpp/SampleFSP.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/fax/fsp/cpp/SampleFSP.sln -------------------------------------------------------------------------------- /netds/fax/fsp/cpp/Util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/fax/fsp/cpp/Util.cpp -------------------------------------------------------------------------------- /netds/fax/printsdi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/fax/printsdi/Makefile -------------------------------------------------------------------------------- /netds/fax/printsdi/ReadMe.Txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/fax/printsdi/ReadMe.Txt -------------------------------------------------------------------------------- /netds/fax/printsdi/cpp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/fax/printsdi/cpp/Makefile -------------------------------------------------------------------------------- /netds/fax/sendfax/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/fax/sendfax/Makefile -------------------------------------------------------------------------------- /netds/fax/sendfax/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/fax/sendfax/ReadMe.txt -------------------------------------------------------------------------------- /netds/fax/sendfax/cpp/SendFax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/fax/sendfax/cpp/SendFax.h -------------------------------------------------------------------------------- /netds/fax/sendfax/cpp/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/fax/sendfax/cpp/makefile -------------------------------------------------------------------------------- /netds/fax/sendfax/cs/SendFax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/fax/sendfax/cs/SendFax.cs -------------------------------------------------------------------------------- /netds/fax/sendfax/cs/key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/fax/sendfax/cs/key.snk -------------------------------------------------------------------------------- /netds/fax/sendfax/cs/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/fax/sendfax/cs/makefile -------------------------------------------------------------------------------- /netds/fax/sendfax/vb/SendFax.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/fax/sendfax/vb/SendFax.vb -------------------------------------------------------------------------------- /netds/fax/sendfax/vb/key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/fax/sendfax/vb/key.snk -------------------------------------------------------------------------------- /netds/fax/sendfax/vb/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/fax/sendfax/vb/makefile -------------------------------------------------------------------------------- /netds/fax/serverconfig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/fax/serverconfig/Makefile -------------------------------------------------------------------------------- /netds/http/AsyncServer/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/http/AsyncServer/common.h -------------------------------------------------------------------------------- /netds/http/AsyncServer/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/http/AsyncServer/main.c -------------------------------------------------------------------------------- /netds/http/HttpV2Server/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/http/HttpV2Server/main.c -------------------------------------------------------------------------------- /netds/http/httpauth/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/http/httpauth/main.c -------------------------------------------------------------------------------- /netds/http/server/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/http/server/main.c -------------------------------------------------------------------------------- /netds/http/server/server.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/http/server/server.sln -------------------------------------------------------------------------------- /netds/http/server/server.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/http/server/server.vcproj -------------------------------------------------------------------------------- /netds/http/serviceconfig/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/http/serviceconfig/main.c -------------------------------------------------------------------------------- /netds/http/serviceconfig/ssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/http/serviceconfig/ssl.c -------------------------------------------------------------------------------- /netds/http/serviceconfig/url.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/http/serviceconfig/url.c -------------------------------------------------------------------------------- /netds/ias/mapname/dllmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/ias/mapname/dllmain.c -------------------------------------------------------------------------------- /netds/ias/mapname/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/ias/mapname/makefile -------------------------------------------------------------------------------- /netds/ias/mapname/mapname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/ias/mapname/mapname.c -------------------------------------------------------------------------------- /netds/ias/mapname/mapname.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/ias/mapname/mapname.def -------------------------------------------------------------------------------- /netds/ias/mapname/multisz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/ias/mapname/multisz.c -------------------------------------------------------------------------------- /netds/ias/mapname/multisz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/ias/mapname/multisz.h -------------------------------------------------------------------------------- /netds/ias/mapname/radutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/ias/mapname/radutil.c -------------------------------------------------------------------------------- /netds/ias/mapname/radutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/ias/mapname/radutil.h -------------------------------------------------------------------------------- /netds/ias/mapname/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/ias/mapname/readme.txt -------------------------------------------------------------------------------- /netds/iphelp/Netinfo/ReadMe.Txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/iphelp/Netinfo/ReadMe.Txt -------------------------------------------------------------------------------- /netds/iphelp/Netinfo/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/iphelp/Netinfo/makefile -------------------------------------------------------------------------------- /netds/iphelp/Netinfo/netinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/iphelp/Netinfo/netinfo.c -------------------------------------------------------------------------------- /netds/iphelp/Netinfo/netinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/iphelp/Netinfo/netinfo.h -------------------------------------------------------------------------------- /netds/iphelp/iparp/IPArp.Cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/iphelp/iparp/IPArp.Cpp -------------------------------------------------------------------------------- /netds/iphelp/iparp/IPArp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/iphelp/iparp/IPArp.h -------------------------------------------------------------------------------- /netds/iphelp/iparp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/iphelp/iparp/Makefile -------------------------------------------------------------------------------- /netds/iphelp/iparp/ReadMe.Txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/iphelp/iparp/ReadMe.Txt -------------------------------------------------------------------------------- /netds/iphelp/iparp/iparp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/iphelp/iparp/iparp.sln -------------------------------------------------------------------------------- /netds/iphelp/iparp/iparp.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/iphelp/iparp/iparp.vcproj -------------------------------------------------------------------------------- /netds/iphelp/ipchange/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/iphelp/ipchange/Makefile -------------------------------------------------------------------------------- /netds/iphelp/ipconfig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/iphelp/ipconfig/Makefile -------------------------------------------------------------------------------- /netds/iphelp/iprenew/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/iphelp/iprenew/Makefile -------------------------------------------------------------------------------- /netds/iphelp/iprenew/ReadMe.Txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/iphelp/iprenew/ReadMe.Txt -------------------------------------------------------------------------------- /netds/iphelp/iproute/IPRoute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/iphelp/iproute/IPRoute.h -------------------------------------------------------------------------------- /netds/iphelp/iproute/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/iphelp/iproute/Makefile -------------------------------------------------------------------------------- /netds/iphelp/iproute/ReadMe.Txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/iphelp/iproute/ReadMe.Txt -------------------------------------------------------------------------------- /netds/iphelp/ipstat/IPStat.Cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/iphelp/ipstat/IPStat.Cpp -------------------------------------------------------------------------------- /netds/iphelp/ipstat/IPStat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/iphelp/ipstat/IPStat.h -------------------------------------------------------------------------------- /netds/iphelp/ipstat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/iphelp/ipstat/Makefile -------------------------------------------------------------------------------- /netds/iphelp/ipstat/ReadMe.Txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/iphelp/ipstat/ReadMe.Txt -------------------------------------------------------------------------------- /netds/iphelp/ipstat/ipstat.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/iphelp/ipstat/ipstat.sln -------------------------------------------------------------------------------- /netds/nap/SdkSamples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/nap/SdkSamples.sln -------------------------------------------------------------------------------- /netds/nap/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/nap/readme.txt -------------------------------------------------------------------------------- /netds/nap/sampleshvui/Regutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/nap/sampleshvui/Regutil.h -------------------------------------------------------------------------------- /netds/nap/sampleshvui/precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/nap/sampleshvui/precomp.h -------------------------------------------------------------------------------- /netds/nap/sampleshvui/shvui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/nap/sampleshvui/shvui.cpp -------------------------------------------------------------------------------- /netds/nap/sampleshvui/shvui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/nap/sampleshvui/shvui.h -------------------------------------------------------------------------------- /netds/nap/sampleshvui/shvui.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/nap/sampleshvui/shvui.rc -------------------------------------------------------------------------------- /netds/nap/sampleshvui/shvui.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/nap/sampleshvui/shvui.reg -------------------------------------------------------------------------------- /netds/nap/sampleshvui/shvuicf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/nap/sampleshvui/shvuicf.h -------------------------------------------------------------------------------- /netds/nap/sdkqec/QEC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/nap/sdkqec/QEC.cpp -------------------------------------------------------------------------------- /netds/nap/sdkqec/QEC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/nap/sdkqec/QEC.h -------------------------------------------------------------------------------- /netds/nap/sdkqec/QecCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/nap/sdkqec/QecCallback.h -------------------------------------------------------------------------------- /netds/nap/sdkqec/SdkQec.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/nap/sdkqec/SdkQec.vcproj -------------------------------------------------------------------------------- /netds/nap/sdkqec/SdkQecModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/nap/sdkqec/SdkQecModule.h -------------------------------------------------------------------------------- /netds/nap/sdkqec/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/nap/sdkqec/resource.h -------------------------------------------------------------------------------- /netds/nap/sdkqec/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/nap/sdkqec/stdafx.h -------------------------------------------------------------------------------- /netds/nap/sha/dll/Messages.mc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/nap/sha/dll/Messages.mc -------------------------------------------------------------------------------- /netds/nap/sha/dll/SdkShaInfo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/nap/sha/dll/SdkShaInfo.rc -------------------------------------------------------------------------------- /netds/nap/sha/dll/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/nap/sha/dll/dllmain.cpp -------------------------------------------------------------------------------- /netds/nap/sha/dll/dllmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/nap/sha/dll/dllmain.h -------------------------------------------------------------------------------- /netds/nap/sha/dll/icon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/nap/sha/dll/icon1.ico -------------------------------------------------------------------------------- /netds/nap/sha/dll/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/nap/sha/dll/resource.h -------------------------------------------------------------------------------- /netds/nap/sha/dll/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/nap/sha/dll/stdafx.cpp -------------------------------------------------------------------------------- /netds/nap/sha/dll/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/nap/sha/dll/stdafx.h -------------------------------------------------------------------------------- /netds/nap/sha/exe/Callback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/nap/sha/exe/Callback.cpp -------------------------------------------------------------------------------- /netds/nap/sha/exe/Callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/nap/sha/exe/Callback.h -------------------------------------------------------------------------------- /netds/nap/sha/exe/Messages.mc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/nap/sha/exe/Messages.mc -------------------------------------------------------------------------------- /netds/nap/sha/exe/SdkSha.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/nap/sha/exe/SdkSha.vcproj -------------------------------------------------------------------------------- /netds/nap/sha/exe/Sha.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/nap/sha/exe/Sha.cpp -------------------------------------------------------------------------------- /netds/nap/sha/exe/Sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/nap/sha/exe/Sha.h -------------------------------------------------------------------------------- /netds/nap/sha/exe/messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/nap/sha/exe/messages.h -------------------------------------------------------------------------------- /netds/nap/sha/exe/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/nap/sha/exe/resource.h -------------------------------------------------------------------------------- /netds/nap/sha/exe/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/nap/sha/exe/stdafx.h -------------------------------------------------------------------------------- /netds/nap/shv/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/nap/shv/Resource.h -------------------------------------------------------------------------------- /netds/nap/shv/SampleShv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/nap/shv/SampleShv.cpp -------------------------------------------------------------------------------- /netds/nap/shv/SampleShv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/nap/shv/SampleShv.h -------------------------------------------------------------------------------- /netds/nap/shv/SdkShv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/nap/shv/SdkShv.cpp -------------------------------------------------------------------------------- /netds/nap/shv/SdkShv.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/nap/shv/SdkShv.def -------------------------------------------------------------------------------- /netds/nap/shv/SdkShv.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/nap/shv/SdkShv.rc -------------------------------------------------------------------------------- /netds/nap/shv/SdkShv.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/nap/shv/SdkShv.rgs -------------------------------------------------------------------------------- /netds/nap/shv/SdkShv.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/nap/shv/SdkShv.vcproj -------------------------------------------------------------------------------- /netds/nap/shv/SdkShvModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/nap/shv/SdkShvModule.cpp -------------------------------------------------------------------------------- /netds/nap/shv/SdkShvModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/nap/shv/SdkShvModule.h -------------------------------------------------------------------------------- /netds/nap/shv/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/nap/shv/stdafx.cpp -------------------------------------------------------------------------------- /netds/nap/shv/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/nap/shv/stdafx.h -------------------------------------------------------------------------------- /netds/peertopeer/DRT/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/peertopeer/DRT/makefile -------------------------------------------------------------------------------- /netds/peertopeer/DRT/readme.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/peertopeer/DRT/readme.htm -------------------------------------------------------------------------------- /netds/peertopeer/DRT/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/peertopeer/DRT/sources -------------------------------------------------------------------------------- /netds/peertopeer/DRT/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/peertopeer/DRT/version.rc -------------------------------------------------------------------------------- /netds/peertopeer/pnrp/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/peertopeer/pnrp/makefile -------------------------------------------------------------------------------- /netds/peertopeer/pnrp/pnrp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/peertopeer/pnrp/pnrp.c -------------------------------------------------------------------------------- /netds/peertopeer/pnrp/pnrp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/peertopeer/pnrp/pnrp.h -------------------------------------------------------------------------------- /netds/peertopeer/pnrp/pnrp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/peertopeer/pnrp/pnrp.sln -------------------------------------------------------------------------------- /netds/peertopeer/samples.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/peertopeer/samples.htm -------------------------------------------------------------------------------- /netds/ras/connectionmanager/cmsample.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | SetProxyUsingTunnelAddress -------------------------------------------------------------------------------- /netds/ras/customdial/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/ras/customdial/makefile -------------------------------------------------------------------------------- /netds/ras/customdial/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/ras/customdial/readme.txt -------------------------------------------------------------------------------- /netds/ras/customdial/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/ras/customdial/resource.h -------------------------------------------------------------------------------- /netds/ras/phoneentry/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/ras/phoneentry/Makefile -------------------------------------------------------------------------------- /netds/ras/phoneentry/ReadMe.Txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/ras/phoneentry/ReadMe.Txt -------------------------------------------------------------------------------- /netds/ras/phoneentry/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/ras/phoneentry/Resource.h -------------------------------------------------------------------------------- /netds/ras/rasdial/c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/ras/rasdial/c/Makefile -------------------------------------------------------------------------------- /netds/ras/rasdial/c/RasDial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/ras/rasdial/c/RasDial.c -------------------------------------------------------------------------------- /netds/ras/rasdial/c/ReadMe.Txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/ras/rasdial/c/ReadMe.Txt -------------------------------------------------------------------------------- /netds/ras/rasdialasync/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/ras/rasdialasync/Makefile -------------------------------------------------------------------------------- /netds/rpc/asyncrpc/AsyncRPC.Acf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/asyncrpc/AsyncRPC.Acf -------------------------------------------------------------------------------- /netds/rpc/asyncrpc/AsyncRPC.Idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/asyncrpc/AsyncRPC.Idl -------------------------------------------------------------------------------- /netds/rpc/asyncrpc/AsyncRPCc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/asyncrpc/AsyncRPCc.c -------------------------------------------------------------------------------- /netds/rpc/asyncrpc/AsyncRPCp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/asyncrpc/AsyncRPCp.c -------------------------------------------------------------------------------- /netds/rpc/asyncrpc/AsyncRPCs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/asyncrpc/AsyncRPCs.c -------------------------------------------------------------------------------- /netds/rpc/asyncrpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/asyncrpc/Makefile -------------------------------------------------------------------------------- /netds/rpc/asyncrpc/ReadMe.Txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/asyncrpc/ReadMe.Txt -------------------------------------------------------------------------------- /netds/rpc/asyncrpc/spn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/asyncrpc/spn.c -------------------------------------------------------------------------------- /netds/rpc/asyncrpc/spn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/asyncrpc/spn.h -------------------------------------------------------------------------------- /netds/rpc/cluuid/ClUuid.Acf: -------------------------------------------------------------------------------- 1 | interface cluuid 2 | { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /netds/rpc/cluuid/ClUuid.Idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/cluuid/ClUuid.Idl -------------------------------------------------------------------------------- /netds/rpc/cluuid/ClUuidc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/cluuid/ClUuidc.c -------------------------------------------------------------------------------- /netds/rpc/cluuid/ClUuidp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/cluuid/ClUuidp.c -------------------------------------------------------------------------------- /netds/rpc/cluuid/ClUuids.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/cluuid/ClUuids.c -------------------------------------------------------------------------------- /netds/rpc/cluuid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/cluuid/Makefile -------------------------------------------------------------------------------- /netds/rpc/cluuid/ReadMe.Txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/cluuid/ReadMe.Txt -------------------------------------------------------------------------------- /netds/rpc/cluuid/spn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/cluuid/spn.c -------------------------------------------------------------------------------- /netds/rpc/cluuid/spn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/cluuid/spn.h -------------------------------------------------------------------------------- /netds/rpc/data/dunion/DUnionc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/data/dunion/DUnionc.c -------------------------------------------------------------------------------- /netds/rpc/data/dunion/DUnionp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/data/dunion/DUnionp.c -------------------------------------------------------------------------------- /netds/rpc/data/dunion/DUnions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/data/dunion/DUnions.c -------------------------------------------------------------------------------- /netds/rpc/data/dunion/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/data/dunion/Makefile -------------------------------------------------------------------------------- /netds/rpc/data/dunion/spn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/data/dunion/spn.c -------------------------------------------------------------------------------- /netds/rpc/data/dunion/spn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/data/dunion/spn.h -------------------------------------------------------------------------------- /netds/rpc/data/inout/InOut.Acf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/data/inout/InOut.Acf -------------------------------------------------------------------------------- /netds/rpc/data/inout/InOut.Idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/data/inout/InOut.Idl -------------------------------------------------------------------------------- /netds/rpc/data/inout/InOutc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/data/inout/InOutc.c -------------------------------------------------------------------------------- /netds/rpc/data/inout/InOutp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/data/inout/InOutp.c -------------------------------------------------------------------------------- /netds/rpc/data/inout/InOuts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/data/inout/InOuts.c -------------------------------------------------------------------------------- /netds/rpc/data/inout/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/data/inout/Makefile -------------------------------------------------------------------------------- /netds/rpc/data/inout/ReadMe.Txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/data/inout/ReadMe.Txt -------------------------------------------------------------------------------- /netds/rpc/data/inout/spn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/data/inout/spn.c -------------------------------------------------------------------------------- /netds/rpc/data/inout/spn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/data/inout/spn.h -------------------------------------------------------------------------------- /netds/rpc/data/xmit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/data/xmit/Makefile -------------------------------------------------------------------------------- /netds/rpc/data/xmit/ReadMe.Txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/data/xmit/ReadMe.Txt -------------------------------------------------------------------------------- /netds/rpc/data/xmit/Xmit.Acf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/data/xmit/Xmit.Acf -------------------------------------------------------------------------------- /netds/rpc/data/xmit/Xmit.Idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/data/xmit/Xmit.Idl -------------------------------------------------------------------------------- /netds/rpc/data/xmit/Xmitc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/data/xmit/Xmitc.c -------------------------------------------------------------------------------- /netds/rpc/data/xmit/Xmitp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/data/xmit/Xmitp.c -------------------------------------------------------------------------------- /netds/rpc/data/xmit/Xmits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/data/xmit/Xmits.c -------------------------------------------------------------------------------- /netds/rpc/data/xmit/Xmitu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/data/xmit/Xmitu.c -------------------------------------------------------------------------------- /netds/rpc/data/xmit/Xmitu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/data/xmit/Xmitu.h -------------------------------------------------------------------------------- /netds/rpc/dynept/Dynept.Acf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/dynept/Dynept.Acf -------------------------------------------------------------------------------- /netds/rpc/dynept/Dynept.Idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/dynept/Dynept.Idl -------------------------------------------------------------------------------- /netds/rpc/dynept/Dyneptc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/dynept/Dyneptc.c -------------------------------------------------------------------------------- /netds/rpc/dynept/Dyneptp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/dynept/Dyneptp.c -------------------------------------------------------------------------------- /netds/rpc/dynept/Dynepts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/dynept/Dynepts.c -------------------------------------------------------------------------------- /netds/rpc/dynept/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/dynept/Makefile -------------------------------------------------------------------------------- /netds/rpc/dynept/ReadMe.Txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/dynept/ReadMe.Txt -------------------------------------------------------------------------------- /netds/rpc/dynept/spn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/dynept/spn.c -------------------------------------------------------------------------------- /netds/rpc/dynept/spn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/dynept/spn.h -------------------------------------------------------------------------------- /netds/rpc/handles/cxhndl/spn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/handles/cxhndl/spn.c -------------------------------------------------------------------------------- /netds/rpc/handles/cxhndl/spn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/handles/cxhndl/spn.h -------------------------------------------------------------------------------- /netds/rpc/handles/usrdef/spn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/handles/usrdef/spn.c -------------------------------------------------------------------------------- /netds/rpc/handles/usrdef/spn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/handles/usrdef/spn.h -------------------------------------------------------------------------------- /netds/rpc/hello/Hello.Acf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/hello/Hello.Acf -------------------------------------------------------------------------------- /netds/rpc/hello/Hello.Idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/hello/Hello.Idl -------------------------------------------------------------------------------- /netds/rpc/hello/Helloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/hello/Helloc.c -------------------------------------------------------------------------------- /netds/rpc/hello/Hellop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/hello/Hellop.c -------------------------------------------------------------------------------- /netds/rpc/hello/Hellos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/hello/Hellos.c -------------------------------------------------------------------------------- /netds/rpc/hello/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/hello/Makefile -------------------------------------------------------------------------------- /netds/rpc/hello/ReadMe.Txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/hello/ReadMe.Txt -------------------------------------------------------------------------------- /netds/rpc/hello/spn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/hello/spn.c -------------------------------------------------------------------------------- /netds/rpc/hello/spn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/hello/spn.h -------------------------------------------------------------------------------- /netds/rpc/rpcsvc/Client.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/rpcsvc/Client.C -------------------------------------------------------------------------------- /netds/rpc/rpcsvc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/rpcsvc/Makefile -------------------------------------------------------------------------------- /netds/rpc/rpcsvc/RPCsvc.Acf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/rpcsvc/RPCsvc.Acf -------------------------------------------------------------------------------- /netds/rpc/rpcsvc/RPCsvc.Idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/rpcsvc/RPCsvc.Idl -------------------------------------------------------------------------------- /netds/rpc/rpcsvc/ReadMe.Txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/rpcsvc/ReadMe.Txt -------------------------------------------------------------------------------- /netds/rpc/rpcsvc/Server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/rpcsvc/Server.c -------------------------------------------------------------------------------- /netds/rpc/rpcsvc/Service.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/rpcsvc/Service.C -------------------------------------------------------------------------------- /netds/rpc/rpcsvc/Service.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/rpcsvc/Service.H -------------------------------------------------------------------------------- /netds/rpc/strout/Client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/strout/Client.c -------------------------------------------------------------------------------- /netds/rpc/strout/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/strout/Common.h -------------------------------------------------------------------------------- /netds/rpc/strout/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/strout/Makefile -------------------------------------------------------------------------------- /netds/rpc/strout/ReadMe.Txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/strout/ReadMe.Txt -------------------------------------------------------------------------------- /netds/rpc/strout/Remote.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/strout/Remote.c -------------------------------------------------------------------------------- /netds/rpc/strout/Server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/strout/Server.c -------------------------------------------------------------------------------- /netds/rpc/strout/StrOut.Acf: -------------------------------------------------------------------------------- 1 | interface strout_sample 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /netds/rpc/strout/StrOut.Idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/strout/StrOut.Idl -------------------------------------------------------------------------------- /netds/rpc/strout/spn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/strout/spn.c -------------------------------------------------------------------------------- /netds/rpc/strout/spn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rpc/strout/spn.h -------------------------------------------------------------------------------- /netds/rras/adminapi/Admapit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rras/adminapi/Admapit.c -------------------------------------------------------------------------------- /netds/rras/adminapi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rras/adminapi/Makefile -------------------------------------------------------------------------------- /netds/rras/adminapi/ReadMe.Txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rras/adminapi/ReadMe.Txt -------------------------------------------------------------------------------- /netds/rras/callout/AdminDll.Def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rras/callout/AdminDll.Def -------------------------------------------------------------------------------- /netds/rras/callout/AdminDll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rras/callout/AdminDll.c -------------------------------------------------------------------------------- /netds/rras/callout/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rras/callout/Makefile -------------------------------------------------------------------------------- /netds/rras/callout/ReadMe.Txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rras/callout/ReadMe.Txt -------------------------------------------------------------------------------- /netds/rras/eap/CeapCfg.Cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rras/eap/CeapCfg.Cpp -------------------------------------------------------------------------------- /netds/rras/eap/CeapCfg.Rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rras/eap/CeapCfg.Rgs -------------------------------------------------------------------------------- /netds/rras/eap/CeapCfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rras/eap/CeapCfg.h -------------------------------------------------------------------------------- /netds/rras/eap/Eap.Def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rras/eap/Eap.Def -------------------------------------------------------------------------------- /netds/rras/eap/Eap.Rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rras/eap/Eap.Rc -------------------------------------------------------------------------------- /netds/rras/eap/Eap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rras/eap/Eap.c -------------------------------------------------------------------------------- /netds/rras/eap/Eap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rras/eap/Eap.h -------------------------------------------------------------------------------- /netds/rras/eap/Exports.Cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rras/eap/Exports.Cpp -------------------------------------------------------------------------------- /netds/rras/eap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rras/eap/Makefile -------------------------------------------------------------------------------- /netds/rras/eap/ReadMe.Txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rras/eap/ReadMe.Txt -------------------------------------------------------------------------------- /netds/rras/eap/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/rras/eap/Resource.h -------------------------------------------------------------------------------- /netds/snmp/snmputil/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/snmp/snmputil/Makefile -------------------------------------------------------------------------------- /netds/snmp/snmputil/ReadMe.Txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/snmp/snmputil/ReadMe.Txt -------------------------------------------------------------------------------- /netds/snmp/snmputil/SnmpUtil.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/snmp/snmputil/SnmpUtil.C -------------------------------------------------------------------------------- /netds/snmp/testdll/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/snmp/testdll/Makefile -------------------------------------------------------------------------------- /netds/snmp/testdll/TestDll.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/snmp/testdll/TestDll.C -------------------------------------------------------------------------------- /netds/snmp/testdll/TestDll.Def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/snmp/testdll/TestDll.Def -------------------------------------------------------------------------------- /netds/snmp/testdll/TestMIB.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/snmp/testdll/TestMIB.C -------------------------------------------------------------------------------- /netds/snmp/testdll/TestMIB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/snmp/testdll/TestMIB.h -------------------------------------------------------------------------------- /netds/snmp/wsnmp/Helper.Cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/snmp/wsnmp/Helper.Cpp -------------------------------------------------------------------------------- /netds/snmp/wsnmp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/snmp/wsnmp/Makefile -------------------------------------------------------------------------------- /netds/snmp/wsnmp/ReadMe.Txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/snmp/wsnmp/ReadMe.Txt -------------------------------------------------------------------------------- /netds/snmp/wsnmp/WSnmpUtil.Cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/snmp/wsnmp/WSnmpUtil.Cpp -------------------------------------------------------------------------------- /netds/snmp/wsnmp/WSnmpUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/snmp/wsnmp/WSnmpUtil.h -------------------------------------------------------------------------------- /netds/tapi/tapi2/atsp32/Atsp.Rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/tapi/tapi2/atsp32/Atsp.Rc -------------------------------------------------------------------------------- /netds/tapi/tapi2/atsp32/Atsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/tapi/tapi2/atsp32/Atsp.c -------------------------------------------------------------------------------- /netds/tapi/tapi2/atsp32/Atsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/tapi/tapi2/atsp32/Atsp.h -------------------------------------------------------------------------------- /netds/uri/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/uri/ReadMe.txt -------------------------------------------------------------------------------- /netds/uri/uri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/uri/uri.cpp -------------------------------------------------------------------------------- /netds/uri/uri.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/uri/uri.sln -------------------------------------------------------------------------------- /netds/uri/uri.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/uri/uri.vcproj -------------------------------------------------------------------------------- /netds/wfp/diagevents/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/wfp/diagevents/readme.txt -------------------------------------------------------------------------------- /netds/wfp/msnfilter/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/wfp/msnfilter/readme.txt -------------------------------------------------------------------------------- /netds/winsock/accept/ReadMe.Txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/accept/ReadMe.Txt -------------------------------------------------------------------------------- /netds/winsock/accept/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/accept/makefile -------------------------------------------------------------------------------- /netds/winsock/atmevent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/atmevent/Makefile -------------------------------------------------------------------------------- /netds/winsock/bcast/BCast.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/bcast/BCast.sln -------------------------------------------------------------------------------- /netds/winsock/bcast/Bcast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/bcast/Bcast.c -------------------------------------------------------------------------------- /netds/winsock/bcast/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/bcast/Makefile -------------------------------------------------------------------------------- /netds/winsock/bcast/ReadMe.Txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/bcast/ReadMe.Txt -------------------------------------------------------------------------------- /netds/winsock/dt_dll/CStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/dt_dll/CStack.h -------------------------------------------------------------------------------- /netds/winsock/dt_dll/Dt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/dt_dll/Dt.h -------------------------------------------------------------------------------- /netds/winsock/dt_dll/Dt_Dll.Cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/dt_dll/Dt_Dll.Cpp -------------------------------------------------------------------------------- /netds/winsock/dt_dll/Dt_Dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/dt_dll/Dt_Dll.h -------------------------------------------------------------------------------- /netds/winsock/dt_dll/Dt_Dll.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/dt_dll/Dt_Dll.sln -------------------------------------------------------------------------------- /netds/winsock/dt_dll/Handlers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/dt_dll/Handlers.h -------------------------------------------------------------------------------- /netds/winsock/dt_dll/HuError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/dt_dll/HuError.h -------------------------------------------------------------------------------- /netds/winsock/dt_dll/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/dt_dll/Makefile -------------------------------------------------------------------------------- /netds/winsock/dt_dll/Nideque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/dt_dll/Nideque.h -------------------------------------------------------------------------------- /netds/winsock/dt_dll/NoWarn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/dt_dll/NoWarn.h -------------------------------------------------------------------------------- /netds/winsock/dt_dll/ReadMe.Txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/dt_dll/ReadMe.Txt -------------------------------------------------------------------------------- /netds/winsock/dt_dll/Stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/dt_dll/Stack.h -------------------------------------------------------------------------------- /netds/winsock/dt_dll/dt_dll.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/dt_dll/dt_dll.def -------------------------------------------------------------------------------- /netds/winsock/iocp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/iocp/Makefile -------------------------------------------------------------------------------- /netds/winsock/iocp/ReadMe.Txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/iocp/ReadMe.Txt -------------------------------------------------------------------------------- /netds/winsock/iphdrinc/dirs: -------------------------------------------------------------------------------- 1 | DIRS = iphdrinc 2 | -------------------------------------------------------------------------------- /netds/winsock/iphdrinc/iphdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/iphdrinc/iphdr.h -------------------------------------------------------------------------------- /netds/winsock/iphdrinc/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/iphdrinc/makefile -------------------------------------------------------------------------------- /netds/winsock/iphdrinc/rawudp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/iphdrinc/rawudp.c -------------------------------------------------------------------------------- /netds/winsock/ipxchat/About.Dlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/ipxchat/About.Dlg -------------------------------------------------------------------------------- /netds/winsock/ipxchat/About.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/ipxchat/About.c -------------------------------------------------------------------------------- /netds/winsock/ipxchat/Connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/ipxchat/Connect.c -------------------------------------------------------------------------------- /netds/winsock/ipxchat/Globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/ipxchat/Globals.h -------------------------------------------------------------------------------- /netds/winsock/ipxchat/Init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/ipxchat/Init.c -------------------------------------------------------------------------------- /netds/winsock/ipxchat/IpxChat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/ipxchat/IpxChat.c -------------------------------------------------------------------------------- /netds/winsock/ipxchat/Listen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/ipxchat/Listen.c -------------------------------------------------------------------------------- /netds/winsock/ipxchat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/ipxchat/Makefile -------------------------------------------------------------------------------- /netds/winsock/ipxchat/Misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/ipxchat/Misc.c -------------------------------------------------------------------------------- /netds/winsock/ipxchat/WinMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/ipxchat/WinMain.c -------------------------------------------------------------------------------- /netds/winsock/isb/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/isb/ReadMe.txt -------------------------------------------------------------------------------- /netds/winsock/isb/isb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/isb/isb.cpp -------------------------------------------------------------------------------- /netds/winsock/isb/isb.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/isb/isb.sln -------------------------------------------------------------------------------- /netds/winsock/isb/isb.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/isb/isb.vcproj -------------------------------------------------------------------------------- /netds/winsock/isb/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/isb/stdafx.cpp -------------------------------------------------------------------------------- /netds/winsock/isb/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/isb/stdafx.h -------------------------------------------------------------------------------- /netds/winsock/isb/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/isb/targetver.h -------------------------------------------------------------------------------- /netds/winsock/lsp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/lsp/Makefile -------------------------------------------------------------------------------- /netds/winsock/lsp/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/lsp/readme.txt -------------------------------------------------------------------------------- /netds/winsock/mcastip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/mcastip/Makefile -------------------------------------------------------------------------------- /netds/winsock/mcastip/resolve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/mcastip/resolve.c -------------------------------------------------------------------------------- /netds/winsock/mcastip/resolve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/mcastip/resolve.h -------------------------------------------------------------------------------- /netds/winsock/overlap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/overlap/Makefile -------------------------------------------------------------------------------- /netds/winsock/overlap/Overlap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/overlap/Overlap.c -------------------------------------------------------------------------------- /netds/winsock/ping/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/ping/Makefile -------------------------------------------------------------------------------- /netds/winsock/ping/Ping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/ping/Ping.cpp -------------------------------------------------------------------------------- /netds/winsock/ping/Ping.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/ping/Ping.sln -------------------------------------------------------------------------------- /netds/winsock/ping/ReadMe.Txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/ping/ReadMe.Txt -------------------------------------------------------------------------------- /netds/winsock/ping/iphdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/ping/iphdr.h -------------------------------------------------------------------------------- /netds/winsock/ping/ping.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/ping/ping.vcproj -------------------------------------------------------------------------------- /netds/winsock/ping/resolve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/ping/resolve.cpp -------------------------------------------------------------------------------- /netds/winsock/ping/resolve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/ping/resolve.h -------------------------------------------------------------------------------- /netds/winsock/rcvall/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/rcvall/Makefile -------------------------------------------------------------------------------- /netds/winsock/rcvall/iphdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/rcvall/iphdr.h -------------------------------------------------------------------------------- /netds/winsock/rcvall/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/rcvall/parser.c -------------------------------------------------------------------------------- /netds/winsock/rcvall/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/rcvall/parser.h -------------------------------------------------------------------------------- /netds/winsock/rcvall/rcvall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/rcvall/rcvall.c -------------------------------------------------------------------------------- /netds/winsock/rcvall/rcvall.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/rcvall/rcvall.sln -------------------------------------------------------------------------------- /netds/winsock/rcvall/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/rcvall/readme.txt -------------------------------------------------------------------------------- /netds/winsock/rcvall/resolve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/rcvall/resolve.c -------------------------------------------------------------------------------- /netds/winsock/rcvall/resolve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/rcvall/resolve.h -------------------------------------------------------------------------------- /netds/winsock/recvmsg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/recvmsg/Makefile -------------------------------------------------------------------------------- /netds/winsock/recvmsg/rmmc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/recvmsg/rmmc.cpp -------------------------------------------------------------------------------- /netds/winsock/rnr2/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/rnr2/makefile -------------------------------------------------------------------------------- /netds/winsock/rnr2/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/rnr2/readme.txt -------------------------------------------------------------------------------- /netds/winsock/rnr2/rnrcs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/rnr2/rnrcs.cpp -------------------------------------------------------------------------------- /netds/winsock/rnr2/rnrcs.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/rnr2/rnrcs.sln -------------------------------------------------------------------------------- /netds/winsock/rnr2/rnrcs.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/rnr2/rnrcs.vcproj -------------------------------------------------------------------------------- /netds/winsock/sendmsg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/sendmsg/Makefile -------------------------------------------------------------------------------- /netds/winsock/simple/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/simple/Makefile -------------------------------------------------------------------------------- /netds/winsock/simple/ReadMe.Txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/simple/ReadMe.Txt -------------------------------------------------------------------------------- /netds/winsock/sockdup/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/sockdup/Makefile -------------------------------------------------------------------------------- /netds/winsock/wsapoll/poll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/netds/winsock/wsapoll/poll.cpp -------------------------------------------------------------------------------- /security/authorization/azman/webexpense/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Inherits="WebExpense.Global" Language="C#" %> 2 | -------------------------------------------------------------------------------- /sysmgmt/events/wec/cpp/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/sysmgmt/events/wec/cpp/Main.cpp -------------------------------------------------------------------------------- /sysmgmt/mmc3.0/ServicesManagerSample/GeneralPropertiesControl.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sysmgmt/mmc3.0/ServicesManagerSample/StartupPropertiesControl.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sysmgmt/mmc3.0/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/sysmgmt/mmc3.0/readme.txt -------------------------------------------------------------------------------- /sysmgmt/msi/create.dll/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/sysmgmt/msi/create.dll/makefile -------------------------------------------------------------------------------- /sysmgmt/msi/msistuff/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/sysmgmt/msi/msistuff/makefile -------------------------------------------------------------------------------- /sysmgmt/msi/msistuff/readme.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/sysmgmt/msi/msistuff/readme.htm -------------------------------------------------------------------------------- /sysmgmt/msi/remove.dll/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/sysmgmt/msi/remove.dll/makefile -------------------------------------------------------------------------------- /sysmgmt/msi/scripts/WiMerge.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/sysmgmt/msi/scripts/WiMerge.vbs -------------------------------------------------------------------------------- /sysmgmt/msi/setup.exe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/sysmgmt/msi/setup.exe/Makefile -------------------------------------------------------------------------------- /sysmgmt/msi/setup.exe/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/sysmgmt/msi/setup.exe/common.h -------------------------------------------------------------------------------- /sysmgmt/msi/setup.exe/setup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/sysmgmt/msi/setup.exe/setup.cpp -------------------------------------------------------------------------------- /sysmgmt/msi/setup.exe/setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/sysmgmt/msi/setup.exe/setup.h -------------------------------------------------------------------------------- /sysmgmt/msi/setup.exe/setup.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/sysmgmt/msi/setup.exe/setup.ico -------------------------------------------------------------------------------- /sysmgmt/msi/setup.exe/setup.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/sysmgmt/msi/setup.exe/setup.rc -------------------------------------------------------------------------------- /sysmgmt/msi/setup.exe/setupui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/sysmgmt/msi/setup.exe/setupui.h -------------------------------------------------------------------------------- /sysmgmt/msi/setup.exe/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/sysmgmt/msi/setup.exe/utils.cpp -------------------------------------------------------------------------------- /sysmgmt/tasksched/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/sysmgmt/tasksched/Makefile -------------------------------------------------------------------------------- /sysmgmt/tasksched/ReadMe.Txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/sysmgmt/tasksched/ReadMe.Txt -------------------------------------------------------------------------------- /sysmgmt/tasksched/sa.Cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/sysmgmt/tasksched/sa.Cpp -------------------------------------------------------------------------------- /sysmgmt/windowspowershell/mcpp/selectstring/SelectStringSample.def: -------------------------------------------------------------------------------- 1 | EXPORTS -------------------------------------------------------------------------------- /sysmgmt/windowspowershell/mcpp/stopprocesssample/StopProcessSample.def: -------------------------------------------------------------------------------- 1 | EXPORTS -------------------------------------------------------------------------------- /sysmgmt/wmi/vc/methcli/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/sysmgmt/wmi/vc/methcli/Makefile -------------------------------------------------------------------------------- /tabletpc/advreco/cpp/AdvReco.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/tabletpc/advreco/cpp/AdvReco.h -------------------------------------------------------------------------------- /tabletpc/advreco/cpp/AdvReco.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/tabletpc/advreco/cpp/AdvReco.rc -------------------------------------------------------------------------------- /tabletpc/advreco/cpp/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/tabletpc/advreco/cpp/App.ico -------------------------------------------------------------------------------- /tabletpc/advreco/cpp/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/tabletpc/advreco/cpp/readme.txt -------------------------------------------------------------------------------- /tabletpc/advreco/cpp/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/tabletpc/advreco/cpp/resource.h -------------------------------------------------------------------------------- /tabletpc/autoclaims/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/tabletpc/autoclaims/readme.txt -------------------------------------------------------------------------------- /tabletpc/inkdivider/cs/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/tabletpc/inkdivider/cs/App.ico -------------------------------------------------------------------------------- /tabletpc/inkerase/cs/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/tabletpc/inkerase/cs/app.ico -------------------------------------------------------------------------------- /tabletpc/inkerase/cs/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/tabletpc/inkerase/cs/readme.txt -------------------------------------------------------------------------------- /tabletpc/inkhittest/cs/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/tabletpc/inkhittest/cs/App.ico -------------------------------------------------------------------------------- /tabletpc/inkzoom/cs/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/tabletpc/inkzoom/cs/App.ico -------------------------------------------------------------------------------- /tabletpc/inkzoom/cs/InkZoom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/tabletpc/inkzoom/cs/InkZoom.cs -------------------------------------------------------------------------------- /tabletpc/inkzoom/cs/InkZoom.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/tabletpc/inkzoom/cs/InkZoom.sln -------------------------------------------------------------------------------- /tabletpc/inkzoom/cs/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/tabletpc/inkzoom/cs/readme.txt -------------------------------------------------------------------------------- /tabletpc/multireco/cpp/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/tabletpc/multireco/cpp/App.ico -------------------------------------------------------------------------------- /tabletpc/recodll/cpp/RecoDll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/tabletpc/recodll/cpp/RecoDll.h -------------------------------------------------------------------------------- /tabletpc/recodll/cpp/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/tabletpc/recodll/cpp/StdAfx.cpp -------------------------------------------------------------------------------- /tabletpc/recodll/cpp/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/tabletpc/recodll/cpp/StdAfx.h -------------------------------------------------------------------------------- /tabletpc/recodll/cpp/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/tabletpc/recodll/cpp/readme.txt -------------------------------------------------------------------------------- /tabletpc/recodll/cpp/recodll.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/tabletpc/recodll/cpp/recodll.rc -------------------------------------------------------------------------------- /tabletpc/tipautoclaims/Car.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/tabletpc/tipautoclaims/Car.jpg -------------------------------------------------------------------------------- /tabletpc/tipautoclaims/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/tabletpc/tipautoclaims/app.ico -------------------------------------------------------------------------------- /tabletpc/tpcinfo/cpp/TPCInfo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/tabletpc/tpcinfo/cpp/TPCInfo.rc -------------------------------------------------------------------------------- /tabletpc/tpcinfo/cpp/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/tabletpc/tpcinfo/cpp/readme.txt -------------------------------------------------------------------------------- /tabletpc/tpcinfo/cpp/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/tabletpc/tpcinfo/cpp/resource.h -------------------------------------------------------------------------------- /web/WWSAPI/FileRepService/FileRep.rc: -------------------------------------------------------------------------------- 1 | LANGUAGE 0x9,0x1 2 | 1 11 "MSG00409.bin" 3 | -------------------------------------------------------------------------------- /web/WWSAPI/FileRepTool/Tool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/WWSAPI/FileRepTool/Tool.cpp -------------------------------------------------------------------------------- /web/WWSAPI/FileRepTool/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/WWSAPI/FileRepTool/common.h -------------------------------------------------------------------------------- /web/WWSAPI/ReadXml/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/WWSAPI/ReadXml/ReadMe.txt -------------------------------------------------------------------------------- /web/WWSAPI/ReadXml/ReadXml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/WWSAPI/ReadXml/ReadXml.cpp -------------------------------------------------------------------------------- /web/WWSAPI/ReadXml/ReadXml.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/WWSAPI/ReadXml/ReadXml.sln -------------------------------------------------------------------------------- /web/WWSAPI/XmlBuffer/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/WWSAPI/XmlBuffer/ReadMe.txt -------------------------------------------------------------------------------- /web/Wininet/Async/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/Wininet/Async/Readme.txt -------------------------------------------------------------------------------- /web/Wininet/Async/async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/Wininet/Async/async.c -------------------------------------------------------------------------------- /web/Wininet/Async/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/Wininet/Async/async.h -------------------------------------------------------------------------------- /web/Wininet/Async/async.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/Wininet/Async/async.sln -------------------------------------------------------------------------------- /web/Wininet/Async/async.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/Wininet/Async/async.vcproj -------------------------------------------------------------------------------- /web/Wininet/Async/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/Wininet/Async/makefile -------------------------------------------------------------------------------- /web/Wininet/Async/precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/Wininet/Async/precomp.h -------------------------------------------------------------------------------- /web/Wininet/httpauth/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/Wininet/httpauth/readme.txt -------------------------------------------------------------------------------- /web/behaviors/library/dataselect/dataselect.txt: -------------------------------------------------------------------------------- 1 | 1,One 2 | 2,Two 3 | 3,Three 4 | 4,Four 5 | 5,Five -------------------------------------------------------------------------------- /web/bits/bits_ie/BITS_IE.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/bits/bits_ie/BITS_IE.sln -------------------------------------------------------------------------------- /web/bits/bits_ie/BITS_IE.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/bits/bits_ie/BITS_IE.vcproj -------------------------------------------------------------------------------- /web/bits/bits_ie/bits_ie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/bits/bits_ie/bits_ie.cpp -------------------------------------------------------------------------------- /web/bits/bits_ie/bits_ie.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/bits/bits_ie/bits_ie.htm -------------------------------------------------------------------------------- /web/bits/bits_ie/bits_ie.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/bits/bits_ie/bits_ie.ico -------------------------------------------------------------------------------- /web/bits/bits_ie/bits_ie.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/bits/bits_ie/bits_ie.rc -------------------------------------------------------------------------------- /web/bits/bits_ie/install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/bits/bits_ie/install.js -------------------------------------------------------------------------------- /web/bits/bits_ie/readme.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/bits/bits_ie/readme.htm -------------------------------------------------------------------------------- /web/bits/bits_ie/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/bits/bits_ie/resource.h -------------------------------------------------------------------------------- /web/bits/bits_ie/uninstall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/bits/bits_ie/uninstall.js -------------------------------------------------------------------------------- /web/bits/control/CONTROLS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/bits/control/CONTROLS.cpp -------------------------------------------------------------------------------- /web/bits/control/CONTROLS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/bits/control/CONTROLS.sln -------------------------------------------------------------------------------- /web/bits/control/ReadMe.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/bits/control/ReadMe.htm -------------------------------------------------------------------------------- /web/bits/control/stdafx.h: -------------------------------------------------------------------------------- 1 | // not used -------------------------------------------------------------------------------- /web/bits/downloads/DOWNLOADS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/bits/downloads/DOWNLOADS.h -------------------------------------------------------------------------------- /web/bits/downloads/ReadMe.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/bits/downloads/ReadMe.htm -------------------------------------------------------------------------------- /web/bits/downloads/stdafx.h: -------------------------------------------------------------------------------- 1 | // not used -------------------------------------------------------------------------------- /web/bits/httpheader/ReadMe.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/bits/httpheader/ReadMe.htm -------------------------------------------------------------------------------- /web/bits/httpheader/stdafx.h: -------------------------------------------------------------------------------- 1 | // not used -------------------------------------------------------------------------------- /web/bits/peercaching/ReadMe.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/bits/peercaching/ReadMe.htm -------------------------------------------------------------------------------- /web/bits/peercaching/stdafx.h: -------------------------------------------------------------------------------- 1 | // not used -------------------------------------------------------------------------------- /web/bits/upload/cdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/bits/upload/cdialog.cpp -------------------------------------------------------------------------------- /web/bits/upload/cdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/bits/upload/cdialog.h -------------------------------------------------------------------------------- /web/bits/upload/cmonitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/bits/upload/cmonitor.cpp -------------------------------------------------------------------------------- /web/bits/upload/cmonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/bits/upload/cmonitor.h -------------------------------------------------------------------------------- /web/bits/upload/configure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/bits/upload/configure.js -------------------------------------------------------------------------------- /web/bits/upload/cpack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/bits/upload/cpack.cpp -------------------------------------------------------------------------------- /web/bits/upload/cpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/bits/upload/cpack.h -------------------------------------------------------------------------------- /web/bits/upload/dialog.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/bits/upload/dialog.rc -------------------------------------------------------------------------------- /web/bits/upload/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/bits/upload/main.cpp -------------------------------------------------------------------------------- /web/bits/upload/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/bits/upload/main.h -------------------------------------------------------------------------------- /web/bits/upload/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/bits/upload/makefile -------------------------------------------------------------------------------- /web/bits/upload/newupload.asp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/bits/upload/newupload.asp -------------------------------------------------------------------------------- /web/bits/upload/readme.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/bits/upload/readme.htm -------------------------------------------------------------------------------- /web/bits/upload/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/bits/upload/resource.h -------------------------------------------------------------------------------- /web/bits/upload/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/bits/upload/util.cpp -------------------------------------------------------------------------------- /web/bits/upload/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/bits/upload/util.h -------------------------------------------------------------------------------- /web/bits/uploads/ReadMe.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/bits/uploads/ReadMe.htm -------------------------------------------------------------------------------- /web/bits/uploads/UPLOADS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/bits/uploads/UPLOADS.cpp -------------------------------------------------------------------------------- /web/bits/uploads/UPLOADS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/bits/uploads/UPLOADS.h -------------------------------------------------------------------------------- /web/bits/uploads/UPLOADS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/bits/uploads/UPLOADS.sln -------------------------------------------------------------------------------- /web/bits/uploads/UPLOADS.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/bits/uploads/UPLOADS.vcproj -------------------------------------------------------------------------------- /web/bits/uploads/stdafx.h: -------------------------------------------------------------------------------- 1 | // not used -------------------------------------------------------------------------------- /web/ie55/adbanner/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/ie55/adbanner/Readme.txt -------------------------------------------------------------------------------- /web/ie55/adbanner/adbanner.htc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/ie55/adbanner/adbanner.htc -------------------------------------------------------------------------------- /web/ie55/adbanner/adbanner.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/ie55/adbanner/adbanner.htm -------------------------------------------------------------------------------- /web/ie55/dxtidemo/FRUIT.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/ie55/dxtidemo/FRUIT.GIF -------------------------------------------------------------------------------- /web/ie55/dxtidemo/FRUIT.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/ie55/dxtidemo/FRUIT.JPG -------------------------------------------------------------------------------- /web/ie55/dxtidemo/MOUSE.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/ie55/dxtidemo/MOUSE.GIF -------------------------------------------------------------------------------- /web/ie55/dxtidemo/MOUSE2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/ie55/dxtidemo/MOUSE2.gif -------------------------------------------------------------------------------- /web/ie55/dxtidemo/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/ie55/dxtidemo/Readme.txt -------------------------------------------------------------------------------- /web/ie55/dxtidemo/controlbg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/ie55/dxtidemo/controlbg.gif -------------------------------------------------------------------------------- /web/ie55/dxtidemo/copybg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/ie55/dxtidemo/copybg.gif -------------------------------------------------------------------------------- /web/ie55/dxtidemo/descbg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/ie55/dxtidemo/descbg.gif -------------------------------------------------------------------------------- /web/ie55/dxtidemo/dxtidemo.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/ie55/dxtidemo/dxtidemo.htm -------------------------------------------------------------------------------- /web/ie55/dxtidemo/iasample.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/ie55/dxtidemo/iasample.css -------------------------------------------------------------------------------- /web/ie55/editregions/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/ie55/editregions/Readme.txt -------------------------------------------------------------------------------- /web/ie55/menubehavior/menu.htc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/ie55/menubehavior/menu.htc -------------------------------------------------------------------------------- /web/ie55/menubehavior/menu.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/ie55/menubehavior/menu.htm -------------------------------------------------------------------------------- /web/ie55/popup/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/ie55/popup/Readme.txt -------------------------------------------------------------------------------- /web/ie6/htmleditor/UI_bold.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/ie6/htmleditor/UI_bold.gif -------------------------------------------------------------------------------- /web/ie6/htmleditor/UI_new.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/ie6/htmleditor/UI_new.gif -------------------------------------------------------------------------------- /web/ie6/htmleditor/UI_open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/ie6/htmleditor/UI_open.gif -------------------------------------------------------------------------------- /web/ie6/htmleditor/UI_paste.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/ie6/htmleditor/UI_paste.gif -------------------------------------------------------------------------------- /web/ie6/htmleditor/UI_redo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/ie6/htmleditor/UI_redo.gif -------------------------------------------------------------------------------- /web/ie6/htmleditor/menu.htc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/web/ie6/htmleditor/menu.htc -------------------------------------------------------------------------------- /web/xml/xmllite/xmllitelimitedreader/cpp/verylongname.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /winbase/PerfCounters/Basic/CPP/ucs.rc: -------------------------------------------------------------------------------- 1 | #include "ucsCounters.rc" 2 | -------------------------------------------------------------------------------- /winbase/PerfCounters/GlobalAggregate/CPP/gas.rc: -------------------------------------------------------------------------------- 1 | #include "gasCounters.rc" 2 | -------------------------------------------------------------------------------- /winbase/debug/bpsamp/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/debug/bpsamp/Main.c -------------------------------------------------------------------------------- /winbase/debug/bpsamp/Utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/debug/bpsamp/Utils.c -------------------------------------------------------------------------------- /winbase/debug/dbh/dbh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/debug/dbh/dbh.cpp -------------------------------------------------------------------------------- /winbase/debug/dbh/dbh.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/debug/dbh/dbh.sln -------------------------------------------------------------------------------- /winbase/debug/dbh/dbh.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/debug/dbh/dbh.vcproj -------------------------------------------------------------------------------- /winbase/debug/dbh/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/debug/dbh/makefile -------------------------------------------------------------------------------- /winbase/debug/dbh/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/debug/dbh/readme.txt -------------------------------------------------------------------------------- /winbase/debug/wct/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/debug/wct/ReadMe.txt -------------------------------------------------------------------------------- /winbase/debug/wct/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/debug/wct/makefile -------------------------------------------------------------------------------- /winbase/io/dledit/DLEdit.Cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/io/dledit/DLEdit.Cpp -------------------------------------------------------------------------------- /winbase/io/dledit/DLEdit.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/io/dledit/DLEdit.sln -------------------------------------------------------------------------------- /winbase/io/dledit/ReadMe.Txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/io/dledit/ReadMe.Txt -------------------------------------------------------------------------------- /winbase/io/fcopy/FCopy.Cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/io/fcopy/FCopy.Cpp -------------------------------------------------------------------------------- /winbase/io/fcopy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/io/fcopy/Makefile -------------------------------------------------------------------------------- /winbase/io/fcopy/ReadMe.Txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/io/fcopy/ReadMe.Txt -------------------------------------------------------------------------------- /winbase/io/mount/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/io/mount/Makefile -------------------------------------------------------------------------------- /winbase/io/mount/Mount.Cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/io/mount/Mount.Cpp -------------------------------------------------------------------------------- /winbase/io/mount/ReadMe.Txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/io/mount/ReadMe.Txt -------------------------------------------------------------------------------- /winbase/io/mount/UnMount.Cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/io/mount/UnMount.Cpp -------------------------------------------------------------------------------- /winbase/iscsi/ISCSI.SLN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/iscsi/ISCSI.SLN -------------------------------------------------------------------------------- /winbase/iscsi/ISCSICLI.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/iscsi/ISCSICLI.C -------------------------------------------------------------------------------- /winbase/iscsi/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/iscsi/README.TXT -------------------------------------------------------------------------------- /winbase/rdc/RdcSample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/rdc/RdcSample.sln -------------------------------------------------------------------------------- /winbase/rdc/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/rdc/Readme.txt -------------------------------------------------------------------------------- /winbase/rdc/client/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/rdc/client/stdafx.h -------------------------------------------------------------------------------- /winbase/rdc/server/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/rdc/server/globals.h -------------------------------------------------------------------------------- /winbase/rdc/server/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/rdc/server/stdafx.h -------------------------------------------------------------------------------- /winbase/registry/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/registry/Makefile -------------------------------------------------------------------------------- /winbase/registry/ReadMe.Txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/registry/ReadMe.Txt -------------------------------------------------------------------------------- /winbase/service/Client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/service/Client.c -------------------------------------------------------------------------------- /winbase/service/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/service/Makefile -------------------------------------------------------------------------------- /winbase/service/ReadMe.Txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/service/ReadMe.Txt -------------------------------------------------------------------------------- /winbase/service/Service.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/service/Service.H -------------------------------------------------------------------------------- /winbase/service/Service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/service/Service.c -------------------------------------------------------------------------------- /winbase/service/Simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/service/Simple.c -------------------------------------------------------------------------------- /winbase/vss/vshadow/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/vss/vshadow/macros.h -------------------------------------------------------------------------------- /winbase/vss/vshadow/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/vss/vshadow/makefile -------------------------------------------------------------------------------- /winbase/vss/vshadow/shadow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/vss/vshadow/shadow.h -------------------------------------------------------------------------------- /winbase/vss/vshadow/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/vss/vshadow/sources -------------------------------------------------------------------------------- /winbase/vss/vshadow/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/vss/vshadow/stdafx.h -------------------------------------------------------------------------------- /winbase/vss/vshadow/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/vss/vshadow/util.h -------------------------------------------------------------------------------- /winbase/vss/vshadow/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/vss/vshadow/writer.h -------------------------------------------------------------------------------- /winbase/wtsapi/API.Cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/wtsapi/API.Cpp -------------------------------------------------------------------------------- /winbase/wtsapi/API.Rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/wtsapi/API.Rc -------------------------------------------------------------------------------- /winbase/wtsapi/API.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/wtsapi/API.h -------------------------------------------------------------------------------- /winbase/wtsapi/APIDoc.Cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/wtsapi/APIDoc.Cpp -------------------------------------------------------------------------------- /winbase/wtsapi/APIDoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/wtsapi/APIDoc.h -------------------------------------------------------------------------------- /winbase/wtsapi/APIView.Cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/wtsapi/APIView.Cpp -------------------------------------------------------------------------------- /winbase/wtsapi/APIView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/wtsapi/APIView.h -------------------------------------------------------------------------------- /winbase/wtsapi/MainFrm.Cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/wtsapi/MainFrm.Cpp -------------------------------------------------------------------------------- /winbase/wtsapi/MainFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/wtsapi/MainFrm.h -------------------------------------------------------------------------------- /winbase/wtsapi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/wtsapi/Makefile -------------------------------------------------------------------------------- /winbase/wtsapi/MessageDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/wtsapi/MessageDlg.h -------------------------------------------------------------------------------- /winbase/wtsapi/ProcessDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/wtsapi/ProcessDlg.h -------------------------------------------------------------------------------- /winbase/wtsapi/QueryDlg.Cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/wtsapi/QueryDlg.Cpp -------------------------------------------------------------------------------- /winbase/wtsapi/QueryDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/wtsapi/QueryDlg.h -------------------------------------------------------------------------------- /winbase/wtsapi/ReadMe.Txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/wtsapi/ReadMe.Txt -------------------------------------------------------------------------------- /winbase/wtsapi/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/wtsapi/Resource.h -------------------------------------------------------------------------------- /winbase/wtsapi/ServerDlg.Cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/wtsapi/ServerDlg.Cpp -------------------------------------------------------------------------------- /winbase/wtsapi/ServerDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/wtsapi/ServerDlg.h -------------------------------------------------------------------------------- /winbase/wtsapi/SessionDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/wtsapi/SessionDlg.h -------------------------------------------------------------------------------- /winbase/wtsapi/ShutdownDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/wtsapi/ShutdownDlg.h -------------------------------------------------------------------------------- /winbase/wtsapi/StdAfx.Cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/wtsapi/StdAfx.Cpp -------------------------------------------------------------------------------- /winbase/wtsapi/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/wtsapi/StdAfx.h -------------------------------------------------------------------------------- /winbase/wtsapi/WaitDlg.Cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/wtsapi/WaitDlg.Cpp -------------------------------------------------------------------------------- /winbase/wtsapi/WaitDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/wtsapi/WaitDlg.h -------------------------------------------------------------------------------- /winbase/wtsapi/res/API.Ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/wtsapi/res/API.Ico -------------------------------------------------------------------------------- /winbase/wtsapi/res/API.Rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winbase/wtsapi/res/API.Rc2 -------------------------------------------------------------------------------- /winui/CWMFEx/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/CWMFEx/ReadMe.txt -------------------------------------------------------------------------------- /winui/ChooseFont/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/ChooseFont/ReadMe.txt -------------------------------------------------------------------------------- /winui/controls/common/property/Property.h: -------------------------------------------------------------------------------- 1 | #include "resource.h" 2 | 3 | -------------------------------------------------------------------------------- /winui/cursor/BullsEye.Cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/cursor/BullsEye.Cur -------------------------------------------------------------------------------- /winui/cursor/Cursor.Def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/cursor/Cursor.Def -------------------------------------------------------------------------------- /winui/cursor/Cursor.Rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/cursor/Cursor.Rc -------------------------------------------------------------------------------- /winui/cursor/Cursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/cursor/Cursor.c -------------------------------------------------------------------------------- /winui/cursor/Cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/cursor/Cursor.h -------------------------------------------------------------------------------- /winui/cursor/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/cursor/Makefile -------------------------------------------------------------------------------- /winui/fulldrag/fulldrag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/fulldrag/fulldrag.c -------------------------------------------------------------------------------- /winui/fulldrag/fulldrag.h: -------------------------------------------------------------------------------- 1 | /* 2 | * fulldrag.h 3 | */ 4 | 5 | #define STRICT 6 | #include 7 | -------------------------------------------------------------------------------- /winui/fulldrag/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/fulldrag/makefile -------------------------------------------------------------------------------- /winui/input/tsf/tsfapps/immpad-interim/ImmPad.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" 4 | -------------------------------------------------------------------------------- /winui/input/tsf/tsfapps/immpad-level1/ImmPad.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" 4 | -------------------------------------------------------------------------------- /winui/input/tsf/tsfapps/immpad-level2/ImmPad.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" 4 | -------------------------------------------------------------------------------- /winui/input/tsf/tsfapps/immpad-level3-step2/ImmPad.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" 4 | -------------------------------------------------------------------------------- /winui/input/tsf/tsfapps/immpad-level3-step3/ImmPad.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" 4 | -------------------------------------------------------------------------------- /winui/input/tsf/tsfapps/immpad-level3/ImmPad.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" 4 | -------------------------------------------------------------------------------- /winui/input/tsf/tsfapps/tsfpad-hybrid/TsfPad.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" 4 | -------------------------------------------------------------------------------- /winui/input/tsf/tsfapps/tsfpad-step1/TsfPad.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" 4 | -------------------------------------------------------------------------------- /winui/input/tsf/tsfapps/tsfpad-step2/TsfPad.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" 4 | -------------------------------------------------------------------------------- /winui/input/tsf/tsfapps/tsfpad-step3/TsfPad.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" 4 | -------------------------------------------------------------------------------- /winui/input/tsf/tsfapps/tsfpad-step4/TsfPad.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" 4 | -------------------------------------------------------------------------------- /winui/msaa/CPP/AccServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/msaa/CPP/AccServer.cpp -------------------------------------------------------------------------------- /winui/msaa/CPP/AccServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/msaa/CPP/AccServer.h -------------------------------------------------------------------------------- /winui/msaa/CPP/AccServer.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/msaa/CPP/AccServer.ico -------------------------------------------------------------------------------- /winui/msaa/CPP/AccServer.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/msaa/CPP/AccServer.rc -------------------------------------------------------------------------------- /winui/msaa/CPP/AccServer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/msaa/CPP/AccServer.sln -------------------------------------------------------------------------------- /winui/msaa/CPP/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/msaa/CPP/resource.h -------------------------------------------------------------------------------- /winui/msaa/CPP/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/msaa/CPP/stdafx.h -------------------------------------------------------------------------------- /winui/msaa/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/msaa/readme.txt -------------------------------------------------------------------------------- /winui/obscure/Obscure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/obscure/Obscure.c -------------------------------------------------------------------------------- /winui/obscure/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/obscure/makefile -------------------------------------------------------------------------------- /winui/pictures/pictureacquisition/readme.txt: -------------------------------------------------------------------------------- 1 | This is a sample demonstrating the use of IPhotoAcquire methods. 2 | -------------------------------------------------------------------------------- /winui/sendto/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/sendto/makefile -------------------------------------------------------------------------------- /winui/sendto/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/sendto/readme.txt -------------------------------------------------------------------------------- /winui/sendto/sendto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/sendto/sendto.c -------------------------------------------------------------------------------- /winui/sendto/sendto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/sendto/sendto.h -------------------------------------------------------------------------------- /winui/sendto/sendto.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/sendto/sendto.rc -------------------------------------------------------------------------------- /winui/sideshow/tasks/Task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/sideshow/tasks/Task.h -------------------------------------------------------------------------------- /winui/speech/engines/samplettsengine/makevoice/MakeVoice.rc: -------------------------------------------------------------------------------- 1 | #include "version.rc2" -------------------------------------------------------------------------------- /winui/speech/reco/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/speech/reco/Readme.txt -------------------------------------------------------------------------------- /winui/speech/reco/Reco.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/speech/reco/Reco.sln -------------------------------------------------------------------------------- /winui/speech/reco/itn_j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/speech/reco/itn_j.xml -------------------------------------------------------------------------------- /winui/speech/reco/reco.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/speech/reco/reco.cpp -------------------------------------------------------------------------------- /winui/speech/reco/reco.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/speech/reco/reco.h -------------------------------------------------------------------------------- /winui/speech/reco/reco.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/speech/reco/reco.ico -------------------------------------------------------------------------------- /winui/speech/reco/reco.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/speech/reco/reco.rc -------------------------------------------------------------------------------- /winui/speech/reco/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/speech/reco/resource.h -------------------------------------------------------------------------------- /winui/speech/reco/small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/speech/reco/small.ico -------------------------------------------------------------------------------- /winui/speech/reco/sol.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/speech/reco/sol.xml -------------------------------------------------------------------------------- /winui/speech/reco/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/speech/reco/stdafx.cpp -------------------------------------------------------------------------------- /winui/speech/reco/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/speech/reco/stdafx.h -------------------------------------------------------------------------------- /winui/tallmenu/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/tallmenu/makefile -------------------------------------------------------------------------------- /winui/tallmenu/tallmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/tallmenu/tallmenu.c -------------------------------------------------------------------------------- /winui/tallmenu/tallmenu.h: -------------------------------------------------------------------------------- 1 | /* 2 | * tallmenu.h 3 | */ 4 | 5 | #define STRICT 6 | #include 7 | -------------------------------------------------------------------------------- /winui/tallmenu/tallmenu.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/tallmenu/tallmenu.rc -------------------------------------------------------------------------------- /winui/tsf/tsfapp/afxres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/tsf/tsfapp/afxres.h -------------------------------------------------------------------------------- /winui/tsf/tsfapp/context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/tsf/tsfapp/context.cpp -------------------------------------------------------------------------------- /winui/tsf/tsfapp/dataobj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/tsf/tsfapp/dataobj.cpp -------------------------------------------------------------------------------- /winui/tsf/tsfapp/dataobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/tsf/tsfapp/dataobj.h -------------------------------------------------------------------------------- /winui/tsf/tsfapp/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/tsf/tsfapp/globals.h -------------------------------------------------------------------------------- /winui/tsf/tsfapp/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/tsf/tsfapp/makefile -------------------------------------------------------------------------------- /winui/tsf/tsfapp/persist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/tsf/tsfapp/persist.cpp -------------------------------------------------------------------------------- /winui/tsf/tsfapp/propldr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/tsf/tsfapp/propldr.cpp -------------------------------------------------------------------------------- /winui/tsf/tsfapp/propldr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/tsf/tsfapp/propldr.h -------------------------------------------------------------------------------- /winui/tsf/tsfapp/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/tsf/tsfapp/resource.h -------------------------------------------------------------------------------- /winui/tsf/tsfapp/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/tsf/tsfapp/test.cpp -------------------------------------------------------------------------------- /winui/tsf/tsfapp/tsfapp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/tsf/tsfapp/tsfapp.cpp -------------------------------------------------------------------------------- /winui/tsf/tsfapp/tsfapp.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/tsf/tsfapp/tsfapp.rc -------------------------------------------------------------------------------- /winui/tsf/tsfapp/tsfedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/tsf/tsfapp/tsfedit.cpp -------------------------------------------------------------------------------- /winui/tsf/tsfapp/tsfedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/tsf/tsfapp/tsfedit.h -------------------------------------------------------------------------------- /winui/tsf/tsfapp/tsfwnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/tsf/tsfapp/tsfwnd.cpp -------------------------------------------------------------------------------- /winui/tsf/tsfapp/tsfwnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/tsf/tsfapp/tsfwnd.h -------------------------------------------------------------------------------- /winui/tsf/tsfapp/winres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/tsf/tsfapp/winres.h -------------------------------------------------------------------------------- /winui/tsf/tsfcase/case.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/tsf/tsfcase/case.cpp -------------------------------------------------------------------------------- /winui/tsf/tsfcase/case.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/tsf/tsfcase/case.def -------------------------------------------------------------------------------- /winui/tsf/tsfcase/case.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/tsf/tsfcase/case.h -------------------------------------------------------------------------------- /winui/tsf/tsfcase/case.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/tsf/tsfcase/case.ico -------------------------------------------------------------------------------- /winui/tsf/tsfcase/case.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/tsf/tsfcase/case.rc -------------------------------------------------------------------------------- /winui/tsf/tsfcase/editsess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/tsf/tsfcase/editsess.h -------------------------------------------------------------------------------- /winui/tsf/tsfcase/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/tsf/tsfcase/globals.h -------------------------------------------------------------------------------- /winui/tsf/tsfcase/hello.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/tsf/tsfcase/hello.cpp -------------------------------------------------------------------------------- /winui/tsf/tsfcase/keys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/tsf/tsfcase/keys.cpp -------------------------------------------------------------------------------- /winui/tsf/tsfcase/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/tsf/tsfcase/makefile -------------------------------------------------------------------------------- /winui/tsf/tsfcase/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/tsf/tsfcase/readme.txt -------------------------------------------------------------------------------- /winui/tsf/tsfcase/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/tsf/tsfcase/resource.h -------------------------------------------------------------------------------- /winui/tsf/tsfcase/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/tsf/tsfcase/server.cpp -------------------------------------------------------------------------------- /winui/tsf/tsfcase/snoop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/tsf/tsfcase/snoop.cpp -------------------------------------------------------------------------------- /winui/tsf/tsfcase/snoop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/tsf/tsfcase/snoop.h -------------------------------------------------------------------------------- /winui/tsf/tsfmark/dap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/tsf/tsfmark/dap.cpp -------------------------------------------------------------------------------- /winui/tsf/tsfmark/editsess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/tsf/tsfmark/editsess.h -------------------------------------------------------------------------------- /winui/tsf/tsfmark/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/tsf/tsfmark/globals.h -------------------------------------------------------------------------------- /winui/tsf/tsfmark/keys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/tsf/tsfmark/keys.cpp -------------------------------------------------------------------------------- /winui/tsf/tsfmark/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/tsf/tsfmark/makefile -------------------------------------------------------------------------------- /winui/tsf/tsfmark/mark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/tsf/tsfmark/mark.cpp -------------------------------------------------------------------------------- /winui/tsf/tsfmark/mark.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/tsf/tsfmark/mark.def -------------------------------------------------------------------------------- /winui/tsf/tsfmark/mark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/tsf/tsfmark/mark.h -------------------------------------------------------------------------------- /winui/tsf/tsfmark/mark.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/tsf/tsfmark/mark.ico -------------------------------------------------------------------------------- /winui/tsf/tsfmark/mark.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/tsf/tsfmark/mark.rc -------------------------------------------------------------------------------- /winui/tsf/tsfmark/pstore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/tsf/tsfmark/pstore.cpp -------------------------------------------------------------------------------- /winui/tsf/tsfmark/pstore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/tsf/tsfmark/pstore.h -------------------------------------------------------------------------------- /winui/tsf/tsfmark/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/tsf/tsfmark/readme.txt -------------------------------------------------------------------------------- /winui/tsf/tsfmark/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/tsf/tsfmark/resource.h -------------------------------------------------------------------------------- /winui/tsf/tsfmark/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/winui/tsf/tsfmark/server.cpp -------------------------------------------------------------------------------- /xps/FlowText/FlowText.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/xps/FlowText/FlowText.sln -------------------------------------------------------------------------------- /xps/FlowText/FlowText.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/xps/FlowText/FlowText.vcproj -------------------------------------------------------------------------------- /xps/FlowText/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/xps/FlowText/README.txt -------------------------------------------------------------------------------- /xps/FlowText/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/xps/FlowText/common.h -------------------------------------------------------------------------------- /xps/XpsOMPrint/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/xps/XpsOMPrint/README.txt -------------------------------------------------------------------------------- /xps/XpsOMPrint/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/xps/XpsOMPrint/main.cpp -------------------------------------------------------------------------------- /xps/XpsRollup/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/xps/XpsRollup/README.txt -------------------------------------------------------------------------------- /xps/XpsRollup/XpsRollup.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/xps/XpsRollup/XpsRollup.sln -------------------------------------------------------------------------------- /xps/XpsRollup/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugparty/Win7_SDK_Samples/HEAD/xps/XpsRollup/main.cpp --------------------------------------------------------------------------------