gitextract__5xouun8/ ├── .gitattributes ├── .github/ │ └── ISSUE_TEMPLATE/ │ └── bug_report.md ├── .gitignore ├── BuildToolProperty.props ├── CMakeLists.txt ├── LICENSE ├── PropertySheet.props ├── README.md ├── READMEJP.md ├── appveyor.yml ├── avifile/ │ ├── CMakeLists.txt │ ├── Makefile.in │ ├── avifile.def │ ├── avifile.dll16.spec │ ├── avifile.vcxproj │ └── main.c ├── comm/ │ ├── CMakeLists.txt │ ├── Makefile.in │ ├── comm.def │ ├── comm.drv16.spec │ └── comm.vcxproj ├── commctrl/ │ ├── CMakeLists.txt │ ├── commctrl.c │ ├── commctrl.def │ ├── commctrl.dll16.spec │ └── commctrl.vcxproj ├── commdlg/ │ ├── CMakeLists.txt │ ├── cdlg16.h │ ├── colordlg.c │ ├── commdlg.def │ ├── commdlg.dll16.spec │ ├── commdlg.rc │ ├── commdlg.vcxproj │ ├── commdlg.vcxproj.filters │ ├── filedlg.c │ ├── finddlg.c │ ├── fontdlg.c │ ├── printdlg.c │ └── resource.h ├── compobj/ │ ├── CMakeLists.txt │ ├── Makefile.in │ ├── compobj.c │ ├── compobj.def │ ├── compobj.dll16.spec │ └── compobj.vcxproj ├── convertwinefile/ │ ├── convertwinefile.vcxproj │ ├── convertwinefile.vcxproj.filters │ └── main.c ├── convspec/ │ ├── CMakeLists.txt │ ├── build.h │ ├── convspec.c │ ├── convspec.vcxproj │ ├── convspec.vcxproj.filters │ ├── import.c │ ├── main.c.h │ ├── parser.c │ ├── relay.c │ ├── res16.c │ ├── res32.c │ ├── spec16.c │ ├── spec32.c │ ├── utils.c │ └── ver.h ├── ctl3d/ │ ├── CMakeLists.txt │ ├── Makefile.in │ ├── ctl3d.c │ ├── ctl3d.def │ ├── ctl3d.dll16.spec │ └── ctl3d.vcxproj ├── ctl3dv2/ │ ├── CMakeLists.txt │ ├── Makefile.in │ ├── ctl3d.c │ ├── ctl3dv2.def │ ├── ctl3dv2.dll16.spec │ └── ctl3dv2.vcxproj ├── ddeml/ │ ├── CMakeLists.txt │ ├── Makefile.in │ ├── ddeml.c │ ├── ddeml.def │ ├── ddeml.dll16.spec │ └── ddeml.vcxproj ├── dispdib/ │ ├── CMakeLists.txt │ ├── Makefile.in │ ├── dispdib.c │ ├── dispdib.def │ ├── dispdib.dll16.spec │ └── dispdib.vcxproj ├── display/ │ ├── CMakeLists.txt │ ├── Makefile.in │ ├── display.c │ ├── display.def │ ├── display.drv16.spec │ ├── display.rc │ └── display.vcxproj ├── dummy.c ├── dummydll/ │ └── vgaoem.fon ├── gdi/ │ ├── CMakeLists.txt │ ├── bidi.c │ ├── env.c │ ├── gdi.c │ ├── gdi.def │ ├── gdi.exe16.spec │ ├── gdi.vcxproj │ ├── gdi.vcxproj.filters │ ├── metafile.c │ └── printdrv.c ├── gvm/ │ ├── CMakeLists.txt │ ├── gvm-interface.h │ ├── gvm.c │ ├── gvm.def │ ├── gvm.h │ ├── gvm.vcxproj │ └── gvm.vcxproj.filters ├── haxmvm/ │ ├── CMakeLists.txt │ ├── haxmvm.c │ ├── haxmvm.h │ ├── haxmvm.vcxproj │ └── haxmvm.vcxproj.filters ├── install (no console).lnk ├── install.inf ├── install.lnk ├── installw.inf ├── keyboard/ │ ├── CMakeLists.txt │ ├── keyboard.c │ ├── keyboard.def │ ├── keyboard.drv16.spec │ ├── keyboard.vcxproj │ └── keyboard.vcxproj.filters ├── krnl386/ │ ├── CMakeLists.txt │ ├── Makefile.in │ ├── atom.c │ ├── compat.c │ ├── conf.c │ ├── dma.c │ ├── dosaspi.c │ ├── dosdev.c │ ├── dosexe.c │ ├── dosexe.h │ ├── dosmem.c │ ├── dosvm.c │ ├── error.c │ ├── file.c │ ├── fpu.c │ ├── global.c │ ├── instr.c │ ├── int09.c │ ├── int10.c │ ├── int13.c │ ├── int15.c │ ├── int16.c │ ├── int21.c │ ├── int25.c │ ├── int26.c │ ├── int2f.c │ ├── int31.c │ ├── int33.c │ ├── int67.c │ ├── interrupts.c │ ├── ioports.c │ ├── kernel.c │ ├── kernel16_private.h │ ├── krnl386.def │ ├── krnl386.exe16.spec │ ├── krnl386.vcxproj │ ├── krnl386.vcxproj.filters │ ├── local.c │ ├── ne_module.c │ ├── ne_segment.c │ ├── registry.c │ ├── relay.c │ ├── resource.c │ ├── selector.c │ ├── snoop.c │ ├── soundblaster.c │ ├── stub.c │ ├── syslevel.c │ ├── task.c │ ├── thunk.c │ ├── timer.c │ ├── utthunk.c │ ├── vdd.c │ ├── version.rc │ ├── vga.c │ ├── vga.h │ ├── vxd.c │ ├── wow_handle.c │ └── wowthunk.c ├── lzexpand/ │ ├── CMakeLists.txt │ ├── lzexpand.c │ ├── lzexpand.def │ ├── lzexpand.dll16.spec │ ├── lzexpand.vcxproj │ ├── lzexpand.vcxproj.filters │ └── wine_lzexpand.c ├── mmsystem/ │ ├── CMakeLists.txt │ ├── Makefile.in │ ├── driver.c │ ├── mci16.c │ ├── message16.c │ ├── mmio16.c │ ├── mmsystem.c │ ├── mmsystem.def │ ├── mmsystem.dll16.spec │ ├── mmsystem.vcxproj │ ├── playsound.c │ └── winemm16.h ├── mouse/ │ ├── CMakeLists.txt │ ├── Makefile.in │ ├── mouse.c │ ├── mouse.def │ ├── mouse.drv16.spec │ ├── mouse.rc │ └── mouse.vcxproj ├── msacm/ │ ├── CMakeLists.txt │ ├── Makefile.in │ ├── msacm.c │ ├── msacm.def │ ├── msacm.dll16.spec │ ├── msacm.vcxproj │ └── wineacm16.h ├── msvideo/ │ ├── CMakeLists.txt │ ├── Makefile.in │ ├── msvideo.def │ ├── msvideo.dll16.spec │ ├── msvideo.vcxproj │ ├── msvideo16.c │ └── vfw16.h ├── nddeapi/ │ ├── CMakeLists.txt │ ├── nddeapi.c │ ├── nddeapi.def │ ├── nddeapi.dll16.spec │ └── nddeapi.vcxproj ├── netapi/ │ ├── CMakeLists.txt │ ├── Makefile.in │ ├── netapi.c │ ├── netapi.def │ ├── netapi.dll16.spec │ └── netapi.vcxproj ├── ntvdm/ │ ├── CMakeLists.txt │ ├── main.c │ ├── ntvdm.def │ ├── ntvdm.dll.spec │ └── ntvdm.vcxproj ├── ole2/ │ ├── .gitignore │ ├── CMakeLists.txt │ ├── Makefile.in │ ├── hglobalstream.c │ ├── ifs.h │ ├── ifs.idl │ ├── ifs_thunk.c │ ├── ifs_thunk.h │ ├── memlockbytes.c │ ├── ole2.c │ ├── ole2.def │ ├── ole2.dll16.spec │ └── ole2.vcxproj ├── ole2conv/ │ ├── CMakeLists.txt │ ├── Makefile.in │ ├── ole2conv.def │ ├── ole2conv.dll16.spec │ └── ole2conv.vcxproj ├── ole2disp/ │ ├── CMakeLists.txt │ ├── Makefile.in │ ├── ole2disp.c │ ├── ole2disp.def │ ├── ole2disp.dll16.spec │ ├── ole2disp.h │ ├── ole2disp.vcxproj │ ├── var/ │ │ ├── resource.h │ │ ├── varformat.c │ │ ├── variant.c │ │ ├── variant.h │ │ └── vartype.c │ ├── wine_typelib.c │ └── wine_typelib.h ├── ole2nls/ │ ├── CMakeLists.txt │ ├── Makefile.in │ ├── ole2nls.c │ ├── ole2nls.def │ ├── ole2nls.dll16.spec │ ├── ole2nls.vcxproj │ └── version.rc ├── ole2prox/ │ ├── CMakeLists.txt │ ├── Makefile.in │ ├── ole2prox.def │ ├── ole2prox.dll16.spec │ └── ole2prox.vcxproj ├── ole2thk/ │ ├── CMakeLists.txt │ ├── Makefile.in │ ├── ole2thk.def │ ├── ole2thk.dll16.spec │ └── ole2thk.vcxproj ├── olecli/ │ ├── CMakeLists.txt │ ├── Makefile.in │ ├── olecli.c │ ├── olecli.def │ ├── olecli.dll16.spec │ ├── olecli.h │ └── olecli.vcxproj ├── olesvr/ │ ├── CMakeLists.txt │ ├── Makefile.in │ ├── olesvr.c │ ├── olesvr.def │ ├── olesvr.dll16.spec │ ├── olesvr.vcxproj │ └── olesvr.vcxproj.filters ├── otvdm/ │ ├── CMakeLists.txt │ ├── otvdm.rc │ ├── otvdm.vcxproj │ ├── otvdm.vcxproj.filters │ ├── otvdmw.vcxproj │ ├── otvdmw.vcxproj.filters │ ├── resource.h │ ├── visualstyle.manifest │ └── winevdm.c ├── otvdm.ini ├── otvdm.sln ├── regedit/ │ ├── CMakeLists.txt │ ├── Makefile.in │ ├── regedit.c │ ├── regedit.def │ ├── regedit.exe16.spec │ └── regedit.vcxproj ├── rmpatch/ │ ├── CMakeLists.txt │ ├── Makefile.in │ ├── instr.c │ ├── rmpatch.c │ ├── rmpatch.def │ ├── rmpatch.dll16.spec │ └── rmpatch.vcxproj ├── shell/ │ ├── CMakeLists.txt │ ├── shell.c │ ├── shell.def │ ├── shell.dll16.spec │ ├── shell.vcxproj │ └── shell.vcxproj.filters ├── sound/ │ ├── CMakeLists.txt │ ├── Makefile.in │ ├── sound.c │ ├── sound.def │ ├── sound.drv16.spec │ └── sound.vcxproj ├── storage/ │ ├── CMakeLists.txt │ ├── Makefile.in │ ├── ifs.h │ ├── storage.c │ ├── storage.def │ ├── storage.dll16.spec │ └── storage.vcxproj ├── system/ │ ├── CMakeLists.txt │ ├── Makefile.in │ ├── system.c │ ├── system.def │ ├── system.drv16.spec │ └── system.vcxproj ├── timer/ │ ├── CMakeLists.txt │ ├── timer.c │ ├── timer.def │ ├── timer.drv16.spec │ └── timer.vcxproj ├── toolhelp/ │ ├── CMakeLists.txt │ ├── Makefile.in │ ├── toolhelp.c │ ├── toolhelp.def │ ├── toolhelp.dll16.spec │ ├── toolhelp.h │ └── toolhelp.vcxproj ├── tools/ │ └── package.ps1 ├── typelib/ │ ├── CMakeLists.txt │ ├── Makefile.in │ ├── typelib.c │ ├── typelib.def │ ├── typelib.dll16.spec │ └── typelib.vcxproj ├── uninstall.reg ├── user/ │ ├── CMakeLists.txt │ ├── bidi.c │ ├── comm.c │ ├── dde.c │ ├── dialog.c │ ├── hook.c │ ├── message.c │ ├── message_table.h │ ├── network.c │ ├── stub.c │ ├── user.c │ ├── user.def │ ├── user.exe16.spec │ ├── user.rc │ ├── user.vcxproj │ ├── user.vcxproj.filters │ ├── user_private.h │ ├── window.c │ └── winhelp.c ├── ver/ │ ├── CMakeLists.txt │ ├── Makefile.in │ ├── ver.def │ ├── ver.dll16.spec │ ├── ver.vcxproj │ └── version.c ├── vm86/ │ ├── CMakeLists.txt │ ├── COPYING.txt │ ├── mame/ │ │ ├── emu/ │ │ │ └── cpu/ │ │ │ ├── i386/ │ │ │ │ ├── cycles.h │ │ │ │ ├── i386.c │ │ │ │ ├── i386.h │ │ │ │ ├── i386dasm.c │ │ │ │ ├── i386op16.c │ │ │ │ ├── i386op32.c │ │ │ │ ├── i386ops.c │ │ │ │ ├── i386ops.h │ │ │ │ ├── i386priv.h │ │ │ │ ├── i486ops.c │ │ │ │ ├── pentops.c │ │ │ │ ├── readme_msdos_player.txt │ │ │ │ └── x87ops.c │ │ │ ├── i386.old/ │ │ │ │ ├── cycles.h │ │ │ │ ├── i386.c │ │ │ │ ├── i386.h │ │ │ │ ├── i386dasm.c │ │ │ │ ├── i386op16.c │ │ │ │ ├── i386op32.c │ │ │ │ ├── i386ops.c │ │ │ │ ├── i386ops.h │ │ │ │ ├── i386priv.h │ │ │ │ ├── i486ops.c │ │ │ │ ├── pentops.c │ │ │ │ ├── readme_msdos_player.txt │ │ │ │ └── x87ops.c │ │ │ ├── i86/ │ │ │ │ ├── ea.h │ │ │ │ ├── host.h │ │ │ │ ├── i286.c │ │ │ │ ├── i286.h │ │ │ │ ├── i86.c │ │ │ │ ├── i86.h │ │ │ │ ├── i86.txt │ │ │ │ ├── i86priv.h │ │ │ │ ├── i86time.c │ │ │ │ ├── instr186.c │ │ │ │ ├── instr186.h │ │ │ │ ├── instr286.c │ │ │ │ ├── instr286.h │ │ │ │ ├── instr86.c │ │ │ │ ├── instr86.h │ │ │ │ ├── modrm.h │ │ │ │ ├── modrm286.h │ │ │ │ ├── readme_msdos_player.txt │ │ │ │ ├── table186.h │ │ │ │ ├── table286.h │ │ │ │ └── table86.h │ │ │ ├── readme_msdos_player.txt │ │ │ ├── vtlb.c │ │ │ └── vtlb.h │ │ └── lib/ │ │ └── softfloat/ │ │ ├── README.txt │ │ ├── f2xm1.c │ │ ├── fpatan.c │ │ ├── fpu_constant.h │ │ ├── fsincos.c │ │ ├── fyl2x.c │ │ ├── mamesf.h │ │ ├── milieu.h │ │ ├── readme_msdos_player.txt │ │ ├── softfloat-macros │ │ ├── softfloat-specialize │ │ ├── softfloat.c │ │ └── softfloat.h │ ├── msdos.cpp │ ├── msdos.h │ ├── vm86.def │ ├── vm86.vcxproj │ └── vm86.vcxproj.filters ├── whpxvm/ │ ├── CMakeLists.txt │ ├── whpxvm.c │ ├── whpxvm.def │ ├── whpxvm.h │ └── whpxvm.vcxproj ├── widl/ │ ├── CMakeLists.txt │ ├── client.c │ ├── expr.c │ ├── expr.h │ ├── getopt.c │ ├── getopt_msvc.h │ ├── hash.c │ ├── hash.h │ ├── header.c │ ├── header.h │ ├── parser.h │ ├── parser.l │ ├── parser.y │ ├── proxy.c │ ├── register.c │ ├── relay16.c │ ├── server.c │ ├── typegen.c │ ├── typegen.h │ ├── typelib.c │ ├── typelib.h │ ├── typelib_struct.h │ ├── typetree.c │ ├── typetree.h │ ├── utils.c │ ├── utils.h │ ├── widl.c │ ├── widl.h │ ├── widl.vcxproj │ ├── widltypes.h │ └── write_msft.c ├── wifeman/ │ ├── CMakeLists.txt │ ├── Makefile.in │ ├── wifeman.c │ ├── wifeman.def │ ├── wifeman.dll16.spec │ └── wifeman.vcxproj ├── win87em/ │ ├── CMakeLists.txt │ ├── win87em.c │ ├── win87em.def │ ├── win87em.dll16.spec │ ├── win87em.vcxproj │ └── win87em.vcxproj.filters ├── wine/ │ ├── CMakeLists.txt │ ├── casemap.c │ ├── config.c │ ├── config.h │ ├── debug.c │ ├── ldt.c │ ├── ldt2.c │ ├── port.h │ ├── string.c │ ├── wctype.c │ ├── windows/ │ │ ├── Makefile.in │ │ ├── accctrl.h │ │ ├── access.idl │ │ ├── aclapi.h │ │ ├── aclui.h │ │ ├── activation.idl │ │ ├── activaut.idl │ │ ├── activdbg.idl │ │ ├── activscp.idl │ │ ├── adshlp.h │ │ ├── advpub.h │ │ ├── af_irda.h │ │ ├── amaudio.h │ │ ├── amstream.idl │ │ ├── amvideo.idl │ │ ├── appcompatapi.h │ │ ├── appmgmt.h │ │ ├── appmodel.h │ │ ├── asptlb.idl │ │ ├── asynot.idl │ │ ├── asysta.idl │ │ ├── atlbase.h │ │ ├── atlcom.h │ │ ├── atliface.idl │ │ ├── atlwin.h │ │ ├── audevcod.h │ │ ├── audioclient.idl │ │ ├── audiopolicy.idl │ │ ├── audiosessiontypes.h │ │ ├── austream.idl │ │ ├── authz.h │ │ ├── aviriff.h │ │ ├── avrt.h │ │ ├── axcore.idl │ │ ├── axextend.idl │ │ ├── basetsd.h │ │ ├── basetyps.h │ │ ├── bcrypt.h │ │ ├── bdaiface.idl │ │ ├── bdaiface_enums.h │ │ ├── bdatypes.h │ │ ├── binres.idl │ │ ├── bits.idl │ │ ├── bits1_5.idl │ │ ├── bits2_0.idl │ │ ├── bits2_5.idl │ │ ├── bits3_0.idl │ │ ├── bitsmsg.h │ │ ├── bluetoothapis.h │ │ ├── bthsdpdef.h │ │ ├── cderr.h │ │ ├── cfgmgr32.h │ │ ├── cguid.h │ │ ├── chprst.idl │ │ ├── cierror.h │ │ ├── clusapi.h │ │ ├── cmdbas.idl │ │ ├── cmdtxt.idl │ │ ├── cmnquery.idl │ │ ├── colinf.idl │ │ ├── comcat.idl │ │ ├── commctrl.h │ │ ├── commctrl.rh │ │ ├── commdlg.h │ │ ├── commoncontrols.idl │ │ ├── compobj.h │ │ ├── comsvcs.idl │ │ ├── config.h │ │ ├── config.h.in │ │ ├── control.idl │ │ ├── cor.idl │ │ ├── cordebug.idl │ │ ├── corerror.h │ │ ├── corhdr.h │ │ ├── cpl.h │ │ ├── crtrow.idl │ │ ├── cryptdlg.h │ │ ├── cryptuiapi.h │ │ ├── ctfutb.idl │ │ ├── ctxtcall.idl │ │ ├── custcntl.h │ │ ├── cvconst.h │ │ ├── d2d1.idl │ │ ├── d2d1_1.idl │ │ ├── d2dbasetypes.h │ │ ├── d2derr.h │ │ ├── d3d.h │ │ ├── d3d10.idl │ │ ├── d3d10_1.idl │ │ ├── d3d10_1shader.h │ │ ├── d3d10effect.h │ │ ├── d3d10misc.h │ │ ├── d3d10sdklayers.idl │ │ ├── d3d10shader.h │ │ ├── d3d11.idl │ │ ├── d3d11_1.idl │ │ ├── d3d11_2.idl │ │ ├── d3d11_3.idl │ │ ├── d3d11_4.idl │ │ ├── d3d11on12.idl │ │ ├── d3d11sdklayers.idl │ │ ├── d3d11shader.h │ │ ├── d3d12.idl │ │ ├── d3d8.h │ │ ├── d3d8caps.h │ │ ├── d3d8types.h │ │ ├── d3d9.h │ │ ├── d3d9caps.h │ │ ├── d3d9types.h │ │ ├── d3dcaps.h │ │ ├── d3dcommon.idl │ │ ├── d3dcompiler.h │ │ ├── d3dhal.h │ │ ├── d3drm.h │ │ ├── d3drmdef.h │ │ ├── d3drmobj.h │ │ ├── d3drmwin.h │ │ ├── d3dtypes.h │ │ ├── d3dukmdt.h │ │ ├── d3dvec.inl │ │ ├── d3dx10.h │ │ ├── d3dx10async.h │ │ ├── d3dx10core.idl │ │ ├── d3dx10math.h │ │ ├── d3dx10tex.h │ │ ├── d3dx11.h │ │ ├── d3dx11async.h │ │ ├── d3dx11core.idl │ │ ├── d3dx11tex.h │ │ ├── d3dx9.h │ │ ├── d3dx9anim.h │ │ ├── d3dx9core.h │ │ ├── d3dx9effect.h │ │ ├── d3dx9math.h │ │ ├── d3dx9math.inl │ │ ├── d3dx9mesh.h │ │ ├── d3dx9shader.h │ │ ├── d3dx9shape.h │ │ ├── d3dx9tex.h │ │ ├── d3dx9xof.h │ │ ├── davclnt.h │ │ ├── dbccmd.idl │ │ ├── dbcses.idl │ │ ├── dbdsad.idl │ │ ├── dbghelp.h │ │ ├── dbinit.idl │ │ ├── dbprop.idl │ │ ├── dbs.idl │ │ ├── dbt.h │ │ ├── dciddi.h │ │ ├── dciman.h │ │ ├── dcommon.idl │ │ ├── dde.h │ │ ├── dde.rh │ │ ├── ddeml.h │ │ ├── ddraw.h │ │ ├── ddrawgdi.h │ │ ├── ddrawi.h │ │ ├── ddstream.idl │ │ ├── delayloadhandler.h │ │ ├── devenum.idl │ │ ├── devguid.h │ │ ├── devicetopology.idl │ │ ├── devpkey.h │ │ ├── devpropdef.h │ │ ├── dhcpcsdk.h │ │ ├── dhtmldid.h │ │ ├── dhtmled.idl │ │ ├── difxapi.h │ │ ├── digitalv.h │ │ ├── dimm.idl │ │ ├── dinput.h │ │ ├── dinputd.h │ │ ├── dispdib.h │ │ ├── dispex.idl │ │ ├── dlgs.h │ │ ├── dls1.h │ │ ├── dls2.h │ │ ├── dmdls.h │ │ ├── dmerror.h │ │ ├── dmksctrl.h │ │ ├── dmo.h │ │ ├── dmoreg.h │ │ ├── dmort.h │ │ ├── dmplugin.h │ │ ├── dmusbuff.h │ │ ├── dmusicc.h │ │ ├── dmusicf.h │ │ ├── dmusici.h │ │ ├── dmusics.h │ │ ├── docobj.idl │ │ ├── docobjectservice.idl │ │ ├── downloadmgr.idl │ │ ├── dpaddr.h │ │ ├── dplay.h │ │ ├── dplay8.h │ │ ├── dplobby.h │ │ ├── dplobby8.h │ │ ├── dpnathlp.h │ │ ├── drmexternals.idl │ │ ├── dsconf.h │ │ ├── dsgetdc.h │ │ ├── dshow.h │ │ ├── dsound.h │ │ ├── dsrole.h │ │ ├── dvdmedia.h │ │ ├── dvoice.h │ │ ├── dwmapi.h │ │ ├── dwrite.idl │ │ ├── dwrite_1.idl │ │ ├── dwrite_2.idl │ │ ├── dwrite_3.idl │ │ ├── dxdiag.h │ │ ├── dxerr8.h │ │ ├── dxerr9.h │ │ ├── dxfile.h │ │ ├── dxgi.idl │ │ ├── dxgi1_2.idl │ │ ├── dxgi1_3.idl │ │ ├── dxgi1_4.idl │ │ ├── dxgi1_5.idl │ │ ├── dxgi1_6.idl │ │ ├── dxgicommon.idl │ │ ├── dxgiformat.idl │ │ ├── dxgitype.idl │ │ ├── dxva2api.idl │ │ ├── dyngraph.idl │ │ ├── endpointvolume.idl │ │ ├── errorrep.h │ │ ├── errors.h │ │ ├── errrec.idl │ │ ├── evcode.h │ │ ├── evntprov.h │ │ ├── evntrace.h │ │ ├── evr.idl │ │ ├── excpt.h │ │ ├── exdisp.idl │ │ ├── exdispid.h │ │ ├── fci.h │ │ ├── fdi.h │ │ ├── fileapi.h │ │ ├── fltdefs.h │ │ ├── fontsub.h │ │ ├── fusion.idl │ │ ├── gameux.idl │ │ ├── gdiplus.h │ │ ├── gdipluscolor.h │ │ ├── gdipluscolormatrix.h │ │ ├── gdipluseffects.h │ │ ├── gdiplusenums.h │ │ ├── gdiplusflat.h │ │ ├── gdiplusgpstubs.h │ │ ├── gdiplusimaging.h │ │ ├── gdiplusinit.h │ │ ├── gdiplusmem.h │ │ ├── gdiplusmetaheader.h │ │ ├── gdipluspixelformats.h │ │ ├── gdiplustypes.h │ │ ├── guiddef.h │ │ ├── hidusage.h │ │ ├── highlevelmonitorconfigurationapi.h │ │ ├── hlguids.h │ │ ├── hlink.idl │ │ ├── hstring.idl │ │ ├── htiface.idl │ │ ├── htiframe.idl │ │ ├── htmlhelp.h │ │ ├── http.h │ │ ├── httprequest.idl │ │ ├── httprequestid.h │ │ ├── i_cryptasn1tls.h │ │ ├── iads.idl │ │ ├── icftypes.idl │ │ ├── icm.h │ │ ├── icmpapi.h │ │ ├── idispids.h │ │ ├── ieautomation.idl │ │ ├── iextag.idl │ │ ├── ifdef.h │ │ ├── ifmib.h │ │ ├── iimgctx.idl │ │ ├── imagehlp.h │ │ ├── ime.h │ │ ├── imm.h │ │ ├── imnact.idl │ │ ├── imnxport.idl │ │ ├── in6addr.h │ │ ├── inaddr.h │ │ ├── indexsrv.idl │ │ ├── initguid.h │ │ ├── inputscope.idl │ │ ├── inseng.idl │ │ ├── inspectable.idl │ │ ├── interactioncontext.h │ │ ├── intshcut.h │ │ ├── ipexport.h │ │ ├── iphlpapi.h │ │ ├── ipifcons.h │ │ ├── ipmib.h │ │ ├── iprtrmib.h │ │ ├── iptypes.h │ │ ├── isguids.h │ │ ├── knownfolders.h │ │ ├── ks.h │ │ ├── ksguid.h │ │ ├── ksmedia.h │ │ ├── ksuuids.h │ │ ├── libloaderapi.h │ │ ├── lm.h │ │ ├── lmaccess.h │ │ ├── lmapibuf.h │ │ ├── lmat.h │ │ ├── lmbrowsr.h │ │ ├── lmcons.h │ │ ├── lmerr.h │ │ ├── lmjoin.h │ │ ├── lmmsg.h │ │ ├── lmserver.h │ │ ├── lmshare.h │ │ ├── lmstats.h │ │ ├── lmuse.h │ │ ├── lmuseflg.h │ │ ├── lmwksta.h │ │ ├── loadperf.h │ │ ├── lowlevelmonitorconfigurationapi.h │ │ ├── lzexpand.h │ │ ├── mapi.h │ │ ├── mapicode.h │ │ ├── mapidefs.h │ │ ├── mapiform.h │ │ ├── mapiguid.h │ │ ├── mapitags.h │ │ ├── mapiutil.h │ │ ├── mapival.h │ │ ├── mapix.h │ │ ├── mciavi.h │ │ ├── mcx.h │ │ ├── mediaerr.h │ │ ├── mediaobj.idl │ │ ├── metahost.idl │ │ ├── mfapi.h │ │ ├── mferror.h │ │ ├── mfidl.idl │ │ ├── mfobjects.idl │ │ ├── mfreadwrite.idl │ │ ├── mftransform.idl │ │ ├── midles.h │ │ ├── mimeinfo.idl │ │ ├── mimeole.idl │ │ ├── minmax.h │ │ ├── mlang.idl │ │ ├── mmc.idl │ │ ├── mmddk.h │ │ ├── mmdeviceapi.idl │ │ ├── mmreg.h │ │ ├── mmstream.idl │ │ ├── mmsystem.h │ │ ├── mprapi.h │ │ ├── mprerror.h │ │ ├── msacm.h │ │ ├── msacmdlg.h │ │ ├── msacmdrv.h │ │ ├── msasn1.h │ │ ├── mscat.h │ │ ├── mscoree.idl │ │ ├── msctf.idl │ │ ├── msdadc.idl │ │ ├── msdaguid.h │ │ ├── msdasc.idl │ │ ├── mshtmcid.h │ │ ├── mshtmdid.h │ │ ├── mshtmhst.idl │ │ ├── mshtml.idl │ │ ├── msi.h │ │ ├── msidefs.h │ │ ├── msident.idl │ │ ├── msinkaut.idl │ │ ├── msiquery.h │ │ ├── msopc.idl │ │ ├── mssip.h │ │ ├── msstkppg.h │ │ ├── mstask.idl │ │ ├── mstcpip.h │ │ ├── mswsock.h │ │ ├── msxml.idl │ │ ├── msxml2.idl │ │ ├── msxml2did.h │ │ ├── msxml6.idl │ │ ├── msxml6did.h │ │ ├── msxmldid.h │ │ ├── mtxdm.h │ │ ├── multimon.h │ │ ├── nb30.h │ │ ├── ncrypt.h │ │ ├── ndrtypes.h │ │ ├── netcfgx.idl │ │ ├── netcon.idl │ │ ├── netfw.idl │ │ ├── netioapi.h │ │ ├── netlistmgr.idl │ │ ├── nldef.h │ │ ├── npapi.h │ │ ├── nserror.h │ │ ├── nspapi.h │ │ ├── ntddcdrm.h │ │ ├── ntddndis.h │ │ ├── ntddscsi.h │ │ ├── ntddstor.h │ │ ├── ntdef.h │ │ ├── ntdsapi.h │ │ ├── ntlsa.h │ │ ├── ntquery.h │ │ ├── ntsecapi.h │ │ ├── ntsecpkg.h │ │ ├── ntstatus.h │ │ ├── oaidl.idl │ │ ├── objbase.h │ │ ├── objectarray.idl │ │ ├── objidl.idl │ │ ├── objsafe.idl │ │ ├── objsel.h │ │ ├── ocidl.idl │ │ ├── ocmm.idl │ │ ├── odbcinst.h │ │ ├── ole2.h │ │ ├── ole2ver.h │ │ ├── oleacc.idl │ │ ├── oleauto.h │ │ ├── olectl.h │ │ ├── oledb.idl │ │ ├── oledberr.h │ │ ├── oledlg.h │ │ ├── oleidl.idl │ │ ├── opcbase.idl │ │ ├── opcobjectmodel.idl │ │ ├── opcparturi.idl │ │ ├── opnrst.idl │ │ ├── optary.idl │ │ ├── patchapi.h │ │ ├── pathcch.h │ │ ├── pdh.h │ │ ├── pdhmsg.h │ │ ├── perflib.h │ │ ├── perhist.idl │ │ ├── physicalmonitorenumerationapi.h │ │ ├── pktdef.h │ │ ├── poppack.h │ │ ├── powrprof.h │ │ ├── prntvpt.h │ │ ├── profinfo.h │ │ ├── propidl.idl │ │ ├── propkey.h │ │ ├── propkeydef.h │ │ ├── propsys.idl │ │ ├── propvarutil.h │ │ ├── prsht.h │ │ ├── psapi.h │ │ ├── pshpack1.h │ │ ├── pshpack2.h │ │ ├── pshpack4.h │ │ ├── pshpack8.h │ │ ├── pstore.idl │ │ ├── qedit.idl │ │ ├── ras.h │ │ ├── rasdlg.h │ │ ├── raserror.h │ │ ├── reason.h │ │ ├── regstr.h │ │ ├── restartmanager.h │ │ ├── richedit.h │ │ ├── richole.idl │ │ ├── rmxfguid.h │ │ ├── rmxftmpl.x │ │ ├── roapi.h │ │ ├── roparameterizediid.idl │ │ ├── row.idl │ │ ├── rowchg.idl │ │ ├── rowpos.idl │ │ ├── rowpsc.idl │ │ ├── rpc.h │ │ ├── rpcasync.h │ │ ├── rpcdce.h │ │ ├── rpcdcep.h │ │ ├── rpcndr.h │ │ ├── rpcnterr.h │ │ ├── rpcproxy.h │ │ ├── rpcsal.h │ │ ├── rstbas.idl │ │ ├── rstinf.idl │ │ ├── rstloc.idl │ │ ├── rstnot.idl │ │ ├── rtutils.h │ │ ├── sal.h │ │ ├── sapi.idl │ │ ├── sapiddk.idl │ │ ├── scarderr.h │ │ ├── schannel.h │ │ ├── schemadef.h │ │ ├── schnlsp.h │ │ ├── sddl.h │ │ ├── secext.h │ │ ├── security.h │ │ ├── sensapi.h │ │ ├── sensevts.idl │ │ ├── servprov.idl │ │ ├── sesprp.idl │ │ ├── setupapi.h │ │ ├── sfc.h │ │ ├── shdeprecated.idl │ │ ├── shdispid.h │ │ ├── shellapi.h │ │ ├── shellscalingapi.h │ │ ├── shimgdata.idl │ │ ├── shldisp.idl │ │ ├── shlguid.h │ │ ├── shlobj.h │ │ ├── shlwapi.h │ │ ├── shobjidl.idl │ │ ├── shtypes.idl │ │ ├── sipbase.h │ │ ├── slerror.h │ │ ├── slpublic.h │ │ ├── snmp.h │ │ ├── softpub.h │ │ ├── sperror.h │ │ ├── sql.h │ │ ├── sqlext.h │ │ ├── sqltypes.h │ │ ├── sqlucode.h │ │ ├── srcrst.idl │ │ ├── srrestoreptapi.h │ │ ├── sspi.h │ │ ├── stamp-h │ │ ├── stamp-h.in │ │ ├── stdole2.idl │ │ ├── stgprop.h │ │ ├── sti.h │ │ ├── storage.h │ │ ├── strmif.idl │ │ ├── strsafe.h │ │ ├── structuredquerycondition.idl │ │ ├── svrapi.h │ │ ├── t2embapi.h │ │ ├── tapi.h │ │ ├── taskschd.idl │ │ ├── tchar.h │ │ ├── tcpestats.h │ │ ├── tcpmib.h │ │ ├── textserv.h │ │ ├── textstor.idl │ │ ├── tlhelp32.h │ │ ├── tlogstg.idl │ │ ├── tmschema.h │ │ ├── tom.idl │ │ ├── traffic.h │ │ ├── transact.idl │ │ ├── twain.h │ │ ├── txcoord.idl │ │ ├── txdtc.idl │ │ ├── udpmib.h │ │ ├── uianimation.idl │ │ ├── uiautomation.h │ │ ├── uiautomationclient.idl │ │ ├── uiautomationcore.idl │ │ ├── uiautomationcoreapi.h │ │ ├── uiribbon.idl │ │ ├── unknwn.idl │ │ ├── urlhist.idl │ │ ├── urlmon.idl │ │ ├── userenv.h │ │ ├── usp10.h │ │ ├── uuids.h │ │ ├── uxtheme.h │ │ ├── vdmdbg.h │ │ ├── ver.h │ │ ├── verrsrc.h │ │ ├── vfw.h │ │ ├── vfwmsgs.h │ │ ├── virtdisk.h │ │ ├── vmr9.idl │ │ ├── vmrender.idl │ │ ├── vss.idl │ │ ├── vsstyle.h │ │ ├── vssym32.h │ │ ├── vswriter.h │ │ ├── wbemcli.idl │ │ ├── wbemdisp.idl │ │ ├── wbemprov.idl │ │ ├── wct.h │ │ ├── webservices.h │ │ ├── werapi.h │ │ ├── wfext.h │ │ ├── wia.h │ │ ├── wia_lh.idl │ │ ├── wia_xp.idl │ │ ├── wiadef.h │ │ ├── wimgapi.h │ │ ├── winbase.h │ │ ├── wincodec.idl │ │ ├── wincodecsdk.idl │ │ ├── wincon.h │ │ ├── wincred.h │ │ ├── wincrypt.h │ │ ├── windef.h │ │ ├── windns.h │ │ ├── windows.foundation.idl │ │ ├── windows.h │ │ ├── windowsx.h │ │ ├── winerror.h │ │ ├── winevt.h │ │ ├── wingdi.h │ │ ├── winhttp.h │ │ ├── wininet.h │ │ ├── winineti.h │ │ ├── winioctl.h │ │ ├── winldap.h │ │ ├── winnetwk.h │ │ ├── winnls.h │ │ ├── winnls32.h │ │ ├── winnt.h │ │ ├── winnt.rh │ │ ├── winperf.h │ │ ├── winreg.h │ │ ├── winresrc.h │ │ ├── winsafer.h │ │ ├── winscard.h │ │ ├── winsmcrd.h │ │ ├── winsnmp.h │ │ ├── winsock.h │ │ ├── winsock2.h │ │ ├── winspool.h │ │ ├── winstring.h │ │ ├── winsvc.h │ │ ├── winsxs.idl │ │ ├── wintab.h │ │ ├── wintabx.h │ │ ├── winternl.h │ │ ├── wintrust.h │ │ ├── winuser.h │ │ ├── winuser.rh │ │ ├── winver.h │ │ ├── wlanapi.h │ │ ├── wmcodecdsp.idl │ │ ├── wmdrmsdk.idl │ │ ├── wmistr.h │ │ ├── wmium.h │ │ ├── wmiutils.idl │ │ ├── wmp.idl │ │ ├── wmpids.h │ │ ├── wmsbuffer.idl │ │ ├── wmsdk.h │ │ ├── wmsdkidl.idl │ │ ├── wnaspi32.h │ │ ├── wownt32.h │ │ ├── wpcapi.idl │ │ ├── ws2def.h │ │ ├── ws2ipdef.h │ │ ├── ws2spi.h │ │ ├── ws2tcpip.h │ │ ├── wsdapi.h │ │ ├── wsdbase.idl │ │ ├── wsddisco.idl │ │ ├── wsdtypes.h │ │ ├── wsdutil.h │ │ ├── wsdxml.idl │ │ ├── wsdxmldom.h │ │ ├── wshisotp.h │ │ ├── wsipx.h │ │ ├── wsnwlink.h │ │ ├── wtsapi32.h │ │ ├── wtypes.idl │ │ ├── wuapi.idl │ │ ├── x3daudio.h │ │ ├── xapo.idl │ │ ├── xapofx.h │ │ ├── xaudio2.idl │ │ ├── xaudio2fx.idl │ │ ├── xcmc.h │ │ ├── xinput.h │ │ ├── xmldom.h │ │ ├── xmldom.idl │ │ ├── xmldomdid.h │ │ ├── xmldso.idl │ │ ├── xmldsodid.h │ │ ├── xmllite.idl │ │ └── zmouse.h │ ├── wine/ │ │ ├── config.h │ │ ├── debug.h │ │ ├── exception.h │ │ ├── heap.h │ │ ├── library.h │ │ ├── list.h │ │ ├── mmsystem16.h │ │ ├── port.h │ │ ├── server.h │ │ ├── server_protocol.h │ │ ├── unicode.h │ │ ├── winaspi.h │ │ ├── winbase16.h │ │ ├── windef16.h │ │ ├── wine_common_ver.rc │ │ ├── wingdi16.h │ │ ├── winnet16.h │ │ ├── winuser16.h │ │ └── wpp.h │ ├── wine.def │ ├── wine.vcxproj │ ├── wine.vcxproj.filters │ └── winuser.rh ├── winecrt0/ │ ├── CMakeLists.txt │ ├── crt0_private.h │ ├── dll_entry.c │ ├── exception.c │ ├── exe16_entry.c │ ├── init.c │ ├── stub.c │ ├── winecrt0.vcxproj │ └── winecrt0.vcxproj.filters ├── wing/ │ ├── CMakeLists.txt │ ├── Makefile.in │ ├── wing.c │ ├── wing.def │ ├── wing.dll16.spec │ └── wing.vcxproj ├── winhlp32/ │ ├── CMakeLists.txt │ ├── Makefile.in │ ├── REOLEStorage1 │ ├── callback.c │ ├── hlpfile.c │ ├── hlpfile.h │ ├── macro.c │ ├── macro.h │ ├── macro.lex.l │ ├── string.c │ ├── tom.h │ ├── winhelp.c │ ├── winhelp.h │ ├── winhelp_res.h │ ├── winhlp32.rc │ ├── winhlp32.vcxproj │ └── winhlp32.vcxproj.filters ├── winnls/ │ ├── CMakeLists.txt │ ├── winnls.c │ ├── winnls.def │ ├── winnls.dll16.spec │ ├── winnls.vcxproj │ └── winnls.vcxproj.filters ├── winoldap/ │ ├── CMakeLists.txt │ ├── Makefile.in │ ├── winoldap.c │ ├── winoldap.def │ ├── winoldap.mod16.spec │ └── winoldap.vcxproj ├── winsock/ │ ├── CMakeLists.txt │ ├── Makefile.in │ ├── socket.c │ ├── winsock.def │ ├── winsock.dll16.spec │ ├── winsock.vcxproj │ └── winsock16.h ├── winspool/ │ ├── CMakeLists.txt │ ├── winspool.c │ ├── winspool.def │ ├── winspool.drv16.spec │ └── winspool.vcxproj ├── wow32/ │ ├── CMakeLists.txt │ ├── wow32.def │ ├── wow32.spec │ ├── wow32.vcxproj │ ├── wow32.vcxproj.filters │ ├── wow_main.c │ └── wownt32.h └── wpp/ ├── CMakeLists.txt ├── ppl.l ├── ppy.y ├── preproc.c ├── wpp.c ├── wpp.vcxproj └── wpp_private.h