├── .DS_Store ├── .editorconfig ├── .gitlab-ci.yml ├── .idea ├── .gitignore ├── misc.xml ├── modules.xml ├── shelf │ ├── work_space.xml │ └── work_space │ │ └── shelved.patch ├── vcs.xml └── winecx.iml ├── .mailmap ├── ANNOUNCE.md ├── AUTHORS ├── COPYING.LIB ├── LICENSE ├── LICENSE.OLD ├── MAINTAINERS ├── README.esync ├── README.md ├── VERSION ├── aclocal.m4 ├── configure ├── configure.ac ├── dlls ├── .DS_Store ├── acledit │ ├── Makefile.in │ ├── acledit.spec │ └── main.c ├── aclui │ ├── Makefile.in │ ├── aclui.rc │ ├── aclui.spec │ ├── aclui_main.c │ ├── resource.h │ └── user_icons.bmp ├── activeds.tlb │ ├── Makefile.in │ └── activeds_tlb.idl ├── activeds │ ├── Makefile.in │ ├── activeds.idl │ ├── activeds.spec │ ├── activeds_main.c │ ├── pathname.c │ └── tests │ │ ├── Makefile.in │ │ └── activeds.c ├── actxprxy │ ├── Makefile.in │ ├── actxprxy.spec │ ├── actxprxy_activscp.idl │ ├── actxprxy_comcat.idl │ ├── actxprxy_docobj.idl │ ├── actxprxy_hlink.idl │ ├── actxprxy_htiface.idl │ ├── actxprxy_htiframe.idl │ ├── actxprxy_mshtml.idl │ ├── actxprxy_objsafe.idl │ ├── actxprxy_ocmm.idl │ ├── actxprxy_servprov.idl │ ├── actxprxy_shldisp.idl │ ├── actxprxy_shobjidl.idl │ ├── actxprxy_urlhist.idl │ └── usrmarshal.c ├── adsldp │ ├── Makefile.in │ ├── adsldp.c │ ├── adsldp.idl │ ├── adsldp.rgs │ ├── adsldp.spec │ ├── adsldp_private.h │ ├── ldap.c │ ├── rsrc.rc │ ├── schema.c │ └── tests │ │ ├── Makefile.in │ │ ├── ldap.c │ │ └── sysinfo.c ├── adsldpc │ ├── Makefile.in │ └── adsldpc.spec ├── advapi32 │ ├── Makefile.in │ ├── advapi.c │ ├── advapi32.spec │ ├── advapi32_misc.h │ ├── cred.c │ ├── crypt.c │ ├── crypt.h │ ├── crypt_arc4.c │ ├── crypt_des.c │ ├── crypt_lmhash.c │ ├── eventlog.c │ ├── lsa.c │ ├── registry.c │ ├── security.c │ ├── service.c │ ├── tests │ │ ├── Makefile.in │ │ ├── cred.c │ │ ├── crypt.c │ │ ├── crypt_lmhash.c │ │ ├── crypt_md4.c │ │ ├── crypt_md5.c │ │ ├── crypt_sha.c │ │ ├── eventlog.c │ │ ├── lsa.c │ │ ├── perf.c │ │ ├── registry.c │ │ ├── rsrc.rc │ │ ├── security.c │ │ └── service.c │ ├── version.rc │ └── wmi.c ├── advpack │ ├── Makefile.in │ ├── advpack.c │ ├── advpack.spec │ ├── advpack_private.h │ ├── files.c │ ├── install.c │ ├── reg.c │ └── tests │ │ ├── Makefile.in │ │ ├── advpack.c │ │ ├── files.c │ │ └── install.c ├── amsi │ ├── Makefile.in │ ├── amsi.spec │ └── main.c ├── amstream │ ├── Makefile.in │ ├── amstream.spec │ ├── amstream_classes.idl │ ├── amstream_private.h │ ├── audiodata.c │ ├── audiostream.c │ ├── ddrawstream.c │ ├── filter.c │ ├── main.c │ ├── multimedia.c │ ├── tests │ │ ├── Makefile.in │ │ ├── amstream.c │ │ ├── rsrc.rc │ │ └── test.avi │ └── version.rc ├── apisetschema │ ├── Makefile.in │ └── apisetschema.spec ├── apphelp │ ├── Makefile.in │ ├── apphelp.c │ ├── apphelp.spec │ └── tests │ │ ├── Makefile.in │ │ └── apphelp.c ├── appwiz.cpl │ ├── Makefile.in │ ├── addons.c │ ├── appwiz.c │ ├── appwiz.cpl.spec │ ├── appwiz.h │ ├── appwiz.ico │ ├── appwiz.manifest │ ├── appwiz.rc │ ├── appwiz.svg │ └── res.h ├── appxdeploymentclient │ ├── Makefile.in │ ├── appxdeploymentclient.spec │ ├── classes.idl │ ├── main.c │ ├── package.c │ └── private.h ├── atl │ ├── Makefile.in │ ├── atl.c │ ├── atl.spec │ ├── atl30.c │ ├── atl_ax.c │ ├── atl_classes.idl │ ├── atl_lib.idl │ ├── registrar.c │ └── tests │ │ ├── Makefile.in │ │ ├── atl_ax.c │ │ ├── module.c │ │ └── registrar.c ├── atl100 │ ├── Makefile.in │ ├── atl100.spec │ └── tests │ │ ├── Makefile.in │ │ └── atl.c ├── atl110 │ ├── Makefile.in │ ├── atl110.spec │ └── tests │ │ ├── Makefile.in │ │ └── atl.c ├── atl80 │ ├── Makefile.in │ ├── atl80.c │ ├── atl80.manifest │ ├── atl80.rc │ ├── atl80.spec │ └── tests │ │ ├── Makefile.in │ │ ├── atl.c │ │ ├── atl80.manifest │ │ └── atl80.rc ├── atl90 │ ├── Makefile.in │ ├── atl90.manifest │ ├── atl90.rc │ └── atl90.spec ├── atlthunk │ ├── Makefile.in │ ├── atlthunk.c │ ├── atlthunk.spec │ └── tests │ │ ├── Makefile.in │ │ └── atlthunk.c ├── atmlib │ ├── Makefile.in │ ├── atmlib.spec │ └── main.c ├── authz │ ├── Makefile.in │ ├── authz.c │ └── authz.spec ├── avicap32 │ ├── Makefile.in │ ├── avicap32.spec │ ├── avicap32_main.c │ ├── unixlib.h │ └── v4l.c ├── avifil32 │ ├── Makefile.in │ ├── acmstream.c │ ├── api.c │ ├── avifil32.idl │ ├── avifil32.rc │ ├── avifil32.spec │ ├── avifile.c │ ├── avifile.rgs │ ├── avifile_private.h │ ├── editstream.c │ ├── extrachunk.c │ ├── extrachunk.h │ ├── factory.c │ ├── getframe.c │ ├── icmstream.c │ ├── tests │ │ ├── Makefile.in │ │ └── api.c │ ├── tmpfile.c │ └── wavfile.c ├── avifile.dll16 │ ├── Makefile.in │ ├── avifile.dll16.spec │ └── main.c ├── avrt │ ├── Makefile.in │ ├── avrt.spec │ └── main.c ├── bcp47langs │ ├── Makefile.in │ └── bcp47langs.spec ├── bcrypt │ ├── Makefile.in │ ├── bcrypt.spec │ ├── bcrypt_internal.h │ ├── bcrypt_main.c │ ├── gnutls.c │ ├── md2.c │ ├── sha256.c │ ├── sha512.c │ ├── tests │ │ ├── Makefile.in │ │ └── bcrypt.c │ └── version.rc ├── bcryptprimitives │ ├── Makefile.in │ ├── bcryptprimitives.spec │ └── main.c ├── bluetoothapis │ ├── Makefile.in │ ├── bluetoothapis.spec │ ├── main.c │ ├── sdp.c │ └── tests │ │ ├── Makefile.in │ │ ├── radio.c │ │ └── sdp.c ├── browseui │ ├── Makefile.in │ ├── aclmulti.c │ ├── aclsource.c │ ├── browseui.h │ ├── browseui.rc │ ├── browseui.spec │ ├── browseui_classes.idl │ ├── browseui_main.c │ ├── compcatcachedaemon.c │ ├── progressdlg.c │ ├── resids.h │ └── tests │ │ ├── Makefile.in │ │ ├── autocomplete.c │ │ └── progressdlg.c ├── bthprops.cpl │ ├── Makefile.in │ └── bthprops.cpl.spec ├── cabinet │ ├── Makefile.in │ ├── cabinet.h │ ├── cabinet.rc │ ├── cabinet.spec │ ├── cabinet_main.c │ ├── fci.c │ ├── fdi.c │ └── tests │ │ ├── Makefile.in │ │ ├── extract.c │ │ └── fdi.c ├── capi2032 │ ├── Makefile.in │ ├── cap20wxx.c │ ├── capi2032.spec │ ├── unixlib.c │ └── unixlib.h ├── cards │ ├── Makefile.in │ ├── b1fv.bmp │ ├── b2fv.bmp │ ├── c1.bmp │ ├── c10.bmp │ ├── c2.bmp │ ├── c3.bmp │ ├── c4.bmp │ ├── c5.bmp │ ├── c6.bmp │ ├── c7.bmp │ ├── c8.bmp │ ├── c9.bmp │ ├── cards.c │ ├── cards.h │ ├── cards.rc │ ├── cards.spec │ ├── cj.bmp │ ├── ck.bmp │ ├── cq.bmp │ ├── d1.bmp │ ├── d10.bmp │ ├── d2.bmp │ ├── d3.bmp │ ├── d4.bmp │ ├── d5.bmp │ ├── d6.bmp │ ├── d7.bmp │ ├── d8.bmp │ ├── d9.bmp │ ├── dj.bmp │ ├── dk.bmp │ ├── dq.bmp │ ├── free.bmp │ ├── h1.bmp │ ├── h10.bmp │ ├── h2.bmp │ ├── h3.bmp │ ├── h4.bmp │ ├── h5.bmp │ ├── h6.bmp │ ├── h7.bmp │ ├── h8.bmp │ ├── h9.bmp │ ├── hj.bmp │ ├── hk.bmp │ ├── hq.bmp │ ├── s1.bmp │ ├── s10.bmp │ ├── s2.bmp │ ├── s3.bmp │ ├── s4.bmp │ ├── s5.bmp │ ├── s6.bmp │ ├── s7.bmp │ ├── s8.bmp │ ├── s9.bmp │ ├── sj.bmp │ ├── sk.bmp │ ├── sq.bmp │ ├── theo.bmp │ ├── thex.bmp │ └── version.rc ├── cdosys │ ├── Makefile.in │ ├── cdosys.spec │ └── main.c ├── cfgmgr32 │ ├── Makefile.in │ ├── cfgmgr32.spec │ ├── main.c │ └── tests │ │ ├── Makefile.in │ │ └── cfgmgr32.c ├── clusapi │ ├── Makefile.in │ ├── clusapi.c │ └── clusapi.spec ├── cng.sys │ ├── Makefile.in │ └── cng.sys.spec ├── colorcnv │ ├── Makefile.in │ ├── colorcnv.c │ ├── colorcnv.idl │ └── colorcnv.spec ├── combase │ ├── Makefile.in │ ├── apartment.c │ ├── combase.c │ ├── combase.spec │ ├── combase_private.h │ ├── dcom.idl │ ├── errorinfo.c │ ├── hglobalstream.c │ ├── irpcss.idl │ ├── malloc.c │ ├── marshal.c │ ├── roapi.c │ ├── rpc.c │ ├── string.c │ ├── stubmanager.c │ ├── tests │ │ ├── Makefile.in │ │ ├── combase.manifest │ │ ├── combase.rc │ │ ├── roapi.c │ │ ├── string.c │ │ ├── wine.combase.test.c │ │ └── wine.combase.test.spec │ └── usrmarshal.c ├── comcat │ ├── Makefile.in │ ├── comcat.spec │ ├── tests │ │ ├── Makefile.in │ │ └── comcat.c │ └── version.rc ├── comctl32 │ ├── Makefile.in │ ├── animate.c │ ├── button.c │ ├── combo.c │ ├── comboex.c │ ├── comctl32.h │ ├── comctl32.manifest │ ├── comctl32.rc │ ├── comctl32.spec │ ├── commctrl.c │ ├── datetime.c │ ├── dpa.c │ ├── draglist.c │ ├── dsa.c │ ├── edit.c │ ├── flatsb.c │ ├── header.c │ ├── hotkey.c │ ├── idb_cmdlink.bmp │ ├── idb_hist_large.bmp │ ├── idb_hist_large.svg │ ├── idb_hist_small.bmp │ ├── idb_hist_small.svg │ ├── idb_std_large.bmp │ ├── idb_std_large.svg │ ├── idb_std_small.bmp │ ├── idb_std_small.svg │ ├── idb_view_large.bmp │ ├── idb_view_large.svg │ ├── idb_view_small.bmp │ ├── idb_view_small.svg │ ├── idc_copy.cur │ ├── idc_copy.svg │ ├── idc_divider.cur │ ├── idc_divider.svg │ ├── idc_divideropen.cur │ ├── idc_divideropen.svg │ ├── idc_movebutton.cur │ ├── idc_movebutton.svg │ ├── idi_dragarrow.ico │ ├── idi_tt_error_md.ico │ ├── idi_tt_error_sm.ico │ ├── idi_tt_info_md.ico │ ├── idi_tt_info_sm.ico │ ├── idi_tt_warn_md.ico │ ├── idi_tt_warn_sm.ico │ ├── idt_check.bmp │ ├── imagelist.c │ ├── ipaddress.c │ ├── listbox.c │ ├── listview.c │ ├── monthcal.c │ ├── nativefont.c │ ├── pager.c │ ├── progress.c │ ├── propsheet.c │ ├── rebar.c │ ├── smoothscroll.c │ ├── static.c │ ├── status.c │ ├── string.c │ ├── syslink.c │ ├── tab.c │ ├── taskdialog.c │ ├── tests │ │ ├── Makefile.in │ │ ├── animate.c │ │ ├── bmp128x15.bmp │ │ ├── bmp1x1_32bpp.bmp │ │ ├── bmp80x15.bmp │ │ ├── button.c │ │ ├── combo.c │ │ ├── datetime.c │ │ ├── dpa.c │ │ ├── edit.c │ │ ├── header.c │ │ ├── imagelist.c │ │ ├── ipaddress.c │ │ ├── listbox.c │ │ ├── listview.c │ │ ├── misc.c │ │ ├── monthcal.c │ │ ├── mru.c │ │ ├── msg.h │ │ ├── pager.c │ │ ├── progress.c │ │ ├── propsheet.c │ │ ├── rebar.c │ │ ├── resources.h │ │ ├── rsrc.rc │ │ ├── static.c │ │ ├── status.c │ │ ├── subclass.c │ │ ├── syslink.c │ │ ├── tab.c │ │ ├── taskdialog.c │ │ ├── toolbar.c │ │ ├── tooltips.c │ │ ├── trackbar.c │ │ ├── treeview.c │ │ ├── updown.c │ │ └── v6util.h │ ├── toolbar.c │ ├── tooltips.c │ ├── trackbar.c │ ├── treeview.c │ └── updown.c ├── comdlg32 │ ├── Makefile.in │ ├── cdlg.h │ ├── cdlg32.c │ ├── cdrom.ico │ ├── colordlg.c │ ├── comdlg32.manifest │ ├── comdlg32.rc │ ├── comdlg32.spec │ ├── comdlg32_classes.idl │ ├── filedlg.c │ ├── filedlg31.c │ ├── filedlgbrowser.c │ ├── filedlgbrowser.h │ ├── finddlg.c │ ├── floppy.ico │ ├── folder.ico │ ├── folder2.ico │ ├── fontdlg.c │ ├── fontpics.bmp │ ├── hdisk.ico │ ├── itemdlg.c │ ├── network.ico │ ├── pd32_collate.ico │ ├── pd32_collate.svg │ ├── pd32_landscape.ico │ ├── pd32_landscape.svg │ ├── pd32_nocollate.ico │ ├── pd32_nocollate.svg │ ├── pd32_portrait.ico │ ├── pd32_portrait.svg │ ├── printdlg.c │ └── tests │ │ ├── Makefile.in │ │ ├── filedlg.c │ │ ├── finddlg.c │ │ ├── fontdlg.c │ │ ├── itemdlg.c │ │ ├── printdlg.c │ │ └── rsrc.rc ├── coml2 │ ├── Makefile.in │ ├── coml2.spec │ ├── memlockbytes.c │ ├── stg_prop.c │ └── storage32.c ├── comm.drv16 │ ├── Makefile.in │ └── comm.drv16.spec ├── commdlg.dll16 │ ├── Makefile.in │ ├── cdlg16.h │ ├── colordlg.c │ ├── commdlg.dll16.spec │ ├── filedlg.c │ ├── finddlg.c │ ├── fontdlg.c │ └── printdlg.c ├── compobj.dll16 │ ├── Makefile.in │ ├── compobj.c │ └── compobj.dll16.spec ├── compstui │ ├── Makefile.in │ ├── compstui.rc │ ├── compstui.spec │ ├── compstui_main.c │ └── tests │ │ ├── Makefile.in │ │ ├── compstui.c │ │ └── rsrc.rc ├── comsvcs │ ├── Makefile.in │ ├── comsvcs.spec │ ├── comsvcs_classes.idl │ ├── comsvcs_private.h │ ├── comsvcs_tlb.idl │ ├── main.c │ ├── property.c │ └── tests │ │ ├── Makefile.in │ │ ├── comsvcs.c │ │ └── property.c ├── concrt140 │ ├── Makefile.in │ ├── concrt140.c │ ├── concrt140.spec │ ├── details.c │ ├── details.h │ └── tests │ │ ├── Makefile.in │ │ └── concrt140.c ├── connect │ ├── Makefile.in │ ├── connect.spec │ └── main.c ├── coremessaging │ ├── Makefile.in │ ├── coremessaging.spec │ └── main.c ├── credui │ ├── Makefile.in │ ├── banner.bmp │ ├── banner.svg │ ├── credui.rc │ ├── credui.spec │ ├── credui_main.c │ ├── credui_resources.h │ └── tests │ │ ├── Makefile.in │ │ └── credui.c ├── crtdll │ ├── Makefile.in │ └── crtdll.spec ├── crypt32 │ ├── Makefile.in │ ├── base64.c │ ├── cert.c │ ├── chain.c │ ├── collectionstore.c │ ├── context.c │ ├── crl.c │ ├── crypt32.rc │ ├── crypt32.spec │ ├── crypt32_private.h │ ├── cryptres.h │ ├── ctl.c │ ├── decode.c │ ├── encode.c │ ├── filestore.c │ ├── main.c │ ├── message.c │ ├── msg.c │ ├── object.c │ ├── oid.c │ ├── pfx.c │ ├── proplist.c │ ├── protectdata.c │ ├── provstore.c │ ├── regstore.c │ ├── rootstore.c │ ├── serialize.c │ ├── sip.c │ ├── store.c │ ├── str.c │ ├── tests │ │ ├── Makefile.in │ │ ├── base64.c │ │ ├── cert.c │ │ ├── chain.c │ │ ├── crl.c │ │ ├── ctl.c │ │ ├── encode.c │ │ ├── main.c │ │ ├── message.c │ │ ├── msg.c │ │ ├── object.c │ │ ├── oid.c │ │ ├── protectdata.c │ │ ├── sip.c │ │ ├── store.c │ │ └── str.c │ └── unixlib.c ├── cryptdlg │ ├── Makefile.in │ ├── cryptdlg.rc │ ├── cryptdlg.spec │ ├── cryptres.h │ └── main.c ├── cryptdll │ ├── Makefile.in │ └── cryptdll.spec ├── cryptext │ ├── Makefile.in │ ├── cryptext.spec │ └── cryptext_main.c ├── cryptnet │ ├── Makefile.in │ ├── cryptnet.spec │ ├── cryptnet_main.c │ └── tests │ │ ├── Makefile.in │ │ └── cryptnet.c ├── cryptowinrt │ ├── Makefile.in │ ├── async.c │ ├── classes.idl │ ├── credentials.c │ ├── cryptowinrt.spec │ ├── main.c │ ├── private.h │ ├── provider.idl │ └── tests │ │ ├── Makefile.in │ │ └── crypto.c ├── cryptsp │ ├── Makefile.in │ └── cryptsp.spec ├── cryptui │ ├── Makefile.in │ ├── cert.bmp │ ├── certerror.bmp │ ├── certheader.bmp │ ├── certwarning.bmp │ ├── certwatermark.bmp │ ├── checks.bmp │ ├── cryptui.rc │ ├── cryptui.spec │ ├── cryptuires.h │ ├── main.c │ ├── smallicons.bmp │ └── tests │ │ ├── Makefile.in │ │ └── cryptui.c ├── ctapi32 │ ├── Makefile.in │ ├── ctapi32.c │ ├── ctapi32.spec │ ├── unixlib.c │ └── unixlib.h ├── ctl3d.dll16 │ ├── Makefile.in │ ├── ctl3d.c │ └── ctl3d.dll16.spec ├── ctl3d32 │ ├── Makefile.in │ ├── ctl3d32.c │ └── ctl3d32.spec ├── ctl3dv2.dll16 │ ├── Makefile.in │ ├── ctl3d.c │ └── ctl3dv2.dll16.spec ├── d2d1 │ ├── Makefile.in │ ├── bitmap.c │ ├── bitmap_render_target.c │ ├── brush.c │ ├── command_list.c │ ├── d2d1.spec │ ├── d2d1_private.h │ ├── dc_render_target.c │ ├── device.c │ ├── effect.c │ ├── factory.c │ ├── geometry.c │ ├── hwnd_render_target.c │ ├── layer.c │ ├── mesh.c │ ├── state_block.c │ ├── stroke.c │ ├── tests │ │ ├── Makefile.in │ │ └── d2d1.c │ ├── version.rc │ └── wic_render_target.c ├── d3d10 │ ├── Makefile.in │ ├── d3d10.spec │ ├── d3d10_main.c │ ├── d3d10_private.h │ ├── effect.c │ ├── shader.c │ ├── stateblock.c │ ├── tests │ │ ├── Makefile.in │ │ ├── device.c │ │ └── effect.c │ └── version.rc ├── d3d10_1 │ ├── Makefile.in │ ├── d3d10_1.spec │ ├── d3d10_1_main.c │ ├── tests │ │ ├── Makefile.in │ │ └── d3d10_1.c │ └── version.rc ├── d3d10core │ ├── Makefile.in │ ├── d3d10core.spec │ ├── d3d10core_main.c │ ├── tests │ │ ├── Makefile.in │ │ └── d3d10core.c │ └── version.rc ├── d3d11 │ ├── Makefile.in │ ├── async.c │ ├── buffer.c │ ├── d3d11.spec │ ├── d3d11_main.c │ ├── d3d11_private.h │ ├── decoder.c │ ├── device.c │ ├── inputlayout.c │ ├── shader.c │ ├── state.c │ ├── tests │ │ ├── Makefile.in │ │ └── d3d11.c │ ├── texture.c │ ├── utils.c │ ├── version.rc │ └── view.c ├── d3d12 │ ├── Makefile.in │ ├── d3d12.spec │ ├── d3d12_main.c │ └── tests │ │ ├── Makefile.in │ │ └── d3d12.c ├── d3d12core │ ├── Makefile.in │ └── d3d12core.spec ├── d3d8 │ ├── Makefile.in │ ├── buffer.c │ ├── d3d8.spec │ ├── d3d8_main.c │ ├── d3d8_private.h │ ├── device.c │ ├── directx.c │ ├── shader.c │ ├── surface.c │ ├── swapchain.c │ ├── tests │ │ ├── Makefile.in │ │ ├── device.c │ │ ├── stateblock.c │ │ └── visual.c │ ├── texture.c │ ├── version.rc │ ├── vertexdeclaration.c │ └── volume.c ├── d3d8thk │ ├── Makefile.in │ ├── d3d8thk.spec │ └── version.rc ├── d3d9 │ ├── Makefile.in │ ├── buffer.c │ ├── d3d9.spec │ ├── d3d9_main.c │ ├── d3d9_private.h │ ├── device.c │ ├── directx.c │ ├── query.c │ ├── shader.c │ ├── stateblock.c │ ├── surface.c │ ├── swapchain.c │ ├── tests │ │ ├── Makefile.in │ │ ├── d3d9ex.c │ │ ├── device.c │ │ ├── stateblock.c │ │ ├── utils.h │ │ └── visual.c │ ├── texture.c │ ├── version.rc │ ├── vertexdeclaration.c │ └── volume.c ├── d3dcompiler_33 │ ├── Makefile.in │ ├── d3dcompiler_33.spec │ └── version.rc ├── d3dcompiler_34 │ ├── Makefile.in │ ├── d3dcompiler_34.spec │ └── version.rc ├── d3dcompiler_35 │ ├── Makefile.in │ ├── d3dcompiler_35.spec │ └── version.rc ├── d3dcompiler_36 │ ├── Makefile.in │ ├── d3dcompiler_36.spec │ └── version.rc ├── d3dcompiler_37 │ ├── Makefile.in │ ├── d3dcompiler_37.spec │ └── version.rc ├── d3dcompiler_38 │ ├── Makefile.in │ ├── d3dcompiler_38.spec │ └── version.rc ├── d3dcompiler_39 │ ├── Makefile.in │ ├── d3dcompiler_39.spec │ └── version.rc ├── d3dcompiler_40 │ ├── Makefile.in │ ├── d3dcompiler_40.spec │ └── version.rc ├── d3dcompiler_41 │ ├── Makefile.in │ ├── d3dcompiler_41.spec │ └── version.rc ├── d3dcompiler_42 │ ├── Makefile.in │ ├── d3dcompiler_42.spec │ └── version.rc ├── d3dcompiler_43 │ ├── Makefile.in │ ├── asmparser.c │ ├── asmshader.l │ ├── asmshader.y │ ├── blob.c │ ├── bytecodewriter.c │ ├── compiler.c │ ├── d3dcompiler_43.spec │ ├── d3dcompiler_private.h │ ├── reflection.c │ ├── tests │ │ ├── Makefile.in │ │ ├── asm.c │ │ ├── blob.c │ │ ├── hlsl_d3d11.c │ │ ├── hlsl_d3d9.c │ │ └── reflection.c │ ├── utils.c │ ├── utils.h │ └── version.rc ├── d3dcompiler_46 │ ├── Makefile.in │ ├── d3dcompiler_46.spec │ ├── tests │ │ └── Makefile.in │ └── version.rc ├── d3dcompiler_47 │ ├── Makefile.in │ ├── d3dcompiler_47.spec │ ├── tests │ │ └── Makefile.in │ └── version.rc ├── d3dim │ ├── Makefile.in │ ├── d3dim.spec │ └── version.rc ├── d3dim700 │ ├── Makefile.in │ ├── d3dim700.spec │ └── version.rc ├── d3drm │ ├── Makefile.in │ ├── d3drm.c │ ├── d3drm.spec │ ├── d3drm_main.c │ ├── d3drm_private.h │ ├── device.c │ ├── face.c │ ├── frame.c │ ├── light.c │ ├── material.c │ ├── math.c │ ├── meshbuilder.c │ ├── tests │ │ ├── Makefile.in │ │ ├── d3drm.c │ │ └── vector.c │ ├── texture.c │ ├── version.rc │ └── viewport.c ├── d3dx10_33 │ ├── Makefile.in │ ├── d3dx10_33.spec │ ├── d3dx10_33_main.c │ └── version.rc ├── d3dx10_34 │ ├── Makefile.in │ ├── d3dx10_34.spec │ ├── d3dx10_34_main.c │ ├── tests │ │ └── Makefile.in │ └── version.rc ├── d3dx10_35 │ ├── Makefile.in │ ├── d3dx10_35.spec │ ├── d3dx10_35_main.c │ ├── tests │ │ └── Makefile.in │ └── version.rc ├── d3dx10_36 │ ├── Makefile.in │ ├── d3dx10_36.spec │ ├── d3dx10_36_main.c │ ├── tests │ │ └── Makefile.in │ └── version.rc ├── d3dx10_37 │ ├── Makefile.in │ ├── d3dx10_37.spec │ ├── d3dx10_37_main.c │ ├── tests │ │ └── Makefile.in │ └── version.rc ├── d3dx10_38 │ ├── Makefile.in │ ├── d3dx10_38.spec │ ├── d3dx10_38_main.c │ ├── tests │ │ └── Makefile.in │ └── version.rc ├── d3dx10_39 │ ├── Makefile.in │ ├── d3dx10_39.spec │ ├── d3dx10_39_main.c │ ├── tests │ │ └── Makefile.in │ └── version.rc ├── d3dx10_40 │ ├── Makefile.in │ ├── d3dx10_40.spec │ ├── d3dx10_40_main.c │ ├── tests │ │ └── Makefile.in │ └── version.rc ├── d3dx10_41 │ ├── Makefile.in │ ├── d3dx10_41.spec │ ├── d3dx10_41_main.c │ ├── tests │ │ └── Makefile.in │ └── version.rc ├── d3dx10_42 │ ├── Makefile.in │ ├── d3dx10_42.spec │ ├── d3dx10_42_main.c │ ├── tests │ │ └── Makefile.in │ └── version.rc ├── d3dx10_43 │ ├── Makefile.in │ ├── async.c │ ├── compiler.c │ ├── d3dx10_43.spec │ ├── d3dx10_43_main.c │ ├── dxhelpers.h │ ├── font.c │ ├── mesh.c │ ├── sprite.c │ ├── tests │ │ ├── Makefile.in │ │ └── d3dx10.c │ ├── texture.c │ └── version.rc ├── d3dx11_42 │ ├── Makefile.in │ ├── d3dx11_42.spec │ ├── tests │ │ └── Makefile.in │ └── version.rc ├── d3dx11_43 │ ├── Makefile.in │ ├── async.c │ ├── d3dx11_43.spec │ ├── main.c │ ├── tests │ │ ├── Makefile.in │ │ └── d3dx11.c │ ├── texture.c │ └── version.rc ├── d3dx9_24 │ ├── Makefile.in │ ├── d3dx9_24.spec │ └── version.rc ├── d3dx9_25 │ ├── Makefile.in │ ├── d3dx9_25.spec │ └── version.rc ├── d3dx9_26 │ ├── Makefile.in │ ├── d3dx9_26.spec │ └── version.rc ├── d3dx9_27 │ ├── Makefile.in │ ├── d3dx9_27.spec │ └── version.rc ├── d3dx9_28 │ ├── Makefile.in │ ├── d3dx9_28.spec │ └── version.rc ├── d3dx9_29 │ ├── Makefile.in │ ├── d3dx9_29.spec │ └── version.rc ├── d3dx9_30 │ ├── Makefile.in │ ├── d3dx9_30.spec │ └── version.rc ├── d3dx9_31 │ ├── Makefile.in │ ├── d3dx9_31.spec │ └── version.rc ├── d3dx9_32 │ ├── Makefile.in │ ├── d3dx9_32.spec │ └── version.rc ├── d3dx9_33 │ ├── Makefile.in │ ├── d3dx9_33.spec │ └── version.rc ├── d3dx9_34 │ ├── Makefile.in │ ├── d3dx9_34.spec │ └── version.rc ├── d3dx9_35 │ ├── Makefile.in │ ├── d3dx9_35.spec │ └── version.rc ├── d3dx9_36 │ ├── Makefile.in │ ├── animation.c │ ├── core.c │ ├── d3dx9_36.spec │ ├── d3dx9_private.h │ ├── effect.c │ ├── font.c │ ├── line.c │ ├── main.c │ ├── math.c │ ├── mesh.c │ ├── preshader.c │ ├── render.c │ ├── shader.c │ ├── skin.c │ ├── sprite.c │ ├── surface.c │ ├── tests │ │ ├── Makefile.in │ │ ├── asm.c │ │ ├── bmp1x1.bmp │ │ ├── core.c │ │ ├── d3dx9_test_images.h │ │ ├── effect.c │ │ ├── line.c │ │ ├── math.c │ │ ├── mesh.c │ │ ├── res.vsh │ │ ├── resources.h │ │ ├── rsrc.rc │ │ ├── shader.c │ │ ├── surface.c │ │ ├── texture.c │ │ ├── volume.c │ │ └── xfile.c │ ├── texture.c │ ├── txc_compress_dxtn.c │ ├── txc_dxtn.h │ ├── txc_fetch_dxtn.c │ ├── util.c │ ├── version.rc │ ├── volume.c │ └── xfile.c ├── d3dx9_37 │ ├── Makefile.in │ ├── d3dx9_37.spec │ └── version.rc ├── d3dx9_38 │ ├── Makefile.in │ ├── d3dx9_38.spec │ └── version.rc ├── d3dx9_39 │ ├── Makefile.in │ ├── d3dx9_39.spec │ └── version.rc ├── d3dx9_40 │ ├── Makefile.in │ ├── d3dx9_40.spec │ └── version.rc ├── d3dx9_41 │ ├── Makefile.in │ ├── d3dx9_41.spec │ └── version.rc ├── d3dx9_42 │ ├── Makefile.in │ ├── d3dx9_42.spec │ └── version.rc ├── d3dx9_43 │ ├── Makefile.in │ ├── d3dx9_43.spec │ ├── tests │ │ └── Makefile.in │ └── version.rc ├── d3dxof │ ├── Makefile.in │ ├── d3dxof.c │ ├── d3dxof.idl │ ├── d3dxof.spec │ ├── d3dxof_private.h │ ├── main.c │ ├── mszip.c │ ├── mszip.h │ ├── parsing.c │ ├── tests │ │ ├── Makefile.in │ │ └── d3dxof.c │ └── version.rc ├── dataexchange │ ├── Makefile.in │ ├── classes.idl │ ├── dataexchange.spec │ ├── main.c │ ├── private.h │ └── tests │ │ ├── Makefile.in │ │ └── dataexchange.c ├── davclnt │ ├── Makefile.in │ ├── davclnt.spec │ └── main.c ├── dbgeng │ ├── Makefile.in │ ├── dbgeng.c │ ├── dbgeng.spec │ └── tests │ │ ├── Makefile.in │ │ └── dbgeng.c ├── dbghelp │ ├── Makefile.in │ ├── coff.c │ ├── cpu_arm.c │ ├── cpu_arm64.c │ ├── cpu_i386.c │ ├── cpu_x86_64.c │ ├── dbghelp.c │ ├── dbghelp.spec │ ├── dbghelp_private.h │ ├── dwarf.c │ ├── dwarf.h │ ├── elf_module.c │ ├── image.c │ ├── image_private.h │ ├── macho_module.c │ ├── minidump.c │ ├── module.c │ ├── msc.c │ ├── path.c │ ├── pe_module.c │ ├── source.c │ ├── stabs.c │ ├── stack.c │ ├── storage.c │ ├── symbol.c │ ├── tests │ │ ├── Makefile.in │ │ ├── dbghelp.c │ │ ├── minidump.c │ │ └── path.c │ ├── type.c │ └── version.rc ├── dciman32 │ ├── Makefile.in │ ├── dciman32.spec │ └── dciman_main.c ├── dcomp │ ├── Makefile.in │ ├── dcomp.spec │ ├── device.c │ └── version.rc ├── ddeml.dll16 │ ├── Makefile.in │ ├── ddeml.c │ └── ddeml.dll16.spec ├── ddraw │ ├── Makefile.in │ ├── clipper.c │ ├── ddraw.c │ ├── ddraw.spec │ ├── ddraw_classes.idl │ ├── ddraw_private.h │ ├── device.c │ ├── executebuffer.c │ ├── light.c │ ├── main.c │ ├── material.c │ ├── palette.c │ ├── surface.c │ ├── tests │ │ ├── Makefile.in │ │ ├── d3d.c │ │ ├── ddraw1.c │ │ ├── ddraw2.c │ │ ├── ddraw4.c │ │ ├── ddraw7.c │ │ ├── ddrawmodes.c │ │ ├── dsurface.c │ │ ├── refcount.c │ │ └── visual.c │ ├── utils.c │ ├── version.rc │ ├── vertexbuffer.c │ └── viewport.c ├── ddrawex │ ├── Makefile.in │ ├── ddraw.c │ ├── ddrawex.idl │ ├── ddrawex.spec │ ├── ddrawex_private.h │ ├── main.c │ ├── surface.c │ ├── tests │ │ ├── Makefile.in │ │ ├── ddrawex.c │ │ ├── ddrawex.h │ │ └── surface.c │ └── version.rc ├── desk.cpl │ ├── Makefile.in │ ├── desk.cpl.spec │ ├── desk.ico │ ├── desk.manifest │ ├── desk.rc │ ├── desk.svg │ ├── desk_private.h │ ├── main.c │ └── resource.h ├── devenum │ ├── Makefile.in │ ├── createdevenum.c │ ├── devenum.rc │ ├── devenum.spec │ ├── devenum_classes.idl │ ├── devenum_main.c │ ├── devenum_private.h │ ├── mediacatenum.c │ ├── parsedisplayname.c │ └── tests │ │ ├── Makefile.in │ │ └── devenum.c ├── dhcpcsvc │ ├── Makefile.in │ ├── dhcpcsvc.c │ ├── dhcpcsvc.spec │ └── tests │ │ ├── Makefile.in │ │ └── dhcpcsvc.c ├── dhcpcsvc6 │ ├── Makefile.in │ └── dhcpcsvc6.spec ├── dhtmled.ocx │ ├── Makefile.in │ ├── dhtmled.ocx.spec │ ├── dhtmled.rc │ ├── dhtmled.rgs │ ├── dhtmled_private.h │ ├── dhtmled_tlb.idl │ ├── edit.c │ └── main.c ├── diasymreader │ ├── Makefile.in │ ├── diasymreader.idl │ ├── diasymreader.rc │ ├── diasymreader.rgs │ ├── diasymreader.spec │ ├── diasymreader_private.h │ ├── main.c │ └── writer.c ├── difxapi │ ├── Makefile.in │ ├── difxapi.spec │ └── main.c ├── dinput │ ├── Makefile.in │ ├── ansi.c │ ├── config.c │ ├── data_formats.c │ ├── device.c │ ├── device_private.h │ ├── dinput.c │ ├── dinput.rc │ ├── dinput.spec │ ├── dinput_classes.idl │ ├── dinput_main.c │ ├── dinput_private.h │ ├── joystick_hid.c │ ├── keyboard.c │ ├── mouse.c │ ├── resource.h │ ├── tests │ │ ├── Makefile.in │ │ ├── device8.c │ │ ├── dinput.c │ │ ├── dinput_test.h │ │ ├── driver_bus.c │ │ ├── driver_hid.c │ │ ├── driver_hid.h │ │ ├── driver_hid_poll.c │ │ ├── force_feedback.c │ │ ├── hid.c │ │ ├── hotplug.c │ │ ├── joystick8.c │ │ ├── pop_hid_macros.h │ │ └── psh_hid_macros.h │ └── version.rc ├── dinput8 │ ├── Makefile.in │ ├── dinput8.idl │ ├── dinput8.spec │ └── version.rc ├── directmanipulation │ ├── Makefile.in │ ├── directmanip.idl │ ├── directmanipulation.c │ ├── directmanipulation.spec │ └── tests │ │ ├── Makefile.in │ │ └── manipulation.c ├── dispdib.dll16 │ ├── Makefile.in │ ├── dispdib.c │ └── dispdib.dll16.spec ├── dispex │ ├── Makefile.in │ ├── disp_ex.idl │ ├── dispex.spec │ ├── tests │ │ ├── Makefile.in │ │ └── marshal.c │ └── usrmarshal.c ├── display.drv16 │ ├── Makefile.in │ ├── display.c │ ├── display.drv16.spec │ ├── display.rc │ └── oic_hand.ico ├── dmband │ ├── Makefile.in │ ├── bandtrack.c │ ├── dmband.idl │ ├── dmband.spec │ ├── dmband_main.c │ ├── dmband_private.h │ ├── tests │ │ ├── Makefile.in │ │ └── dmband.c │ └── version.rc ├── dmcompos │ ├── Makefile.in │ ├── chordmap.c │ ├── chordmaptrack.c │ ├── composer.c │ ├── dmcompos.idl │ ├── dmcompos.spec │ ├── dmcompos_main.c │ ├── dmcompos_private.h │ ├── signposttrack.c │ ├── tests │ │ ├── Makefile.in │ │ └── dmcompos.c │ └── version.rc ├── dmime │ ├── Makefile.in │ ├── audiopath.c │ ├── dmime.idl │ ├── dmime.spec │ ├── dmime_main.c │ ├── dmime_private.h │ ├── graph.c │ ├── lyricstrack.c │ ├── markertrack.c │ ├── midi.c │ ├── paramcontroltrack.c │ ├── performance.c │ ├── segment.c │ ├── segmentstate.c │ ├── segtriggertrack.c │ ├── seqtrack.c │ ├── sysextrack.c │ ├── tempotrack.c │ ├── tests │ │ ├── Makefile.in │ │ ├── bogus.mid │ │ ├── dmime.c │ │ ├── resource.rc │ │ ├── test.mid │ │ └── test.wav │ ├── timesigtrack.c │ ├── version.rc │ └── wavetrack.c ├── dmloader │ ├── Makefile.in │ ├── container.c │ ├── debug.c │ ├── debug.h │ ├── dmloader.idl │ ├── dmloader.spec │ ├── dmloader_main.c │ ├── dmloader_private.h │ ├── loader.c │ ├── loaderstream.c │ ├── tests │ │ ├── Makefile.in │ │ └── loader.c │ └── version.rc ├── dmscript │ ├── Makefile.in │ ├── dmscript.idl │ ├── dmscript.rgs │ ├── dmscript.spec │ ├── dmscript_main.c │ ├── dmscript_private.h │ ├── rsrc.rc │ ├── script.c │ ├── scripttrack.c │ └── tests │ │ ├── Makefile.in │ │ └── dmscript.c ├── dmstyle │ ├── Makefile.in │ ├── auditiontrack.c │ ├── chordtrack.c │ ├── commandtrack.c │ ├── dmstyle.idl │ ├── dmstyle.spec │ ├── dmstyle_main.c │ ├── dmstyle_private.h │ ├── dmutils.c │ ├── dmutils.h │ ├── motiftrack.c │ ├── mutetrack.c │ ├── style.c │ ├── styletrack.c │ ├── tests │ │ ├── Makefile.in │ │ └── dmstyle.c │ └── version.rc ├── dmsynth │ ├── Makefile.in │ ├── dmsynth.idl │ ├── dmsynth.spec │ ├── dmsynth_main.c │ ├── dmsynth_private.h │ ├── synth.c │ ├── synthsink.c │ ├── tests │ │ ├── Makefile.in │ │ └── dmsynth.c │ └── version.rc ├── dmusic │ ├── Makefile.in │ ├── band.c │ ├── buffer.c │ ├── clock.c │ ├── collection.c │ ├── dmobject.c │ ├── dmobject.h │ ├── dmusic.c │ ├── dmusic.idl │ ├── dmusic.spec │ ├── dmusic_band.h │ ├── dmusic_main.c │ ├── dmusic_midi.h │ ├── dmusic_private.h │ ├── dmusic_wave.h │ ├── download.c │ ├── instrument.c │ ├── port.c │ ├── soundfont.h │ ├── tests │ │ ├── Makefile.in │ │ └── dmusic.c │ ├── version.rc │ └── wave.c ├── dmusic32 │ ├── Makefile.in │ ├── dmusic32.spec │ ├── dmusic32_main.c │ └── version.rc ├── dnsapi │ ├── Makefile.in │ ├── dnsapi.h │ ├── dnsapi.spec │ ├── libresolv.c │ ├── main.c │ ├── name.c │ ├── query.c │ ├── record.c │ ├── tests │ │ ├── Makefile.in │ │ ├── cache.c │ │ ├── name.c │ │ ├── query.c │ │ └── record.c │ └── version.rc ├── dplay │ ├── Makefile.in │ ├── dplay.spec │ └── version.rc ├── dplayx │ ├── Makefile.in │ ├── dpclassfactory.c │ ├── dplay.c │ ├── dplay_global.h │ ├── dplaysp.c │ ├── dplayx.idl │ ├── dplayx.spec │ ├── dplayx_global.c │ ├── dplayx_global.h │ ├── dplayx_main.c │ ├── dplayx_messages.c │ ├── dplayx_messages.h │ ├── dplayx_queue.h │ ├── dplobby.c │ ├── lobbysp.c │ ├── lobbysp.h │ ├── name_server.c │ ├── name_server.h │ ├── tests │ │ ├── Makefile.in │ │ └── dplayx.c │ └── version.rc ├── dpnaddr │ ├── Makefile.in │ ├── dpnaddr.spec │ └── version.rc ├── dpnet │ ├── Makefile.in │ ├── address.c │ ├── client.c │ ├── dpnet.idl │ ├── dpnet.rgs │ ├── dpnet.spec │ ├── dpnet_main.c │ ├── dpnet_private.h │ ├── lobbiedapp.c │ ├── peer.c │ ├── server.c │ ├── tests │ │ ├── Makefile.in │ │ ├── address.c │ │ ├── client.c │ │ ├── dpnet_test.h │ │ ├── server.c │ │ └── thread.c │ ├── threadpool.c │ └── version.rc ├── dpnhpast │ ├── Makefile.in │ ├── dpnhpast.spec │ ├── main.c │ └── version.rc ├── dpnhupnp │ ├── Makefile.in │ ├── dpnhupnp.spec │ ├── main.c │ └── version.rc ├── dpnlobby │ ├── Makefile.in │ ├── dpnlobby.spec │ └── version.rc ├── dpvoice │ ├── Makefile.in │ ├── client.c │ ├── dpvoice.idl │ ├── dpvoice.spec │ ├── dvoice_private.h │ ├── main.c │ ├── server.c │ ├── tests │ │ ├── Makefile.in │ │ └── voice.c │ └── version.rc ├── dpwsockx │ ├── Makefile.in │ ├── dpwsockx.spec │ ├── dpwsockx_dll.h │ ├── dpwsockx_main.c │ └── version.rc ├── drmclien │ ├── Makefile.in │ └── drmclien.spec ├── dsdmo │ ├── Makefile.in │ ├── dsdmo.idl │ ├── dsdmo.spec │ ├── main.c │ ├── tests │ │ ├── Makefile.in │ │ └── dsdmo.c │ └── version.rc ├── dsound │ ├── Makefile.in │ ├── buffer.c │ ├── capture.c │ ├── dsound.c │ ├── dsound.spec │ ├── dsound_classes.idl │ ├── dsound_convert.c │ ├── dsound_main.c │ ├── dsound_private.h │ ├── duplex.c │ ├── fir.h │ ├── make_fir │ ├── mixer.c │ ├── primary.c │ ├── propset.c │ ├── sound3d.c │ ├── tests │ │ ├── Makefile.in │ │ ├── capture.c │ │ ├── ds3d.c │ │ ├── ds3d8.c │ │ ├── dsound.c │ │ ├── dsound8.c │ │ ├── dsound_test.h │ │ ├── duplex.c │ │ └── propset.c │ └── version.rc ├── dsquery │ ├── Makefile.in │ ├── dsquery.idl │ ├── dsquery.spec │ └── main.c ├── dssenh │ ├── Makefile.in │ ├── dssenh.rgs │ ├── dssenh.spec │ ├── main.c │ ├── rsrc.rc │ └── tests │ │ ├── Makefile.in │ │ └── dssenh.c ├── dsuiext │ ├── Makefile.in │ ├── dsuiext.c │ ├── dsuiext.idl │ └── dsuiext.spec ├── dswave │ ├── Makefile.in │ ├── dswave.idl │ ├── dswave.spec │ ├── dswave_main.c │ ├── dswave_private.h │ ├── tests │ │ ├── Makefile.in │ │ └── dswave.c │ └── version.rc ├── dwmapi │ ├── Makefile.in │ ├── dwmapi.spec │ ├── dwmapi_main.c │ ├── tests │ │ ├── Makefile.in │ │ └── dwmapi.c │ └── version.rc ├── dwrite │ ├── .DS_Store │ ├── Makefile.in │ ├── analyzer.c │ ├── bidi.c │ ├── bracket.c │ ├── direction.c │ ├── dwrite.spec │ ├── dwrite_private.h │ ├── font.c │ ├── format.c │ ├── freetype.c │ ├── gdiinterop.c │ ├── layout.c │ ├── linebreak.c │ ├── main.c │ ├── mirror.c │ ├── opentype.c │ ├── scripts.c │ ├── scripts.h │ ├── shape.c │ ├── shapers │ │ ├── arabic.c │ │ └── arabic_table.c │ ├── tests │ │ ├── Makefile.in │ │ ├── analyzer.c │ │ ├── font.c │ │ ├── layout.c │ │ ├── resource.rc │ │ ├── wine_test.sfd │ │ └── wine_test.ttf │ └── unixlib.h ├── dx8vb │ ├── Makefile.in │ ├── dx8vb.idl │ ├── dx8vb.spec │ ├── main.c │ └── version.rc ├── dxcore │ ├── Makefile.in │ ├── dxcore.spec │ └── main.c ├── dxdiagn │ ├── Makefile.in │ ├── container.c │ ├── dxdiag_main.c │ ├── dxdiag_private.h │ ├── dxdiagn.idl │ ├── dxdiagn.rc │ ├── dxdiagn.spec │ ├── provider.c │ ├── resource.h │ └── tests │ │ ├── Makefile.in │ │ ├── container.c │ │ └── provider.c ├── dxgi │ ├── Makefile.in │ ├── adapter.c │ ├── device.c │ ├── dxgi.spec │ ├── dxgi_main.c │ ├── dxgi_private.h │ ├── factory.c │ ├── output.c │ ├── resource.c │ ├── swapchain.c │ ├── tests │ │ ├── Makefile.in │ │ └── dxgi.c │ ├── utils.c │ └── version.rc ├── dxtrans │ ├── Makefile.in │ ├── dxtrans.spec │ └── main.c ├── dxva2 │ ├── Makefile.in │ ├── dxva2.spec │ ├── main.c │ └── tests │ │ ├── Makefile.in │ │ └── dxva2.c ├── esent │ ├── Makefile.in │ └── esent.spec ├── evr │ ├── Makefile.in │ ├── evr.c │ ├── evr.spec │ ├── evr_classes.idl │ ├── evr_private.h │ ├── main.c │ ├── mixer.c │ ├── presenter.c │ ├── sample.c │ └── tests │ │ ├── Makefile.in │ │ ├── evr.c │ │ ├── nv12frame.bmp │ │ ├── resource.rc │ │ ├── rgb32frame-crop.bmp │ │ ├── rgb32frame-flip.bmp │ │ └── rgb32frame.bmp ├── explorerframe │ ├── Makefile.in │ ├── explorerframe.idl │ ├── explorerframe.spec │ ├── explorerframe_main.c │ ├── explorerframe_main.h │ ├── nstc.c │ ├── taskbarlist.c │ ├── tests │ │ ├── Makefile.in │ │ ├── msg.h │ │ ├── nstc.c │ │ └── taskbarlist.c │ └── version.rc ├── faultrep │ ├── Makefile.in │ ├── faultrep.c │ ├── faultrep.spec │ └── tests │ │ ├── Makefile.in │ │ └── faultrep.c ├── feclient │ ├── Makefile.in │ └── feclient.spec ├── fltlib │ ├── Makefile.in │ ├── fltlib.c │ ├── fltlib.spec │ └── rsrc.rc ├── fltmgr.sys │ ├── Makefile.in │ ├── fltmgr.sys.spec │ └── main.c ├── fntcache │ ├── Makefile.in │ ├── fntcache.spec │ └── main.c ├── fontsub │ ├── Makefile.in │ ├── fontsub.spec │ └── main.c ├── fusion │ ├── Makefile.in │ ├── asmcache.c │ ├── asmenum.c │ ├── asmname.c │ ├── assembly.c │ ├── fusion.c │ ├── fusion.spec │ ├── fusionpriv.h │ ├── tests │ │ ├── Makefile.in │ │ ├── asmcache.c │ │ ├── asmenum.c │ │ ├── asmname.c │ │ └── fusion.c │ └── version.rc ├── fwpuclnt │ ├── Makefile.in │ ├── fwpuclnt.spec │ └── main.c ├── gameux │ ├── Makefile.in │ ├── factory.c │ ├── gameexplorer.c │ ├── gamestatistics.c │ ├── gameux.spec │ ├── gameux_private.h │ ├── gameux_tlb.idl │ ├── rsrc.rc │ └── tests │ │ ├── Makefile.in │ │ ├── gameexplorer.c │ │ ├── gamestatistics.c │ │ ├── rsrc.rc │ │ └── test.gdf.xml ├── gamingtcui │ ├── Makefile.in │ ├── gamingtcui.spec │ └── gamingtcui_main.c ├── gdi.exe16 │ ├── Makefile.in │ ├── bidi.c │ ├── env.c │ ├── gdi.c │ ├── gdi.exe16.spec │ ├── metafile.c │ ├── printdrv.c │ └── version.rc ├── gdi32 │ ├── .DS_Store │ ├── Makefile.in │ ├── dc.c │ ├── emfdc.c │ ├── enhmetafile.c │ ├── gdi32.rc │ ├── gdi32.spec │ ├── gdi_private.h │ ├── icm.c │ ├── metadc.c │ ├── metafile.c │ ├── objects.c │ ├── opengl.c │ ├── resource.h │ ├── tests │ │ ├── Makefile.in │ │ ├── bitmap.c │ │ ├── brush.c │ │ ├── clipping.c │ │ ├── dc.c │ │ ├── dib.c │ │ ├── driver.c │ │ ├── font.c │ │ ├── gdiobj.c │ │ ├── generated.c │ │ ├── icm.c │ │ ├── mapping.c │ │ ├── metafile.c │ │ ├── palette.c │ │ ├── path.c │ │ ├── pen.c │ │ ├── resource.rc │ │ ├── vertical.sfd │ │ ├── vertical.ttf │ │ ├── wine_heavy.sfd │ │ ├── wine_heavy.ttf │ │ ├── wine_langnames.sfd │ │ ├── wine_langnames.ttf │ │ ├── wine_langnames2.sfd │ │ ├── wine_langnames2.ttf │ │ ├── wine_langnames3.sfd │ │ ├── wine_langnames3.ttf │ │ ├── wine_longname.sfd │ │ ├── wine_longname.ttf │ │ ├── wine_nul.sfd │ │ ├── wine_nul.ttf │ │ ├── wine_test.sfd │ │ ├── wine_test.ttf │ │ ├── wine_ttfnames.sfd │ │ ├── wine_ttfnames.ttf │ │ ├── wine_ttfnames_bold.sfd │ │ ├── wine_ttfnames_bold.ttf │ │ ├── wine_vdmx.sfd │ │ └── wine_vdmx.ttf │ ├── text.c │ └── uniscribe │ │ ├── bidi.c │ │ ├── bracket.c │ │ ├── breaking.c │ │ ├── direction.c │ │ ├── indic.c │ │ ├── indicsyllable.c │ │ ├── linebreak.c │ │ ├── mirror.c │ │ ├── opentype.c │ │ ├── shape.c │ │ ├── shaping.c │ │ ├── usp10.c │ │ └── usp10_internal.h ├── gdiplus │ ├── Makefile.in │ ├── brush.c │ ├── customlinecap.c │ ├── font.c │ ├── gdiplus.c │ ├── gdiplus.manifest │ ├── gdiplus.rc │ ├── gdiplus.spec │ ├── gdiplus11.manifest │ ├── gdiplus_private.h │ ├── graphics.c │ ├── graphicspath.c │ ├── image.c │ ├── imageattributes.c │ ├── matrix.c │ ├── metafile.c │ ├── pathiterator.c │ ├── pen.c │ ├── region.c │ ├── stringformat.c │ └── tests │ │ ├── Makefile.in │ │ ├── brush.c │ │ ├── customlinecap.c │ │ ├── font.c │ │ ├── graphics.c │ │ ├── graphicspath.c │ │ ├── image.c │ │ ├── matrix.c │ │ ├── metafile.c │ │ ├── pathiterator.c │ │ ├── pen.c │ │ ├── region.c │ │ ├── resource.rc │ │ ├── stringformat.c │ │ ├── wine_longname.sfd │ │ ├── wine_longname.ttf │ │ ├── wine_mac_win.ttf │ │ ├── wine_mac_win.ttx │ │ ├── wine_testfont0.sfd │ │ ├── wine_testfont0.ttf │ │ ├── wine_unicode_mac.ttf │ │ └── wine_unicode_mac.ttx ├── geolocation │ ├── Makefile.in │ ├── classes.idl │ ├── geolocation.spec │ ├── main.c │ ├── private.h │ └── tests │ │ ├── Makefile.in │ │ └── geolocator.c ├── glu32 │ ├── Makefile.in │ ├── geom.c │ ├── glu.c │ ├── glu32.spec │ ├── mesh.c │ ├── mesh.h │ ├── mipmap.c │ ├── priorityq.c │ ├── project.c │ ├── quad.c │ ├── render.c │ ├── sweep.c │ ├── tess.c │ ├── tess.h │ └── tests │ │ ├── Makefile.in │ │ └── glu.c ├── gphoto2.ds │ ├── Makefile.in │ ├── capability.c │ ├── ds_image.c │ ├── gphoto2.ds.spec │ ├── gphoto2.rc │ ├── gphoto2_i.h │ ├── gphoto2_main.c │ ├── resource.h │ ├── ui.c │ ├── unixlib.c │ └── unixlib.h ├── gpkcsp │ ├── Makefile.in │ └── gpkcsp.spec ├── graphicscapture │ ├── Makefile.in │ ├── classes.idl │ ├── graphicscapture.spec │ ├── main.c │ ├── private.h │ ├── session.c │ └── tests │ │ ├── Makefile.in │ │ └── graphicscapture.c ├── hal │ ├── Makefile.in │ ├── hal.c │ ├── hal.spec │ └── version.rc ├── hhctrl.ocx │ ├── Makefile.in │ ├── chm.c │ ├── content.c │ ├── help.c │ ├── hhctrl.c │ ├── hhctrl.h │ ├── hhctrl.ocx.spec │ ├── hhctrl.rc │ ├── hhctrl_tlb.idl │ ├── hhtoolbar.bmp │ ├── hhtoolbar.svg │ ├── hhtreeview.bmp │ ├── hhtreeview.svg │ ├── index.c │ ├── resource.h │ ├── search.c │ ├── stream.c │ ├── stream.h │ └── webbrowser.c ├── hid │ ├── Makefile.in │ ├── hid.spec │ ├── hidd.c │ ├── hidp.c │ ├── tests │ │ ├── Makefile.in │ │ └── device.c │ └── version.rc ├── hidclass.sys │ ├── Makefile.in │ ├── device.c │ ├── hid.h │ ├── hidclass.rc │ ├── hidclass.sys.spec │ ├── input.inf │ └── pnp.c ├── hidparse.sys │ ├── Makefile.in │ ├── hidparse.sys.spec │ └── main.c ├── hlink │ ├── Makefile.in │ ├── browse_ctx.c │ ├── extserv.c │ ├── hlink.spec │ ├── hlink_classes.idl │ ├── hlink_main.c │ ├── hlink_private.h │ ├── link.c │ └── tests │ │ ├── Makefile.in │ │ ├── browse_ctx.c │ │ └── hlink.c ├── hnetcfg │ ├── Makefile.in │ ├── apps.c │ ├── hnetcfg.c │ ├── hnetcfg.idl │ ├── hnetcfg.spec │ ├── hnetcfg_private.h │ ├── hnetcfg_tlb.idl │ ├── manager.c │ ├── policy.c │ ├── port.c │ ├── profile.c │ ├── service.c │ └── tests │ │ ├── Makefile.in │ │ └── policy.c ├── hrtfapo │ ├── Makefile.in │ ├── hrtfapo.spec │ └── main.c ├── http.sys │ ├── Makefile.in │ ├── http.c │ └── request.h ├── httpapi │ ├── Makefile.in │ ├── httpapi.spec │ ├── httpapi_main.c │ └── tests │ │ ├── Makefile.in │ │ └── httpapi.c ├── hvsimanagementapi │ ├── Makefile.in │ ├── classes.idl │ ├── host.c │ ├── hvsimanagementapi.spec │ ├── main.c │ ├── private.h │ └── tests │ │ ├── Makefile.in │ │ └── isolation.c ├── ia2comproxy │ ├── Makefile.in │ ├── ia2_classes.idl │ ├── ia2comproxy.spec │ └── oleacc_classes.idl ├── iccvid │ ├── Makefile.in │ ├── iccvid.c │ ├── iccvid.rc │ ├── iccvid.spec │ └── iccvid_private.h ├── icmp │ ├── Makefile.in │ └── icmp.spec ├── icmui │ ├── Makefile.in │ ├── icmui.c │ ├── icmui.spec │ └── tests │ │ ├── Makefile.in │ │ └── icmui.c ├── ieframe │ ├── Makefile.in │ ├── classinfo.c │ ├── client.c │ ├── dochost.c │ ├── events.c │ ├── frame.c │ ├── ie.c │ ├── ieframe.h │ ├── ieframe.manifest │ ├── ieframe.rc │ ├── ieframe.rgs │ ├── ieframe.spec │ ├── ieframe_main.c │ ├── ieframe_v1.idl │ ├── iehtmlwnd.c │ ├── ietoolbar.bmp │ ├── ietoolbar.svg │ ├── iexplore.c │ ├── intshcut.c │ ├── navigate.c │ ├── oleobject.c │ ├── persist.c │ ├── resource.h │ ├── shellbrowser.c │ ├── shelluihelper.c │ ├── tests │ │ ├── Makefile.in │ │ ├── ie.c │ │ ├── intshcut.c │ │ └── webbrowser.c │ ├── urlhist.c │ ├── view.c │ └── webbrowser.c ├── ieproxy │ ├── Makefile.in │ ├── ieproxy.spec │ ├── ieproxy_ieautomation.idl │ └── ieproxy_perhist.idl ├── iertutil │ ├── Makefile.in │ ├── classes.idl │ ├── iertutil.spec │ ├── main.c │ ├── private.h │ └── tests │ │ ├── Makefile.in │ │ └── iertutil.c ├── ifsmgr.vxd │ ├── Makefile.in │ ├── ifsmgr.c │ └── ifsmgr.vxd.spec ├── imaadp32.acm │ ├── Makefile.in │ ├── imaadp32.acm.spec │ └── imaadp32.c ├── imagehlp │ ├── Makefile.in │ ├── access.c │ ├── imagehlp.spec │ ├── imagehlp_main.c │ ├── integrity.c │ ├── modify.c │ └── tests │ │ ├── Makefile.in │ │ ├── image.c │ │ ├── integrity.c │ │ ├── testdll.c │ │ └── testdll.spec ├── imm.dll16 │ ├── Makefile.in │ └── imm.dll16.spec ├── imm32 │ ├── Makefile.in │ ├── ime.c │ ├── imm.c │ ├── imm32.spec │ ├── imm_private.h │ ├── tests │ │ ├── Makefile.in │ │ ├── ime_test.h │ │ ├── ime_wrapper.c │ │ ├── ime_wrapper.rc │ │ ├── ime_wrapper.spec │ │ └── imm32.c │ └── version.rc ├── inetcomm │ ├── Makefile.in │ ├── imaptransport.c │ ├── inetcomm.idl │ ├── inetcomm.rc │ ├── inetcomm.rgs │ ├── inetcomm.spec │ ├── inetcomm_main.c │ ├── inetcomm_private.h │ ├── internettransport.c │ ├── mimeintl.c │ ├── mimeole.c │ ├── pop3transport.c │ ├── protocol.c │ ├── smtptransport.c │ └── tests │ │ ├── Makefile.in │ │ ├── mimeintl.c │ │ └── mimeole.c ├── inetcpl.cpl │ ├── Makefile.in │ ├── connections.c │ ├── content.c │ ├── general.c │ ├── inetcpl.c │ ├── inetcpl.cpl.spec │ ├── inetcpl.h │ ├── inetcpl.ico │ ├── inetcpl.manifest │ ├── inetcpl.rc │ ├── inetcpl.svg │ └── security.c ├── inetmib1 │ ├── Makefile.in │ ├── inetmib1.spec │ ├── main.c │ └── tests │ │ ├── Makefile.in │ │ └── main.c ├── infosoft │ ├── Makefile.in │ ├── infosoft.idl │ ├── infosoft.spec │ ├── infosoft_main.c │ ├── tests │ │ ├── Makefile.in │ │ └── infosoft.c │ └── wordbreaker.c ├── initpki │ ├── Makefile.in │ └── initpki.spec ├── inkobj │ ├── Makefile.in │ ├── inkobj.c │ ├── inkobj.spec │ └── inkobj_internal.h ├── inseng │ ├── Makefile.in │ ├── inseng.spec │ ├── inseng_classes.idl │ └── inseng_main.c ├── iphlpapi │ ├── Makefile.in │ ├── iphlpapi.spec │ ├── iphlpapi_main.c │ ├── tests │ │ ├── Makefile.in │ │ └── iphlpapi.c │ └── version.rc ├── iprop │ ├── Makefile.in │ └── iprop.spec ├── ir50_32 │ ├── Makefile.in │ ├── ir50.c │ ├── ir50_32.rc │ ├── ir50_32.spec │ └── ir50_private.h ├── irprops.cpl │ ├── Makefile.in │ └── irprops.cpl.spec ├── itircl │ ├── Makefile.in │ └── itircl.spec ├── itss │ ├── Makefile.in │ ├── chm_lib.c │ ├── chm_lib.h │ ├── itss.c │ ├── itss.idl │ ├── itss.rgs │ ├── itss.spec │ ├── itsstor.h │ ├── lzx.c │ ├── lzx.h │ ├── moniker.c │ ├── protocol.c │ ├── rsrc.rc │ ├── storage.c │ └── tests │ │ ├── Makefile.in │ │ ├── data.chm │ │ ├── protocol.c │ │ └── rsrc.rc ├── joy.cpl │ ├── Makefile.in │ ├── dinput.c │ ├── joy.cpl.spec │ ├── joy.ico │ ├── joy.manifest │ ├── joy.rc │ ├── joy.svg │ ├── joy_private.h │ ├── main.c │ ├── resource.h │ └── xinput.c ├── jscript │ ├── Makefile.in │ ├── activex.c │ ├── array.c │ ├── arraybuf.c │ ├── bool.c │ ├── cc_parser.y │ ├── compile.c │ ├── date.c │ ├── decode.c │ ├── dispex.c │ ├── engine.c │ ├── engine.h │ ├── enumerator.c │ ├── error.c │ ├── function.c │ ├── global.c │ ├── jscript.c │ ├── jscript.h │ ├── jscript.rc │ ├── jscript.rgs │ ├── jscript.spec │ ├── jscript_classes.idl │ ├── jscript_main.c │ ├── jsdisp.idl │ ├── jsglobal.idl │ ├── jsglobal_dispid.h │ ├── json.c │ ├── jsregexp.c │ ├── jsstr.c │ ├── jsstr.h │ ├── jsutils.c │ ├── jsval.h │ ├── lex.c │ ├── math.c │ ├── number.c │ ├── object.c │ ├── parser.h │ ├── parser.y │ ├── regexp.c │ ├── regexp.h │ ├── resource.h │ ├── set.c │ ├── string.c │ ├── tests │ │ ├── Makefile.in │ │ ├── activex.c │ │ ├── api.js │ │ ├── caller.c │ │ ├── cc.js │ │ ├── jscript.c │ │ ├── lang.js │ │ ├── regexp.js │ │ ├── rsrc.rc │ │ ├── run.c │ │ ├── sunspider-regexp-dna.js │ │ ├── sunspider-string-base64.js │ │ └── sunspider-string-validate-input.js │ └── vbarray.c ├── jsproxy │ ├── Makefile.in │ ├── jsproxy.spec │ ├── main.c │ ├── pac.js │ ├── rsrc.rc │ └── tests │ │ ├── Makefile.in │ │ └── jsproxy.c ├── kerberos │ ├── Makefile.in │ ├── kerberos.spec │ ├── krb5_ap.c │ ├── unixlib.c │ └── unixlib.h ├── kernel32 │ ├── Makefile.in │ ├── atom.c │ ├── comm.c │ ├── computername.c │ ├── console.c │ ├── debugger.c │ ├── file.c │ ├── heap.c │ ├── kernel32.spec │ ├── kernel_main.c │ ├── kernel_private.h │ ├── locale.c │ ├── lzexpand.c │ ├── module.c │ ├── path.c │ ├── powermgnt.c │ ├── process.c │ ├── profile.c │ ├── resource.c │ ├── sync.c │ ├── tape.c │ ├── tests │ │ ├── Makefile.in │ │ ├── actctx.c │ │ ├── atom.c │ │ ├── change.c │ │ ├── codepage.c │ │ ├── comm.c │ │ ├── console.c │ │ ├── debugger.c │ │ ├── directory.c │ │ ├── drive.c │ │ ├── dummy.c │ │ ├── dummy.spec │ │ ├── environ.c │ │ ├── fiber.c │ │ ├── file.c │ │ ├── format_msg.c │ │ ├── generated.c │ │ ├── heap.c │ │ ├── loader.c │ │ ├── locale.c │ │ ├── mailslot.c │ │ ├── module.c │ │ ├── path.c │ │ ├── pipe.c │ │ ├── power.c │ │ ├── process.c │ │ ├── profile.c │ │ ├── resource.c │ │ ├── resource.rc │ │ ├── sync.c │ │ ├── thread.c │ │ ├── time.c │ │ ├── timer.c │ │ ├── toolhelp.c │ │ ├── version.c │ │ ├── virtual.c │ │ ├── volume.c │ │ └── wine_test.manifest │ ├── thread.c │ ├── toolhelp.c │ ├── version.c │ ├── version.rc │ ├── virtual.c │ └── volume.c ├── kernelbase │ ├── Makefile.in │ ├── console.c │ ├── debug.c │ ├── file.c │ ├── kernelbase.h │ ├── kernelbase.rc │ ├── kernelbase.rgs │ ├── kernelbase.spec │ ├── loader.c │ ├── locale.c │ ├── main.c │ ├── memory.c │ ├── path.c │ ├── process.c │ ├── registry.c │ ├── security.c │ ├── string.c │ ├── sync.c │ ├── tests │ │ ├── Makefile.in │ │ ├── file.c │ │ ├── memory.c │ │ ├── path.c │ │ ├── process.c │ │ ├── rsrc.rc │ │ ├── sync.c │ │ └── test.manifest │ ├── thread.c │ ├── version.c │ ├── volume.c │ └── winerror.mc ├── keyboard.drv16 │ ├── Makefile.in │ ├── keyboard.c │ └── keyboard.drv16.spec ├── krnl386.exe16 │ ├── Makefile.in │ ├── atom.c │ ├── dosexe.h │ ├── dosmem.c │ ├── error.c │ ├── file.c │ ├── fpu.c │ ├── global.c │ ├── instr.c │ ├── int15.c │ ├── int21.c │ ├── int25.c │ ├── int26.c │ ├── int2f.c │ ├── int31.c │ ├── interrupts.c │ ├── ioports.c │ ├── kernel.c │ ├── kernel16_private.h │ ├── krnl386.exe16.spec │ ├── local.c │ ├── ne_module.c │ ├── ne_segment.c │ ├── registry.c │ ├── relay.c │ ├── resource.c │ ├── selector.c │ ├── snoop.c │ ├── syslevel.c │ ├── task.c │ ├── thunk.c │ ├── utthunk.c │ ├── version.rc │ ├── vxd.c │ └── wowthunk.c ├── ksecdd.sys │ ├── Makefile.in │ ├── ksecdd.sys.spec │ ├── main.c │ └── version.rc ├── ksproxy.ax │ ├── Makefile.in │ ├── ksproxy.ax.spec │ └── version.rc ├── ksuser │ ├── Makefile.in │ ├── ksuser.spec │ └── version.rc ├── ktmw32 │ ├── Makefile.in │ ├── ktmw32.spec │ └── ktmw32_main.c ├── l3codeca.acm │ ├── Makefile.in │ ├── l3codeca.acm.spec │ └── mpegl3.c ├── l3codecx.ax │ ├── Makefile.in │ ├── l3codecx.ax.spec │ ├── l3codecx.c │ └── l3codecx.idl ├── light.msstyles │ ├── Makefile.in │ ├── blue_button.bmp │ ├── blue_button.svg │ ├── blue_checkbox_13px.bmp │ ├── blue_checkbox_13px.svg │ ├── blue_checkbox_16px.bmp │ ├── blue_checkbox_16px.svg │ ├── blue_checkbox_20px.bmp │ ├── blue_checkbox_20px.svg │ ├── blue_checkbox_26px.bmp │ ├── blue_checkbox_26px.svg │ ├── blue_checkbox_32px.bmp │ ├── blue_checkbox_32px.svg │ ├── blue_checkbox_40px.bmp │ ├── blue_checkbox_40px.svg │ ├── blue_checkbox_52px.bmp │ ├── blue_checkbox_52px.svg │ ├── blue_combobox_border.bmp │ ├── blue_combobox_border.svg │ ├── blue_combobox_dropdownbutton.bmp │ ├── blue_combobox_dropdownbutton.svg │ ├── blue_combobox_dropdownbutton_glyph_10px.bmp │ ├── blue_combobox_dropdownbutton_glyph_10px.svg │ ├── blue_combobox_dropdownbutton_glyph_11px.bmp │ ├── blue_combobox_dropdownbutton_glyph_11px.svg │ ├── blue_combobox_dropdownbutton_glyph_14px.bmp │ ├── blue_combobox_dropdownbutton_glyph_14px.svg │ ├── blue_combobox_dropdownbutton_glyph_17px.bmp │ ├── blue_combobox_dropdownbutton_glyph_17px.svg │ ├── blue_combobox_dropdownbutton_glyph_21px.bmp │ ├── blue_combobox_dropdownbutton_glyph_21px.svg │ ├── blue_combobox_dropdownbutton_glyph_27px.bmp │ ├── blue_combobox_dropdownbutton_glyph_27px.svg │ ├── blue_combobox_dropdownbutton_glyph_9px.bmp │ ├── blue_combobox_dropdownbutton_glyph_9px.svg │ ├── blue_combobox_dropdownbutton_left.bmp │ ├── blue_combobox_dropdownbutton_left.svg │ ├── blue_combobox_dropdownbutton_left_glyph_10px.bmp │ ├── blue_combobox_dropdownbutton_left_glyph_10px.svg │ ├── blue_combobox_dropdownbutton_left_glyph_11px.bmp │ ├── blue_combobox_dropdownbutton_left_glyph_11px.svg │ ├── blue_combobox_dropdownbutton_left_glyph_14px.bmp │ ├── blue_combobox_dropdownbutton_left_glyph_14px.svg │ ├── blue_combobox_dropdownbutton_left_glyph_17px.bmp │ ├── blue_combobox_dropdownbutton_left_glyph_17px.svg │ ├── blue_combobox_dropdownbutton_left_glyph_21px.bmp │ ├── blue_combobox_dropdownbutton_left_glyph_21px.svg │ ├── blue_combobox_dropdownbutton_left_glyph_27px.bmp │ ├── blue_combobox_dropdownbutton_left_glyph_27px.svg │ ├── blue_combobox_dropdownbutton_left_glyph_9px.bmp │ ├── blue_combobox_dropdownbutton_left_glyph_9px.svg │ ├── blue_combobox_dropdownbutton_right.bmp │ ├── blue_combobox_dropdownbutton_right.svg │ ├── blue_combobox_dropdownbutton_right_glyph_10px.bmp │ ├── blue_combobox_dropdownbutton_right_glyph_10px.svg │ ├── blue_combobox_dropdownbutton_right_glyph_11px.bmp │ ├── blue_combobox_dropdownbutton_right_glyph_11px.svg │ ├── blue_combobox_dropdownbutton_right_glyph_14px.bmp │ ├── blue_combobox_dropdownbutton_right_glyph_14px.svg │ ├── blue_combobox_dropdownbutton_right_glyph_17px.bmp │ ├── blue_combobox_dropdownbutton_right_glyph_17px.svg │ ├── blue_combobox_dropdownbutton_right_glyph_21px.bmp │ ├── blue_combobox_dropdownbutton_right_glyph_21px.svg │ ├── blue_combobox_dropdownbutton_right_glyph_27px.bmp │ ├── blue_combobox_dropdownbutton_right_glyph_27px.svg │ ├── blue_combobox_dropdownbutton_right_glyph_9px.bmp │ ├── blue_combobox_dropdownbutton_right_glyph_9px.svg │ ├── blue_combobox_readonly.bmp │ ├── blue_combobox_readonly.svg │ ├── blue_commandlink.bmp │ ├── blue_commandlink.svg │ ├── blue_commandlink_glyph_30px.bmp │ ├── blue_commandlink_glyph_30px.svg │ ├── blue_commandlink_glyph_37px.bmp │ ├── blue_commandlink_glyph_37px.svg │ ├── blue_commandlink_glyph_45px.bmp │ ├── blue_commandlink_glyph_45px.svg │ ├── blue_commandlink_glyph_52px.bmp │ ├── blue_commandlink_glyph_52px.svg │ ├── blue_commandlink_glyph_60px.bmp │ ├── blue_commandlink_glyph_60px.svg │ ├── blue_commandlink_glyph_67px.bmp │ ├── blue_commandlink_glyph_67px.svg │ ├── blue_commandlink_glyph_75px.bmp │ ├── blue_commandlink_glyph_75px.svg │ ├── blue_edit_background_1x12px.bmp │ ├── blue_edit_background_1x12px.svg │ ├── blue_edit_background_1x15px.bmp │ ├── blue_edit_background_1x15px.svg │ ├── blue_edit_background_1x18px.bmp │ ├── blue_edit_background_1x18px.svg │ ├── blue_edit_background_1x24px.bmp │ ├── blue_edit_background_1x24px.svg │ ├── blue_edit_background_1x6px.bmp │ ├── blue_edit_background_1x6px.svg │ ├── blue_edit_border_hscroll.bmp │ ├── blue_edit_border_hscroll.svg │ ├── blue_edit_border_hvscroll.bmp │ ├── blue_edit_border_hvscroll.svg │ ├── blue_edit_border_noscroll.bmp │ ├── blue_edit_border_noscroll.svg │ ├── blue_edit_border_vscroll.bmp │ ├── blue_edit_border_vscroll.svg │ ├── blue_explorer_listview_item_hot.bmp │ ├── blue_explorer_listview_item_hot.svg │ ├── blue_explorer_listview_item_hot_selected.bmp │ ├── blue_explorer_listview_item_hot_selected.svg │ ├── blue_explorer_listview_item_selected.bmp │ ├── blue_explorer_listview_item_selected.svg │ ├── blue_explorer_listview_item_selected_not_focus.bmp │ ├── blue_explorer_listview_item_selected_not_focus.svg │ ├── blue_explorer_treeview_glyph_16px.bmp │ ├── blue_explorer_treeview_glyph_16px.svg │ ├── blue_explorer_treeview_glyph_20px.bmp │ ├── blue_explorer_treeview_glyph_20px.svg │ ├── blue_explorer_treeview_glyph_24px.bmp │ ├── blue_explorer_treeview_glyph_24px.svg │ ├── blue_explorer_treeview_glyph_32px.bmp │ ├── blue_explorer_treeview_glyph_32px.svg │ ├── blue_explorer_treeview_glyph_40px.bmp │ ├── blue_explorer_treeview_glyph_40px.svg │ ├── blue_explorer_treeview_glyph_48px.bmp │ ├── blue_explorer_treeview_glyph_48px.svg │ ├── blue_explorer_treeview_glyph_64px.bmp │ ├── blue_explorer_treeview_glyph_64px.svg │ ├── blue_explorer_treeview_hot_glyph_16px.bmp │ ├── blue_explorer_treeview_hot_glyph_16px.svg │ ├── blue_explorer_treeview_hot_glyph_20px.bmp │ ├── blue_explorer_treeview_hot_glyph_20px.svg │ ├── blue_explorer_treeview_hot_glyph_24px.bmp │ ├── blue_explorer_treeview_hot_glyph_24px.svg │ ├── blue_explorer_treeview_hot_glyph_32px.bmp │ ├── blue_explorer_treeview_hot_glyph_32px.svg │ ├── blue_explorer_treeview_hot_glyph_40px.bmp │ ├── blue_explorer_treeview_hot_glyph_40px.svg │ ├── blue_explorer_treeview_hot_glyph_48px.bmp │ ├── blue_explorer_treeview_hot_glyph_48px.svg │ ├── blue_explorer_treeview_hot_glyph_64px.bmp │ ├── blue_explorer_treeview_hot_glyph_64px.svg │ ├── blue_explorer_treeview_item_hot.bmp │ ├── blue_explorer_treeview_item_hot.svg │ ├── blue_explorer_treeview_item_hot_selected.bmp │ ├── blue_explorer_treeview_item_hot_selected.svg │ ├── blue_explorer_treeview_item_selected.bmp │ ├── blue_explorer_treeview_item_selected.svg │ ├── blue_explorer_treeview_item_selected_not_focus.bmp │ ├── blue_explorer_treeview_item_selected_not_focus.svg │ ├── blue_groupbox.bmp │ ├── blue_groupbox.svg │ ├── blue_header.bmp │ ├── blue_header.svg │ ├── blue_header_dropdown.bmp │ ├── blue_header_dropdown.svg │ ├── blue_header_dropdown_filter.bmp │ ├── blue_header_dropdown_filter.svg │ ├── blue_header_dropdown_filter_glyph_10px.bmp │ ├── blue_header_dropdown_filter_glyph_10px.svg │ ├── blue_header_dropdown_filter_glyph_12px.bmp │ ├── blue_header_dropdown_filter_glyph_12px.svg │ ├── blue_header_dropdown_filter_glyph_15px.bmp │ ├── blue_header_dropdown_filter_glyph_15px.svg │ ├── blue_header_dropdown_filter_glyph_19px.bmp │ ├── blue_header_dropdown_filter_glyph_19px.svg │ ├── blue_header_dropdown_filter_glyph_23px.bmp │ ├── blue_header_dropdown_filter_glyph_23px.svg │ ├── blue_header_dropdown_glyph_10px.bmp │ ├── blue_header_dropdown_glyph_10px.svg │ ├── blue_header_dropdown_glyph_13px.bmp │ ├── blue_header_dropdown_glyph_13px.svg │ ├── blue_header_dropdown_glyph_17px.bmp │ ├── blue_header_dropdown_glyph_17px.svg │ ├── blue_header_dropdown_glyph_21px.bmp │ ├── blue_header_dropdown_glyph_21px.svg │ ├── blue_header_dropdown_glyph_29px.bmp │ ├── blue_header_dropdown_glyph_29px.svg │ ├── blue_header_dropdown_glyph_7px.bmp │ ├── blue_header_dropdown_glyph_7px.svg │ ├── blue_header_dropdown_glyph_9px.bmp │ ├── blue_header_dropdown_glyph_9px.svg │ ├── blue_header_item.bmp │ ├── blue_header_item.svg │ ├── blue_header_overflow.bmp │ ├── blue_header_overflow.svg │ ├── blue_header_overflow_glyph_10px.bmp │ ├── blue_header_overflow_glyph_10px.svg │ ├── blue_header_overflow_glyph_12px.bmp │ ├── blue_header_overflow_glyph_12px.svg │ ├── blue_header_overflow_glyph_16px.bmp │ ├── blue_header_overflow_glyph_16px.svg │ ├── blue_header_overflow_glyph_20px.bmp │ ├── blue_header_overflow_glyph_20px.svg │ ├── blue_header_overflow_glyph_24px.bmp │ ├── blue_header_overflow_glyph_24px.svg │ ├── blue_header_overflow_glyph_32px.bmp │ ├── blue_header_overflow_glyph_32px.svg │ ├── blue_header_overflow_glyph_8px.bmp │ ├── blue_header_overflow_glyph_8px.svg │ ├── blue_header_sort_arrow_13px.bmp │ ├── blue_header_sort_arrow_13px.svg │ ├── blue_header_sort_arrow_16px.bmp │ ├── blue_header_sort_arrow_16px.svg │ ├── blue_header_sort_arrow_17px.bmp │ ├── blue_header_sort_arrow_17px.svg │ ├── blue_header_sort_arrow_20px.bmp │ ├── blue_header_sort_arrow_20px.svg │ ├── blue_header_sort_arrow_26px.bmp │ ├── blue_header_sort_arrow_26px.svg │ ├── blue_header_sort_arrow_39px.bmp │ ├── blue_header_sort_arrow_39px.svg │ ├── blue_header_sort_arrow_52px.bmp │ ├── blue_header_sort_arrow_52px.svg │ ├── blue_listview_collapse_button_15px.bmp │ ├── blue_listview_collapse_button_15px.svg │ ├── blue_listview_collapse_button_19px.bmp │ ├── blue_listview_collapse_button_19px.svg │ ├── blue_listview_collapse_button_23px.bmp │ ├── blue_listview_collapse_button_23px.svg │ ├── blue_listview_collapse_button_30px.bmp │ ├── blue_listview_collapse_button_30px.svg │ ├── blue_listview_collapse_button_37px.bmp │ ├── blue_listview_collapse_button_37px.svg │ ├── blue_listview_collapse_button_45px.bmp │ ├── blue_listview_collapse_button_45px.svg │ ├── blue_listview_collapse_button_60px.bmp │ ├── blue_listview_collapse_button_60px.svg │ ├── blue_listview_column_detail.bmp │ ├── blue_listview_column_detail.svg │ ├── blue_listview_expand_button_15px.bmp │ ├── blue_listview_expand_button_15px.svg │ ├── blue_listview_expand_button_19px.bmp │ ├── blue_listview_expand_button_19px.svg │ ├── blue_listview_expand_button_23px.bmp │ ├── blue_listview_expand_button_23px.svg │ ├── blue_listview_expand_button_30px.bmp │ ├── blue_listview_expand_button_30px.svg │ ├── blue_listview_expand_button_37px.bmp │ ├── blue_listview_expand_button_37px.svg │ ├── blue_listview_expand_button_45px.bmp │ ├── blue_listview_expand_button_45px.svg │ ├── blue_listview_expand_button_60px.bmp │ ├── blue_listview_expand_button_60px.svg │ ├── blue_listview_group_header_close_hot.bmp │ ├── blue_listview_group_header_close_hot.svg │ ├── blue_listview_group_header_close_mixed_selection.bmp │ ├── blue_listview_group_header_close_mixed_selection.svg │ ├── blue_listview_group_header_close_mixed_selection_hot.bmp │ ├── blue_listview_group_header_close_mixed_selection_hot.svg │ ├── blue_listview_group_header_close_selected.bmp │ ├── blue_listview_group_header_close_selected.svg │ ├── blue_listview_group_header_close_selected_hot.bmp │ ├── blue_listview_group_header_close_selected_hot.svg │ ├── blue_listview_group_header_close_selected_not_focused.bmp │ ├── blue_listview_group_header_close_selected_not_focused.svg │ ├── blue_listview_group_header_close_selected_not_focused_hot.bmp │ ├── blue_listview_group_header_close_selected_not_focused_hot.svg │ ├── blue_listview_group_header_line.bmp │ ├── blue_listview_group_header_line.svg │ ├── blue_listview_group_header_open_hot.bmp │ ├── blue_listview_group_header_open_hot.svg │ ├── blue_listview_group_header_open_mixed_selection_hot.bmp │ ├── blue_listview_group_header_open_mixed_selection_hot.svg │ ├── blue_listview_group_header_open_selected_hot.bmp │ ├── blue_listview_group_header_open_selected_hot.svg │ ├── blue_listview_group_header_open_selected_not_focused_hot.bmp │ ├── blue_listview_group_header_open_selected_not_focused_hot.svg │ ├── blue_menu_bar_background.bmp │ ├── blue_menu_bar_background.svg │ ├── blue_menu_bar_item.bmp │ ├── blue_menu_bar_item.svg │ ├── blue_menu_popup_background.bmp │ ├── blue_menu_popup_background.svg │ ├── blue_menu_popup_borders.bmp │ ├── blue_menu_popup_borders.svg │ ├── blue_menu_popup_check_16px.bmp │ ├── blue_menu_popup_check_16px.svg │ ├── blue_menu_popup_check_18px.bmp │ ├── blue_menu_popup_check_18px.svg │ ├── blue_menu_popup_check_25px.bmp │ ├── blue_menu_popup_check_25px.svg │ ├── blue_menu_popup_check_32px.bmp │ ├── blue_menu_popup_check_32px.svg │ ├── blue_menu_popup_check_40px.bmp │ ├── blue_menu_popup_check_40px.svg │ ├── blue_menu_popup_check_48px.bmp │ ├── blue_menu_popup_check_48px.svg │ ├── blue_menu_popup_check_64px.bmp │ ├── blue_menu_popup_check_64px.svg │ ├── blue_menu_popup_check_background.bmp │ ├── blue_menu_popup_check_background.svg │ ├── blue_menu_popup_gutter.bmp │ ├── blue_menu_popup_gutter.svg │ ├── blue_menu_popup_item.bmp │ ├── blue_menu_popup_item.svg │ ├── blue_menu_popup_separator.bmp │ ├── blue_menu_popup_separator.svg │ ├── blue_menu_popup_submenu_11px.bmp │ ├── blue_menu_popup_submenu_11px.svg │ ├── blue_menu_popup_submenu_14px.bmp │ ├── blue_menu_popup_submenu_14px.svg │ ├── blue_menu_popup_submenu_18px.bmp │ ├── blue_menu_popup_submenu_18px.svg │ ├── blue_menu_popup_submenu_23px.bmp │ ├── blue_menu_popup_submenu_23px.svg │ ├── blue_menu_popup_submenu_27px.bmp │ ├── blue_menu_popup_submenu_27px.svg │ ├── blue_menu_popup_submenu_36px.bmp │ ├── blue_menu_popup_submenu_36px.svg │ ├── blue_menu_popup_submenu_9px.bmp │ ├── blue_menu_popup_submenu_9px.svg │ ├── blue_menu_system_close_11px.bmp │ ├── blue_menu_system_close_11px.svg │ ├── blue_menu_system_close_14px.bmp │ ├── blue_menu_system_close_14px.svg │ ├── blue_menu_system_close_17px.bmp │ ├── blue_menu_system_close_17px.svg │ ├── blue_menu_system_close_22px.bmp │ ├── blue_menu_system_close_22px.svg │ ├── blue_menu_system_close_28px.bmp │ ├── blue_menu_system_close_28px.svg │ ├── blue_menu_system_close_34px.bmp │ ├── blue_menu_system_close_34px.svg │ ├── blue_menu_system_close_44px.bmp │ ├── blue_menu_system_close_44px.svg │ ├── blue_menu_system_maximize_11px.bmp │ ├── blue_menu_system_maximize_11px.svg │ ├── blue_menu_system_maximize_14px.bmp │ ├── blue_menu_system_maximize_14px.svg │ ├── blue_menu_system_maximize_17px.bmp │ ├── blue_menu_system_maximize_17px.svg │ ├── blue_menu_system_maximize_22px.bmp │ ├── blue_menu_system_maximize_22px.svg │ ├── blue_menu_system_maximize_28px.bmp │ ├── blue_menu_system_maximize_28px.svg │ ├── blue_menu_system_maximize_34px.bmp │ ├── blue_menu_system_maximize_34px.svg │ ├── blue_menu_system_maximize_44px.bmp │ ├── blue_menu_system_maximize_44px.svg │ ├── blue_menu_system_minimize_11px.bmp │ ├── blue_menu_system_minimize_11px.svg │ ├── blue_menu_system_minimize_14px.bmp │ ├── blue_menu_system_minimize_14px.svg │ ├── blue_menu_system_minimize_17px.bmp │ ├── blue_menu_system_minimize_17px.svg │ ├── blue_menu_system_minimize_22px.bmp │ ├── blue_menu_system_minimize_22px.svg │ ├── blue_menu_system_minimize_28px.bmp │ ├── blue_menu_system_minimize_28px.svg │ ├── blue_menu_system_minimize_34px.bmp │ ├── blue_menu_system_minimize_34px.svg │ ├── blue_menu_system_minimize_44px.bmp │ ├── blue_menu_system_minimize_44px.svg │ ├── blue_menu_system_restore_11px.bmp │ ├── blue_menu_system_restore_11px.svg │ ├── blue_menu_system_restore_14px.bmp │ ├── blue_menu_system_restore_14px.svg │ ├── blue_menu_system_restore_17px.bmp │ ├── blue_menu_system_restore_17px.svg │ ├── blue_menu_system_restore_22px.bmp │ ├── blue_menu_system_restore_22px.svg │ ├── blue_menu_system_restore_28px.bmp │ ├── blue_menu_system_restore_28px.svg │ ├── blue_menu_system_restore_34px.bmp │ ├── blue_menu_system_restore_34px.svg │ ├── blue_menu_system_restore_44px.bmp │ ├── blue_menu_system_restore_44px.svg │ ├── blue_navigation_back_button_120px.bmp │ ├── blue_navigation_back_button_120px.svg │ ├── blue_navigation_back_button_30px.bmp │ ├── blue_navigation_back_button_30px.svg │ ├── blue_navigation_back_button_38px.bmp │ ├── blue_navigation_back_button_38px.svg │ ├── blue_navigation_back_button_45px.bmp │ ├── blue_navigation_back_button_45px.svg │ ├── blue_navigation_back_button_60px.bmp │ ├── blue_navigation_back_button_60px.svg │ ├── blue_navigation_back_button_74px.bmp │ ├── blue_navigation_back_button_74px.svg │ ├── blue_navigation_back_button_90px.bmp │ ├── blue_navigation_back_button_90px.svg │ ├── blue_navigation_forward_button_120px.bmp │ ├── blue_navigation_forward_button_120px.svg │ ├── blue_navigation_forward_button_30px.bmp │ ├── blue_navigation_forward_button_30px.svg │ ├── blue_navigation_forward_button_38px.bmp │ ├── blue_navigation_forward_button_38px.svg │ ├── blue_navigation_forward_button_45px.bmp │ ├── blue_navigation_forward_button_45px.svg │ ├── blue_navigation_forward_button_60px.bmp │ ├── blue_navigation_forward_button_60px.svg │ ├── blue_navigation_forward_button_74px.bmp │ ├── blue_navigation_forward_button_74px.svg │ ├── blue_navigation_forward_button_90px.bmp │ ├── blue_navigation_forward_button_90px.svg │ ├── blue_navigation_menu_button_13px.bmp │ ├── blue_navigation_menu_button_13px.svg │ ├── blue_navigation_menu_button_17px.bmp │ ├── blue_navigation_menu_button_17px.svg │ ├── blue_navigation_menu_button_19px.bmp │ ├── blue_navigation_menu_button_19px.svg │ ├── blue_navigation_menu_button_26px.bmp │ ├── blue_navigation_menu_button_26px.svg │ ├── blue_navigation_menu_button_32px.bmp │ ├── blue_navigation_menu_button_32px.svg │ ├── blue_navigation_menu_button_39px.bmp │ ├── blue_navigation_menu_button_39px.svg │ ├── blue_navigation_menu_button_52px.bmp │ ├── blue_navigation_menu_button_52px.svg │ ├── blue_radiobutton_13px.bmp │ ├── blue_radiobutton_13px.svg │ ├── blue_radiobutton_16px.bmp │ ├── blue_radiobutton_16px.svg │ ├── blue_radiobutton_19px.bmp │ ├── blue_radiobutton_19px.svg │ ├── blue_radiobutton_22px.bmp │ ├── blue_radiobutton_22px.svg │ ├── blue_radiobutton_25px.bmp │ ├── blue_radiobutton_25px.svg │ ├── blue_radiobutton_28px.bmp │ ├── blue_radiobutton_28px.svg │ ├── blue_radiobutton_31px.bmp │ ├── blue_radiobutton_31px.svg │ ├── blue_rebar_background.bmp │ ├── blue_rebar_background.svg │ ├── blue_rebar_chevron_background.bmp │ ├── blue_rebar_chevron_background.svg │ ├── blue_rebar_chevron_glyph_10px.bmp │ ├── blue_rebar_chevron_glyph_10px.svg │ ├── blue_rebar_chevron_glyph_13px.bmp │ ├── blue_rebar_chevron_glyph_13px.svg │ ├── blue_rebar_chevron_glyph_15px.bmp │ ├── blue_rebar_chevron_glyph_15px.svg │ ├── blue_rebar_chevron_glyph_20px.bmp │ ├── blue_rebar_chevron_glyph_20px.svg │ ├── blue_rebar_chevron_glyph_25px.bmp │ ├── blue_rebar_chevron_glyph_25px.svg │ ├── blue_rebar_chevron_glyph_30px.bmp │ ├── blue_rebar_chevron_glyph_30px.svg │ ├── blue_rebar_chevron_glyph_40px.bmp │ ├── blue_rebar_chevron_glyph_40px.svg │ ├── blue_rebar_chevron_vertical_background.bmp │ ├── blue_rebar_chevron_vertical_background.svg │ ├── blue_rebar_chevron_vertical_glyph_10px.bmp │ ├── blue_rebar_chevron_vertical_glyph_10px.svg │ ├── blue_rebar_chevron_vertical_glyph_13px.bmp │ ├── blue_rebar_chevron_vertical_glyph_13px.svg │ ├── blue_rebar_chevron_vertical_glyph_15px.bmp │ ├── blue_rebar_chevron_vertical_glyph_15px.svg │ ├── blue_rebar_gripper_horizontal.bmp │ ├── blue_rebar_gripper_horizontal.svg │ ├── blue_rebar_gripper_vertical.bmp │ ├── blue_rebar_gripper_vertical.svg │ ├── blue_rebar_splitter.bmp │ ├── blue_rebar_splitter.svg │ ├── blue_rebar_splitter_vertical.bmp │ ├── blue_rebar_splitter_vertical.svg │ ├── blue_scrollbar_arrow_glyphs_13px.bmp │ ├── blue_scrollbar_arrow_glyphs_13px.svg │ ├── blue_scrollbar_arrow_glyphs_16px.bmp │ ├── blue_scrollbar_arrow_glyphs_16px.svg │ ├── blue_scrollbar_arrow_glyphs_20px.bmp │ ├── blue_scrollbar_arrow_glyphs_20px.svg │ ├── blue_scrollbar_arrow_glyphs_26px.bmp │ ├── blue_scrollbar_arrow_glyphs_26px.svg │ ├── blue_scrollbar_arrow_glyphs_32px.bmp │ ├── blue_scrollbar_arrow_glyphs_32px.svg │ ├── blue_scrollbar_arrow_glyphs_39px.bmp │ ├── blue_scrollbar_arrow_glyphs_39px.svg │ ├── blue_scrollbar_arrow_glyphs_52px.bmp │ ├── blue_scrollbar_arrow_glyphs_52px.svg │ ├── blue_scrollbar_arrows.bmp │ ├── blue_scrollbar_arrows.svg │ ├── blue_scrollbar_gripper_horizontal_10px.bmp │ ├── blue_scrollbar_gripper_horizontal_10px.svg │ ├── blue_scrollbar_gripper_horizontal_12px.bmp │ ├── blue_scrollbar_gripper_horizontal_12px.svg │ ├── blue_scrollbar_gripper_horizontal_16px.bmp │ ├── blue_scrollbar_gripper_horizontal_16px.svg │ ├── blue_scrollbar_gripper_horizontal_20px.bmp │ ├── blue_scrollbar_gripper_horizontal_20px.svg │ ├── blue_scrollbar_gripper_horizontal_25px.bmp │ ├── blue_scrollbar_gripper_horizontal_25px.svg │ ├── blue_scrollbar_gripper_horizontal_30px.bmp │ ├── blue_scrollbar_gripper_horizontal_30px.svg │ ├── blue_scrollbar_gripper_horizontal_40px.bmp │ ├── blue_scrollbar_gripper_horizontal_40px.svg │ ├── blue_scrollbar_gripper_vertical_11px.bmp │ ├── blue_scrollbar_gripper_vertical_11px.svg │ ├── blue_scrollbar_gripper_vertical_14px.bmp │ ├── blue_scrollbar_gripper_vertical_14px.svg │ ├── blue_scrollbar_gripper_vertical_22px.bmp │ ├── blue_scrollbar_gripper_vertical_22px.svg │ ├── blue_scrollbar_gripper_vertical_27px.bmp │ ├── blue_scrollbar_gripper_vertical_27px.svg │ ├── blue_scrollbar_gripper_vertical_36px.bmp │ ├── blue_scrollbar_gripper_vertical_36px.svg │ ├── blue_scrollbar_gripper_vertical_9px.bmp │ ├── blue_scrollbar_gripper_vertical_9px.svg │ ├── blue_scrollbar_lower_track_horizontal.bmp │ ├── blue_scrollbar_lower_track_horizontal.svg │ ├── blue_scrollbar_lower_track_vertical.bmp │ ├── blue_scrollbar_lower_track_vertical.svg │ ├── blue_scrollbar_resizebox_grip_16px.bmp │ ├── blue_scrollbar_resizebox_grip_16px.svg │ ├── blue_scrollbar_resizebox_grip_20px.bmp │ ├── blue_scrollbar_resizebox_grip_20px.svg │ ├── blue_scrollbar_resizebox_grip_24px.bmp │ ├── blue_scrollbar_resizebox_grip_24px.svg │ ├── blue_scrollbar_resizebox_grip_32px.bmp │ ├── blue_scrollbar_resizebox_grip_32px.svg │ ├── blue_scrollbar_resizebox_grip_40px.bmp │ ├── blue_scrollbar_resizebox_grip_40px.svg │ ├── blue_scrollbar_resizebox_grip_48px.bmp │ ├── blue_scrollbar_resizebox_grip_48px.svg │ ├── blue_scrollbar_resizebox_grip_64px.bmp │ ├── blue_scrollbar_resizebox_grip_64px.svg │ ├── blue_scrollbar_thumb_horizontal.bmp │ ├── blue_scrollbar_thumb_horizontal.svg │ ├── blue_scrollbar_thumb_vertical.bmp │ ├── blue_scrollbar_thumb_vertical.svg │ ├── blue_scrollbar_upper_track_horizontal.bmp │ ├── blue_scrollbar_upper_track_horizontal.svg │ ├── blue_scrollbar_upper_track_vertical.bmp │ ├── blue_scrollbar_upper_track_vertical.svg │ ├── blue_spin_background_down.bmp │ ├── blue_spin_background_down.svg │ ├── blue_spin_background_left.bmp │ ├── blue_spin_background_left.svg │ ├── blue_spin_background_right.bmp │ ├── blue_spin_background_right.svg │ ├── blue_spin_background_up.bmp │ ├── blue_spin_background_up.svg │ ├── blue_spin_glyph_down_11px.bmp │ ├── blue_spin_glyph_down_11px.svg │ ├── blue_spin_glyph_down_14px.bmp │ ├── blue_spin_glyph_down_14px.svg │ ├── blue_spin_glyph_down_18px.bmp │ ├── blue_spin_glyph_down_18px.svg │ ├── blue_spin_glyph_down_21px.bmp │ ├── blue_spin_glyph_down_21px.svg │ ├── blue_spin_glyph_down_28px.bmp │ ├── blue_spin_glyph_down_28px.svg │ ├── blue_spin_glyph_down_7x16px.bmp │ ├── blue_spin_glyph_down_7x16px.svg │ ├── blue_spin_glyph_down_7x24px.bmp │ ├── blue_spin_glyph_down_7x24px.svg │ ├── blue_spin_glyph_left_12px.bmp │ ├── blue_spin_glyph_left_12px.svg │ ├── blue_spin_glyph_left_15px.bmp │ ├── blue_spin_glyph_left_15px.svg │ ├── blue_spin_glyph_left_18px.bmp │ ├── blue_spin_glyph_left_18px.svg │ ├── blue_spin_glyph_left_24px.bmp │ ├── blue_spin_glyph_left_24px.svg │ ├── blue_spin_glyph_left_4px.bmp │ ├── blue_spin_glyph_left_4px.svg │ ├── blue_spin_glyph_left_6px.bmp │ ├── blue_spin_glyph_left_6px.svg │ ├── blue_spin_glyph_left_9px.bmp │ ├── blue_spin_glyph_left_9px.svg │ ├── blue_spin_glyph_right_12px.bmp │ ├── blue_spin_glyph_right_12px.svg │ ├── blue_spin_glyph_right_15px.bmp │ ├── blue_spin_glyph_right_15px.svg │ ├── blue_spin_glyph_right_18px.bmp │ ├── blue_spin_glyph_right_18px.svg │ ├── blue_spin_glyph_right_24px.bmp │ ├── blue_spin_glyph_right_24px.svg │ ├── blue_spin_glyph_right_4px.bmp │ ├── blue_spin_glyph_right_4px.svg │ ├── blue_spin_glyph_right_6px.bmp │ ├── blue_spin_glyph_right_6px.svg │ ├── blue_spin_glyph_right_9px.bmp │ ├── blue_spin_glyph_right_9px.svg │ ├── blue_spin_glyph_up_11px.bmp │ ├── blue_spin_glyph_up_11px.svg │ ├── blue_spin_glyph_up_14px.bmp │ ├── blue_spin_glyph_up_14px.svg │ ├── blue_spin_glyph_up_18px.bmp │ ├── blue_spin_glyph_up_18px.svg │ ├── blue_spin_glyph_up_21px.bmp │ ├── blue_spin_glyph_up_21px.svg │ ├── blue_spin_glyph_up_28px.bmp │ ├── blue_spin_glyph_up_28px.svg │ ├── blue_spin_glyph_up_7x20px.bmp │ ├── blue_spin_glyph_up_7x20px.svg │ ├── blue_spin_glyph_up_7x24px.bmp │ ├── blue_spin_glyph_up_7x24px.svg │ ├── blue_status_background.bmp │ ├── blue_status_background.svg │ ├── blue_status_pane.bmp │ ├── blue_status_pane.svg │ ├── blue_tab_background.bmp │ ├── blue_tab_background.svg │ ├── blue_tab_item.bmp │ ├── blue_tab_item.svg │ ├── blue_tab_item_left.bmp │ ├── blue_tab_item_left.svg │ ├── blue_tab_item_right.bmp │ ├── blue_tab_item_right.svg │ ├── blue_tab_pane_edge.bmp │ ├── blue_tab_pane_edge.svg │ ├── blue_taskdialog_expando_button_expanded_hover_19px.bmp │ ├── blue_taskdialog_expando_button_expanded_hover_19px.svg │ ├── blue_taskdialog_expando_button_expanded_hover_24px.bmp │ ├── blue_taskdialog_expando_button_expanded_hover_24px.svg │ ├── blue_taskdialog_expando_button_expanded_hover_29px.bmp │ ├── blue_taskdialog_expando_button_expanded_hover_29px.svg │ ├── blue_taskdialog_expando_button_expanded_hover_33px.bmp │ ├── blue_taskdialog_expando_button_expanded_hover_33px.svg │ ├── blue_taskdialog_expando_button_expanded_hover_38px.bmp │ ├── blue_taskdialog_expando_button_expanded_hover_38px.svg │ ├── blue_taskdialog_expando_button_expanded_hover_43px.bmp │ ├── blue_taskdialog_expando_button_expanded_hover_43px.svg │ ├── blue_taskdialog_expando_button_expanded_hover_48px.bmp │ ├── blue_taskdialog_expando_button_expanded_hover_48px.svg │ ├── blue_taskdialog_expando_button_expanded_normal_19px.bmp │ ├── blue_taskdialog_expando_button_expanded_normal_19px.svg │ ├── blue_taskdialog_expando_button_expanded_normal_24px.bmp │ ├── blue_taskdialog_expando_button_expanded_normal_24px.svg │ ├── blue_taskdialog_expando_button_expanded_normal_29px.bmp │ ├── blue_taskdialog_expando_button_expanded_normal_29px.svg │ ├── blue_taskdialog_expando_button_expanded_normal_33px.bmp │ ├── blue_taskdialog_expando_button_expanded_normal_33px.svg │ ├── blue_taskdialog_expando_button_expanded_normal_38px.bmp │ ├── blue_taskdialog_expando_button_expanded_normal_38px.svg │ ├── blue_taskdialog_expando_button_expanded_normal_43px.bmp │ ├── blue_taskdialog_expando_button_expanded_normal_43px.svg │ ├── blue_taskdialog_expando_button_expanded_normal_48px.bmp │ ├── blue_taskdialog_expando_button_expanded_normal_48px.svg │ ├── blue_taskdialog_expando_button_expanded_pressed_19px.bmp │ ├── blue_taskdialog_expando_button_expanded_pressed_19px.svg │ ├── blue_taskdialog_expando_button_expanded_pressed_24px.bmp │ ├── blue_taskdialog_expando_button_expanded_pressed_24px.svg │ ├── blue_taskdialog_expando_button_expanded_pressed_29px.bmp │ ├── blue_taskdialog_expando_button_expanded_pressed_29px.svg │ ├── blue_taskdialog_expando_button_expanded_pressed_33px.bmp │ ├── blue_taskdialog_expando_button_expanded_pressed_33px.svg │ ├── blue_taskdialog_expando_button_expanded_pressed_38px.bmp │ ├── blue_taskdialog_expando_button_expanded_pressed_38px.svg │ ├── blue_taskdialog_expando_button_expanded_pressed_43px.bmp │ ├── blue_taskdialog_expando_button_expanded_pressed_43px.svg │ ├── blue_taskdialog_expando_button_expanded_pressed_48px.bmp │ ├── blue_taskdialog_expando_button_expanded_pressed_48px.svg │ ├── blue_taskdialog_expando_button_hover_19px.bmp │ ├── blue_taskdialog_expando_button_hover_19px.svg │ ├── blue_taskdialog_expando_button_hover_24px.bmp │ ├── blue_taskdialog_expando_button_hover_24px.svg │ ├── blue_taskdialog_expando_button_hover_29px.bmp │ ├── blue_taskdialog_expando_button_hover_29px.svg │ ├── blue_taskdialog_expando_button_hover_33px.bmp │ ├── blue_taskdialog_expando_button_hover_33px.svg │ ├── blue_taskdialog_expando_button_hover_38px.bmp │ ├── blue_taskdialog_expando_button_hover_38px.svg │ ├── blue_taskdialog_expando_button_hover_43px.bmp │ ├── blue_taskdialog_expando_button_hover_43px.svg │ ├── blue_taskdialog_expando_button_hover_48px.bmp │ ├── blue_taskdialog_expando_button_hover_48px.svg │ ├── blue_taskdialog_expando_button_normal_19px.bmp │ ├── blue_taskdialog_expando_button_normal_19px.svg │ ├── blue_taskdialog_expando_button_normal_24px.bmp │ ├── blue_taskdialog_expando_button_normal_24px.svg │ ├── blue_taskdialog_expando_button_normal_29px.bmp │ ├── blue_taskdialog_expando_button_normal_29px.svg │ ├── blue_taskdialog_expando_button_normal_33px.bmp │ ├── blue_taskdialog_expando_button_normal_33px.svg │ ├── blue_taskdialog_expando_button_normal_38px.bmp │ ├── blue_taskdialog_expando_button_normal_38px.svg │ ├── blue_taskdialog_expando_button_normal_43px.bmp │ ├── blue_taskdialog_expando_button_normal_43px.svg │ ├── blue_taskdialog_expando_button_normal_48px.bmp │ ├── blue_taskdialog_expando_button_normal_48px.svg │ ├── blue_taskdialog_expando_button_pressed_19px.bmp │ ├── blue_taskdialog_expando_button_pressed_19px.svg │ ├── blue_taskdialog_expando_button_pressed_24px.bmp │ ├── blue_taskdialog_expando_button_pressed_24px.svg │ ├── blue_taskdialog_expando_button_pressed_29px.bmp │ ├── blue_taskdialog_expando_button_pressed_29px.svg │ ├── blue_taskdialog_expando_button_pressed_33px.bmp │ ├── blue_taskdialog_expando_button_pressed_33px.svg │ ├── blue_taskdialog_expando_button_pressed_38px.bmp │ ├── blue_taskdialog_expando_button_pressed_38px.svg │ ├── blue_taskdialog_expando_button_pressed_43px.bmp │ ├── blue_taskdialog_expando_button_pressed_43px.svg │ ├── blue_taskdialog_expando_button_pressed_48px.bmp │ ├── blue_taskdialog_expando_button_pressed_48px.svg │ ├── blue_taskdialog_footnote_separator.bmp │ ├── blue_taskdialog_footnote_separator.svg │ ├── blue_taskdialog_secondary_panel.bmp │ ├── blue_taskdialog_secondary_panel.svg │ ├── blue_toolbar_buttons.bmp │ ├── blue_toolbar_buttons.svg │ ├── blue_toolbar_buttons_split.bmp │ ├── blue_toolbar_buttons_split.svg │ ├── blue_toolbar_buttons_split_dropdown.bmp │ ├── blue_toolbar_buttons_split_dropdown.svg │ ├── blue_toolbar_buttons_split_dropdown_glyph_11px.bmp │ ├── blue_toolbar_buttons_split_dropdown_glyph_11px.svg │ ├── blue_toolbar_buttons_split_dropdown_glyph_14px.bmp │ ├── blue_toolbar_buttons_split_dropdown_glyph_14px.svg │ ├── blue_toolbar_buttons_split_dropdown_glyph_17px.bmp │ ├── blue_toolbar_buttons_split_dropdown_glyph_17px.svg │ ├── blue_toolbar_buttons_split_dropdown_glyph_21px.bmp │ ├── blue_toolbar_buttons_split_dropdown_glyph_21px.svg │ ├── blue_toolbar_buttons_split_dropdown_glyph_28px.bmp │ ├── blue_toolbar_buttons_split_dropdown_glyph_28px.svg │ ├── blue_toolbar_buttons_split_dropdown_glyph_7px.bmp │ ├── blue_toolbar_buttons_split_dropdown_glyph_7px.svg │ ├── blue_toolbar_buttons_split_dropdown_glyph_9px.bmp │ ├── blue_toolbar_buttons_split_dropdown_glyph_9px.svg │ ├── blue_toolbar_dropdown_button_glyph_11px.bmp │ ├── blue_toolbar_dropdown_button_glyph_11px.svg │ ├── blue_toolbar_dropdown_button_glyph_14px.bmp │ ├── blue_toolbar_dropdown_button_glyph_14px.svg │ ├── blue_toolbar_dropdown_button_glyph_17px.bmp │ ├── blue_toolbar_dropdown_button_glyph_17px.svg │ ├── blue_toolbar_dropdown_button_glyph_7px.bmp │ ├── blue_toolbar_dropdown_button_glyph_7px.svg │ ├── blue_toolbar_dropdown_button_glyph_9px.bmp │ ├── blue_toolbar_dropdown_button_glyph_9px.svg │ ├── blue_toolbar_separator_horizontal.bmp │ ├── blue_toolbar_separator_horizontal.svg │ ├── blue_toolbar_separator_vertical.bmp │ ├── blue_toolbar_separator_vertical.svg │ ├── blue_tooltip_ballon.bmp │ ├── blue_tooltip_ballon.svg │ ├── blue_tooltip_ballon_stem_21px.bmp │ ├── blue_tooltip_ballon_stem_21px.svg │ ├── blue_tooltip_ballon_stem_26px.bmp │ ├── blue_tooltip_ballon_stem_26px.svg │ ├── blue_tooltip_ballon_stem_32px.bmp │ ├── blue_tooltip_ballon_stem_32px.svg │ ├── blue_tooltip_ballon_stem_42px.bmp │ ├── blue_tooltip_ballon_stem_42px.svg │ ├── blue_tooltip_ballon_stem_53px.bmp │ ├── blue_tooltip_ballon_stem_53px.svg │ ├── blue_tooltip_ballon_stem_63px.bmp │ ├── blue_tooltip_ballon_stem_63px.svg │ ├── blue_tooltip_ballon_stem_84px.bmp │ ├── blue_tooltip_ballon_stem_84px.svg │ ├── blue_tooltip_close_16px.bmp │ ├── blue_tooltip_close_16px.svg │ ├── blue_tooltip_close_20px.bmp │ ├── blue_tooltip_close_20px.svg │ ├── blue_tooltip_close_24px.bmp │ ├── blue_tooltip_close_24px.svg │ ├── blue_tooltip_close_28px.bmp │ ├── blue_tooltip_close_28px.svg │ ├── blue_tooltip_close_32px.bmp │ ├── blue_tooltip_close_32px.svg │ ├── blue_tooltip_close_36px.bmp │ ├── blue_tooltip_close_36px.svg │ ├── blue_tooltip_close_40px.bmp │ ├── blue_tooltip_close_40px.svg │ ├── blue_tooltip_standard.bmp │ ├── blue_tooltip_standard.svg │ ├── blue_tooltip_wrench_17px.bmp │ ├── blue_tooltip_wrench_17px.svg │ ├── blue_tooltip_wrench_21px.bmp │ ├── blue_tooltip_wrench_21px.svg │ ├── blue_tooltip_wrench_26px.bmp │ ├── blue_tooltip_wrench_26px.svg │ ├── blue_tooltip_wrench_34px.bmp │ ├── blue_tooltip_wrench_34px.svg │ ├── blue_tooltip_wrench_42px.bmp │ ├── blue_tooltip_wrench_42px.svg │ ├── blue_tooltip_wrench_51px.bmp │ ├── blue_tooltip_wrench_51px.svg │ ├── blue_tooltip_wrench_68px.bmp │ ├── blue_tooltip_wrench_68px.svg │ ├── blue_trackbar_slider_track.bmp │ ├── blue_trackbar_slider_track.svg │ ├── blue_trackbar_thumb_down_11px.bmp │ ├── blue_trackbar_thumb_down_11px.svg │ ├── blue_trackbar_thumb_down_15px.bmp │ ├── blue_trackbar_thumb_down_15px.svg │ ├── blue_trackbar_thumb_down_17px.bmp │ ├── blue_trackbar_thumb_down_17px.svg │ ├── blue_trackbar_thumb_down_22px.bmp │ ├── blue_trackbar_thumb_down_22px.svg │ ├── blue_trackbar_thumb_down_28px.bmp │ ├── blue_trackbar_thumb_down_28px.svg │ ├── blue_trackbar_thumb_down_33px.bmp │ ├── blue_trackbar_thumb_down_33px.svg │ ├── blue_trackbar_thumb_down_44px.bmp │ ├── blue_trackbar_thumb_down_44px.svg │ ├── blue_trackbar_thumb_horizontal.bmp │ ├── blue_trackbar_thumb_horizontal.svg │ ├── blue_trackbar_thumb_left_19px.bmp │ ├── blue_trackbar_thumb_left_19px.svg │ ├── blue_trackbar_thumb_left_25px.bmp │ ├── blue_trackbar_thumb_left_25px.svg │ ├── blue_trackbar_thumb_left_29px.bmp │ ├── blue_trackbar_thumb_left_29px.svg │ ├── blue_trackbar_thumb_left_38px.bmp │ ├── blue_trackbar_thumb_left_38px.svg │ ├── blue_trackbar_thumb_left_48px.bmp │ ├── blue_trackbar_thumb_left_48px.svg │ ├── blue_trackbar_thumb_left_57px.bmp │ ├── blue_trackbar_thumb_left_57px.svg │ ├── blue_trackbar_thumb_left_76px.bmp │ ├── blue_trackbar_thumb_left_76px.svg │ ├── blue_trackbar_thumb_right_19px.bmp │ ├── blue_trackbar_thumb_right_19px.svg │ ├── blue_trackbar_thumb_right_25px.bmp │ ├── blue_trackbar_thumb_right_25px.svg │ ├── blue_trackbar_thumb_right_29px.bmp │ ├── blue_trackbar_thumb_right_29px.svg │ ├── blue_trackbar_thumb_right_38px.bmp │ ├── blue_trackbar_thumb_right_38px.svg │ ├── blue_trackbar_thumb_right_48px.bmp │ ├── blue_trackbar_thumb_right_48px.svg │ ├── blue_trackbar_thumb_right_57px.bmp │ ├── blue_trackbar_thumb_right_57px.svg │ ├── blue_trackbar_thumb_right_76px.bmp │ ├── blue_trackbar_thumb_right_76px.svg │ ├── blue_trackbar_thumb_up_11px.bmp │ ├── blue_trackbar_thumb_up_11px.svg │ ├── blue_trackbar_thumb_up_15px.bmp │ ├── blue_trackbar_thumb_up_15px.svg │ ├── blue_trackbar_thumb_up_17px.bmp │ ├── blue_trackbar_thumb_up_17px.svg │ ├── blue_trackbar_thumb_up_22px.bmp │ ├── blue_trackbar_thumb_up_22px.svg │ ├── blue_trackbar_thumb_up_28px.bmp │ ├── blue_trackbar_thumb_up_28px.svg │ ├── blue_trackbar_thumb_up_33px.bmp │ ├── blue_trackbar_thumb_up_33px.svg │ ├── blue_trackbar_thumb_up_44px.bmp │ ├── blue_trackbar_thumb_up_44px.svg │ ├── blue_trackbar_thumb_vertical.bmp │ ├── blue_trackbar_thumb_vertical.svg │ ├── blue_treeview_expand_collapse_11px.bmp │ ├── blue_treeview_expand_collapse_11px.svg │ ├── blue_treeview_expand_collapse_13px.bmp │ ├── blue_treeview_expand_collapse_13px.svg │ ├── blue_treeview_expand_collapse_16px.bmp │ ├── blue_treeview_expand_collapse_16px.svg │ ├── blue_treeview_expand_collapse_18px.bmp │ ├── blue_treeview_expand_collapse_18px.svg │ ├── blue_treeview_expand_collapse_20px.bmp │ ├── blue_treeview_expand_collapse_20px.svg │ ├── blue_treeview_expand_collapse_23px.bmp │ ├── blue_treeview_expand_collapse_23px.svg │ ├── blue_treeview_expand_collapse_9px.bmp │ ├── blue_treeview_expand_collapse_9px.svg │ ├── blue_window_caption.bmp │ ├── blue_window_caption.svg │ ├── blue_window_caption_sizing_template.bmp │ ├── blue_window_caption_sizing_template.svg │ ├── blue_window_close_button_background.bmp │ ├── blue_window_close_button_background.svg │ ├── blue_window_close_button_glyph_13px.bmp │ ├── blue_window_close_button_glyph_13px.svg │ ├── blue_window_close_button_glyph_19px.bmp │ ├── blue_window_close_button_glyph_19px.svg │ ├── blue_window_close_button_glyph_23px.bmp │ ├── blue_window_close_button_glyph_23px.svg │ ├── blue_window_close_button_glyph_26px.bmp │ ├── blue_window_close_button_glyph_26px.svg │ ├── blue_window_close_button_glyph_32px.bmp │ ├── blue_window_close_button_glyph_32px.svg │ ├── blue_window_close_button_glyph_39px.bmp │ ├── blue_window_close_button_glyph_39px.svg │ ├── blue_window_close_button_glyph_52px.bmp │ ├── blue_window_close_button_glyph_52px.svg │ ├── blue_window_frame_bottom.bmp │ ├── blue_window_frame_bottom.svg │ ├── blue_window_frame_left.bmp │ ├── blue_window_frame_left.svg │ ├── blue_window_frame_right.bmp │ ├── blue_window_frame_right.svg │ ├── blue_window_help_button_background.bmp │ ├── blue_window_help_button_background.svg │ ├── blue_window_help_button_glyph_13px.bmp │ ├── blue_window_help_button_glyph_13px.svg │ ├── blue_window_help_button_glyph_19px.bmp │ ├── blue_window_help_button_glyph_19px.svg │ ├── blue_window_help_button_glyph_23px.bmp │ ├── blue_window_help_button_glyph_23px.svg │ ├── blue_window_help_button_glyph_26px.bmp │ ├── blue_window_help_button_glyph_26px.svg │ ├── blue_window_help_button_glyph_32px.bmp │ ├── blue_window_help_button_glyph_32px.svg │ ├── blue_window_help_button_glyph_39px.bmp │ ├── blue_window_help_button_glyph_39px.svg │ ├── blue_window_help_button_glyph_52px.bmp │ ├── blue_window_help_button_glyph_52px.svg │ ├── blue_window_max_button_background.bmp │ ├── blue_window_max_button_background.svg │ ├── blue_window_max_button_glyph_13px.bmp │ ├── blue_window_max_button_glyph_13px.svg │ ├── blue_window_max_button_glyph_19px.bmp │ ├── blue_window_max_button_glyph_19px.svg │ ├── blue_window_max_button_glyph_23px.bmp │ ├── blue_window_max_button_glyph_23px.svg │ ├── blue_window_max_button_glyph_26px.bmp │ ├── blue_window_max_button_glyph_26px.svg │ ├── blue_window_max_button_glyph_32px.bmp │ ├── blue_window_max_button_glyph_32px.svg │ ├── blue_window_max_button_glyph_39px.bmp │ ├── blue_window_max_button_glyph_39px.svg │ ├── blue_window_max_button_glyph_52px.bmp │ ├── blue_window_max_button_glyph_52px.svg │ ├── blue_window_max_caption.bmp │ ├── blue_window_max_caption.svg │ ├── blue_window_mdi_close_button_background.bmp │ ├── blue_window_mdi_close_button_background.svg │ ├── blue_window_mdi_close_button_glyph.bmp │ ├── blue_window_mdi_close_button_glyph.svg │ ├── blue_window_mdi_min_button_background.bmp │ ├── blue_window_mdi_min_button_background.svg │ ├── blue_window_mdi_min_button_glyph.bmp │ ├── blue_window_mdi_min_button_glyph.svg │ ├── blue_window_mdi_restore_button_background.bmp │ ├── blue_window_mdi_restore_button_background.svg │ ├── blue_window_mdi_restore_button_glyph.bmp │ ├── blue_window_mdi_restore_button_glyph.svg │ ├── blue_window_min_button_background.bmp │ ├── blue_window_min_button_background.svg │ ├── blue_window_min_button_glyph_13px.bmp │ ├── blue_window_min_button_glyph_13px.svg │ ├── blue_window_min_button_glyph_19px.bmp │ ├── blue_window_min_button_glyph_19px.svg │ ├── blue_window_min_button_glyph_23px.bmp │ ├── blue_window_min_button_glyph_23px.svg │ ├── blue_window_min_button_glyph_26px.bmp │ ├── blue_window_min_button_glyph_26px.svg │ ├── blue_window_min_button_glyph_32px.bmp │ ├── blue_window_min_button_glyph_32px.svg │ ├── blue_window_min_button_glyph_39px.bmp │ ├── blue_window_min_button_glyph_39px.svg │ ├── blue_window_min_button_glyph_52px.bmp │ ├── blue_window_min_button_glyph_52px.svg │ ├── blue_window_min_caption.bmp │ ├── blue_window_min_caption.svg │ ├── blue_window_restore_button_background.bmp │ ├── blue_window_restore_button_background.svg │ ├── blue_window_restore_button_glyph_13px.bmp │ ├── blue_window_restore_button_glyph_13px.svg │ ├── blue_window_restore_button_glyph_19px.bmp │ ├── blue_window_restore_button_glyph_19px.svg │ ├── blue_window_restore_button_glyph_23px.bmp │ ├── blue_window_restore_button_glyph_23px.svg │ ├── blue_window_restore_button_glyph_26px.bmp │ ├── blue_window_restore_button_glyph_26px.svg │ ├── blue_window_restore_button_glyph_32px.bmp │ ├── blue_window_restore_button_glyph_32px.svg │ ├── blue_window_restore_button_glyph_39px.bmp │ ├── blue_window_restore_button_glyph_39px.svg │ ├── blue_window_restore_button_glyph_52px.bmp │ ├── blue_window_restore_button_glyph_52px.svg │ ├── blue_window_small_caption.bmp │ ├── blue_window_small_caption.svg │ ├── blue_window_small_caption_sizing_template.bmp │ ├── blue_window_small_caption_sizing_template.svg │ ├── blue_window_small_close_button_background.bmp │ ├── blue_window_small_close_button_background.svg │ ├── blue_window_small_close_button_glyph.bmp │ ├── blue_window_small_close_button_glyph.svg │ ├── blue_window_small_frame_bottom.bmp │ ├── blue_window_small_frame_bottom.svg │ ├── blue_window_small_frame_left.bmp │ ├── blue_window_small_frame_left.svg │ ├── blue_window_small_frame_right.bmp │ ├── blue_window_small_frame_right.svg │ ├── light.rc │ └── resources.h ├── loadperf │ ├── Makefile.in │ ├── loadperf.spec │ └── loadperf_main.c ├── localspl │ ├── Makefile.in │ ├── cups.c │ ├── localmon.c │ ├── localspl.rc │ ├── localspl.spec │ ├── localspl_private.h │ ├── provider.c │ └── tests │ │ ├── Makefile.in │ │ └── localmon.c ├── localui │ ├── Makefile.in │ ├── localui.c │ ├── localui.h │ ├── localui.rc │ ├── localui.spec │ └── tests │ │ ├── Makefile.in │ │ └── localui.c ├── lz32 │ ├── Makefile.in │ ├── lz32.spec │ ├── tests │ │ ├── Makefile.in │ │ └── lzexpand_main.c │ └── version.rc ├── lzexpand.dll16 │ ├── Makefile.in │ ├── lzexpand.c │ └── lzexpand.dll16.spec ├── magnification │ ├── Makefile.in │ └── magnification.spec ├── mapi32 │ ├── Makefile.in │ ├── imalloc.c │ ├── mapi32.rc │ ├── mapi32.spec │ ├── mapi32_main.c │ ├── prop.c │ ├── res.h │ ├── sendmail.c │ ├── tests │ │ ├── Makefile.in │ │ ├── imalloc.c │ │ ├── mapi32_test.h │ │ ├── prop.c │ │ └── util.c │ ├── util.c │ └── util.h ├── mapistub │ ├── Makefile.in │ └── mapistub.spec ├── mciavi32 │ ├── Makefile.in │ ├── info.c │ ├── mciavi.c │ ├── mciavi32.spec │ ├── mciavi_res.rc │ ├── mmoutput.c │ ├── private_mciavi.h │ └── wnd.c ├── mcicda │ ├── Makefile.in │ ├── mcicda.c │ └── mcicda.spec ├── mciqtz32 │ ├── Makefile.in │ ├── mciavi_res.rc │ ├── mciqtz.c │ ├── mciqtz32.spec │ ├── mciqtz_private.h │ └── version.rc ├── mciseq │ ├── Makefile.in │ ├── mcimidi.c │ └── mciseq.spec ├── mciwave │ ├── Makefile.in │ ├── mciwave.c │ └── mciwave.spec ├── mf │ ├── Makefile.in │ ├── clock.c │ ├── copier.c │ ├── evr.c │ ├── main.c │ ├── mf.idl │ ├── mf.rc │ ├── mf.rgs │ ├── mf.spec │ ├── mf_private.h │ ├── quality.c │ ├── sac.c │ ├── samplegrabber.c │ ├── sar.c │ ├── scheme_handler.c │ ├── session.c │ ├── tests │ │ ├── Makefile.in │ │ ├── aacdecdata.bin │ │ ├── aacencdata.bin │ │ ├── abgr32frame-crop.bmp │ │ ├── audioconvdata.bin │ │ ├── audiodata.bin │ │ ├── h264data-1.bin │ │ ├── h264data-2.bin │ │ ├── h264data.bin │ │ ├── h264encdata.bin │ │ ├── i420frame.bmp │ │ ├── iv50frame.bin │ │ ├── mf.c │ │ ├── mf_test.h │ │ ├── mp3decdata.bin │ │ ├── mp3encdata.bin │ │ ├── nv12frame-2d.bmp │ │ ├── nv12frame-extra-width-2d.bmp │ │ ├── nv12frame-extra-width.bmp │ │ ├── nv12frame-flip-2d.bmp │ │ ├── nv12frame-flip.bmp │ │ ├── nv12frame-grabber.bmp │ │ ├── nv12frame.bmp │ │ ├── resource.rc │ │ ├── rgb24frame.bmp │ │ ├── rgb32frame-crop-flip-2d.bmp │ │ ├── rgb32frame-crop-flip.bmp │ │ ├── rgb32frame-crop.bmp │ │ ├── rgb32frame-extra-width.bmp │ │ ├── rgb32frame-flip-2d.bmp │ │ ├── rgb32frame-flip.bmp │ │ ├── rgb32frame-grabber.bmp │ │ ├── rgb32frame.bmp │ │ ├── rgb555frame-flip.bmp │ │ ├── rgb555frame.bmp │ │ ├── test.mp4 │ │ ├── topology.c │ │ ├── transform.c │ │ ├── wmadecdata.bin │ │ ├── wmaencdata.bin │ │ └── wmvencdata.bin │ ├── topology.c │ └── topology_loader.c ├── mf3216 │ ├── Makefile.in │ └── mf3216.spec ├── mfasfsrcsnk │ ├── Makefile.in │ ├── mfasfsrcsnk.c │ ├── mfasfsrcsnk.idl │ ├── mfasfsrcsnk.rc │ ├── mfasfsrcsnk.rgs │ └── mfasfsrcsnk.spec ├── mferror │ ├── Makefile.in │ └── mferror.mc ├── mfh264enc │ ├── Makefile.in │ ├── mfh264enc.c │ ├── mfh264enc.idl │ └── mfh264enc.spec ├── mfmediaengine │ ├── Makefile.in │ ├── main.c │ ├── mediaengine_classes.idl │ ├── mediaengine_private.h │ ├── mfmediaengine.spec │ ├── tests │ │ ├── Makefile.in │ │ ├── i420-64x64.avi │ │ ├── mfmediaengine.c │ │ ├── resource.rc │ │ └── rgb32frame.bmp │ └── video_frame_sink.c ├── mfmp4srcsnk │ ├── Makefile.in │ ├── mfmp4srcsnk.c │ ├── mfmp4srcsnk.idl │ ├── mfmp4srcsnk.rc │ ├── mfmp4srcsnk.rgs │ └── mfmp4srcsnk.spec ├── mfplat │ ├── Makefile.in │ ├── buffer.c │ ├── main.c │ ├── mediatype.c │ ├── mfplat.spec │ ├── mfplat_private.h │ ├── queue.c │ ├── sample.c │ └── tests │ │ ├── Makefile.in │ │ ├── mfplat.c │ │ ├── resource.rc │ │ ├── test-aac.mp4 │ │ ├── test-h264.mp4 │ │ ├── test-i420.avi │ │ ├── test-mp3.mp4 │ │ ├── test-wma2.wmv │ │ ├── test-wmv1.wmv │ │ └── test.mp4 ├── mfplay │ ├── Makefile.in │ ├── mfplay.spec │ ├── player.c │ └── tests │ │ ├── Makefile.in │ │ ├── mfplay.c │ │ ├── resource.rc │ │ ├── test-ang.mp4 │ │ ├── test-ang.wma │ │ ├── test-en-US.mp4 │ │ ├── test-en-US.wma │ │ ├── test-en.wma │ │ ├── test-eng.mp4 │ │ ├── test-eng.wma │ │ ├── test-und.mp4 │ │ ├── test-und.wma │ │ └── test.mp4 ├── mfreadwrite │ ├── Makefile.in │ ├── mf_classes.idl │ ├── mf_private.h │ ├── mfreadwrite.spec │ ├── reader.c │ ├── tests │ │ ├── Makefile.in │ │ ├── mfplat.c │ │ ├── resource.rc │ │ ├── test.mp4 │ │ └── test.wav │ └── writer.c ├── mfsrcsnk │ ├── Makefile.in │ ├── factory.c │ ├── media_sink.c │ ├── media_source.c │ ├── media_source.h │ ├── mfsrcsnk.idl │ ├── mfsrcsnk.rc │ ├── mfsrcsnk.rgs │ ├── mfsrcsnk.spec │ ├── mfsrcsnk_private.h │ ├── tests │ │ ├── Makefile.in │ │ └── mfsrcsnk.c │ └── wave.c ├── mgmtapi │ ├── Makefile.in │ ├── mgmtapi.c │ └── mgmtapi.spec ├── midimap │ ├── Makefile.in │ ├── midimap.c │ └── midimap.spec ├── mlang │ ├── Makefile.in │ ├── mlang.c │ ├── mlang.rc │ ├── mlang.rgs │ ├── mlang.spec │ ├── mlang_classes.idl │ └── tests │ │ ├── Makefile.in │ │ └── mlang.c ├── mmcndmgr │ ├── Makefile.in │ ├── mmcndmgr.c │ ├── mmcndmgr.idl │ ├── mmcndmgr.spec │ └── tests │ │ ├── Makefile.in │ │ └── mmcndmgr.c ├── mmdevapi │ ├── Makefile.in │ ├── audiosessionmanager.c │ ├── audiovolume.c │ ├── client.c │ ├── devenum.c │ ├── main.c │ ├── mmdevapi.spec │ ├── mmdevapi_classes.idl │ ├── mmdevapi_private.h │ ├── mmdevdrv.h │ ├── session.c │ ├── spatialaudio.c │ ├── tests │ │ ├── Makefile.in │ │ ├── capture.c │ │ ├── dependency.c │ │ ├── mmdevenum.c │ │ ├── propstore.c │ │ ├── render.c │ │ └── spatialaudio.c │ └── unixlib.h ├── mmdevldr.vxd │ ├── Makefile.in │ ├── mmdevldr.c │ └── mmdevldr.vxd.spec ├── mmsystem.dll16 │ ├── Makefile.in │ ├── driver.c │ ├── mci16.c │ ├── message16.c │ ├── mmio16.c │ ├── mmsystem.c │ ├── mmsystem.dll16.spec │ └── winemm16.h ├── monodebg.vxd │ ├── Makefile.in │ ├── monodebg.c │ └── monodebg.vxd.spec ├── mouhid.sys │ ├── Makefile.in │ ├── main.c │ ├── mouhid.inf │ ├── mouhid.rc │ └── mouhid.sys.spec ├── mountmgr.sys │ ├── Makefile.in │ ├── cred.c │ ├── dbus.c │ ├── device.c │ ├── diskarb.c │ ├── mountmgr.c │ ├── mountmgr.h │ ├── unixlib.c │ └── unixlib.h ├── mouse.drv16 │ ├── Makefile.in │ ├── mouse.c │ ├── mouse.drv16.spec │ └── mouse.rc ├── mp3dmod │ ├── Makefile.in │ ├── mp3dmod.c │ ├── mp3dmod.idl │ ├── mp3dmod.spec │ └── tests │ │ ├── Makefile.in │ │ └── mp3dmod.c ├── mpr │ ├── Makefile.in │ ├── auth.c │ ├── mpr.rc │ ├── mpr.spec │ ├── mpr_main.c │ ├── mprres.h │ ├── multinet.c │ ├── netspi.h │ ├── nps.c │ ├── pwcache.c │ ├── tests │ │ ├── Makefile.in │ │ └── mpr.c │ ├── wnet.c │ └── wnetpriv.h ├── mprapi │ ├── Makefile.in │ ├── mprapi.c │ └── mprapi.spec ├── msacm.dll16 │ ├── Makefile.in │ ├── msacm.c │ ├── msacm.dll16.spec │ └── wineacm16.h ├── msacm32.drv │ ├── Makefile.in │ ├── msacm32.drv.spec │ └── wavemap.c ├── msacm32 │ ├── Makefile.in │ ├── driver.c │ ├── filter.c │ ├── format.c │ ├── internal.c │ ├── msacm32.rc │ ├── msacm32.spec │ ├── msacm32_main.c │ ├── pcmconverter.c │ ├── stream.c │ ├── tests │ │ ├── Makefile.in │ │ └── msacm.c │ └── wineacm.h ├── msado15 │ ├── Makefile.in │ ├── command.c │ ├── connection.c │ ├── main.c │ ├── msado15.spec │ ├── msado15_classes.idl │ ├── msado15_private.h │ ├── msado15_tlb.idl │ ├── recordset.c │ ├── stream.c │ └── tests │ │ ├── Makefile.in │ │ └── msado15.c ├── msadp32.acm │ ├── Makefile.in │ ├── msadp32.acm.spec │ └── msadp32.c ├── msasn1 │ ├── Makefile.in │ ├── main.c │ ├── msasn1.spec │ └── tests │ │ ├── Makefile.in │ │ └── asn1.c ├── msauddecmft │ ├── Makefile.in │ ├── msauddecmft.c │ ├── msauddecmft.idl │ └── msauddecmft.spec ├── mscat32 │ ├── Makefile.in │ └── mscat32.spec ├── mscms │ ├── Makefile.in │ ├── handle.c │ ├── icc.c │ ├── mscms.spec │ ├── mscms_main.c │ ├── mscms_priv.h │ ├── profile.c │ ├── srgb2014.icc │ ├── stub.c │ ├── tests │ │ ├── Makefile.in │ │ └── profile.c │ ├── transform.c │ └── version.rc ├── mscoree │ ├── Makefile.in │ ├── assembly.c │ ├── config.c │ ├── cordebug.c │ ├── corruntimehost.c │ ├── metadata.c │ ├── metahost.c │ ├── mscoree.spec │ ├── mscoree_classes.idl │ ├── mscoree_main.c │ ├── mscoree_private.h │ └── tests │ │ ├── Makefile.in │ │ ├── comtest.c │ │ ├── comtest.cs │ │ ├── comtest_dll.manifest │ │ ├── comtest_exe.manifest │ │ ├── debugging.c │ │ ├── interfaces.idl │ │ ├── loadpaths.dll.cs │ │ ├── loadpaths.exe.config │ │ ├── loadpaths.exe.cs │ │ ├── metahost.c │ │ ├── mscoree.c │ │ └── resource.rc ├── mscorwks │ ├── Makefile.in │ └── mscorwks.spec ├── msctf │ ├── Makefile.in │ ├── categorymgr.c │ ├── compartmentmgr.c │ ├── context.c │ ├── displayattributemgr.c │ ├── documentmgr.c │ ├── inputprocessor.c │ ├── langbarmgr.c │ ├── msctf.c │ ├── msctf.spec │ ├── msctf_classes.idl │ ├── msctf_internal.h │ ├── range.c │ ├── tests │ │ ├── Makefile.in │ │ ├── inputprocessor.c │ │ ├── msctf.manifest │ │ └── msctf.rc │ ├── threadmgr.c │ └── version.rc ├── msctfmonitor │ ├── Makefile.in │ ├── main.c │ └── msctfmonitor.spec ├── msctfp │ ├── Makefile.in │ ├── msctfp.idl │ └── msctfp.spec ├── msdaps │ ├── Makefile.in │ ├── main.c │ ├── msdaps.idl │ ├── msdaps.spec │ ├── row_server.c │ ├── row_server.idl │ └── usrmarshal.c ├── msdasql │ ├── Makefile.in │ ├── msdasql.rc │ ├── msdasql.rgs │ ├── msdasql.spec │ ├── msdasql_classes.idl │ ├── msdasql_main.c │ ├── msdasql_private.h │ ├── session.c │ └── tests │ │ ├── Makefile.in │ │ └── provider.c ├── msdelta │ ├── Makefile.in │ └── msdelta.spec ├── msdmo │ ├── Makefile.in │ ├── dmoreg.c │ ├── dmort.c │ ├── msdmo.spec │ ├── rsrc.rc │ └── tests │ │ ├── Makefile.in │ │ └── msdmo.c ├── msdrm │ ├── Makefile.in │ ├── main.c │ └── msdrm.spec ├── msftedit │ ├── Makefile.in │ ├── msftedit.spec │ ├── msftedit_main.c │ ├── tests │ │ ├── Makefile.in │ │ └── richole.c │ └── version.rc ├── msg711.acm │ ├── Makefile.in │ ├── msg711.acm.spec │ └── msg711.c ├── msgsm32.acm │ ├── Makefile.in │ ├── msgsm32.acm.spec │ └── msgsm32.c ├── mshtml.tlb │ ├── Makefile.in │ └── mshtml_tlb.idl ├── mshtml │ ├── Makefile.in │ ├── binding.h │ ├── blank.htm │ ├── conpoint.c │ ├── dispex.c │ ├── editor.c │ ├── htmlanchor.c │ ├── htmlarea.c │ ├── htmlattr.c │ ├── htmlbody.c │ ├── htmlcurstyle.c │ ├── htmldoc.c │ ├── htmlelem.c │ ├── htmlelemcol.c │ ├── htmlevent.c │ ├── htmlevent.h │ ├── htmlform.c │ ├── htmlframe.c │ ├── htmlgeneric.c │ ├── htmlhead.c │ ├── htmlimg.c │ ├── htmlinput.c │ ├── htmllink.c │ ├── htmllocation.c │ ├── htmlnode.c │ ├── htmlobject.c │ ├── htmlscript.c │ ├── htmlscript.h │ ├── htmlselect.c │ ├── htmlstorage.c │ ├── htmlstyle.c │ ├── htmlstyle.h │ ├── htmlstyleelem.c │ ├── htmlstylesheet.c │ ├── htmltable.c │ ├── htmltextarea.c │ ├── htmltextnode.c │ ├── htmlwindow.c │ ├── ifacewrap.c │ ├── loadopts.c │ ├── main.c │ ├── mshtml.inf │ ├── mshtml.rc │ ├── mshtml.spec │ ├── mshtml_classes.idl │ ├── mshtml_private.h │ ├── mshtml_private_iface.idl │ ├── mutation.c │ ├── navigate.c │ ├── npplugin.c │ ├── nsembed.c │ ├── nsevents.c │ ├── nsiface.idl │ ├── nsio.c │ ├── nsservice.c │ ├── olecmd.c │ ├── oleobj.c │ ├── omnavigator.c │ ├── persist.c │ ├── pluginhost.c │ ├── pluginhost.h │ ├── protocol.c │ ├── range.c │ ├── resource.h │ ├── script.c │ ├── secmgr.c │ ├── selection.c │ ├── service.c │ ├── svg.c │ ├── task.c │ ├── tests │ │ ├── Makefile.in │ │ ├── activex.c │ │ ├── asyncscriptload.js │ │ ├── blank.html │ │ ├── blank_ie10.html │ │ ├── doc_with_prop.html │ │ ├── doc_with_prop_ie9.html │ │ ├── documentmode.js │ │ ├── dom.c │ │ ├── dom.js │ │ ├── es5.js │ │ ├── events.c │ │ ├── events.html │ │ ├── events.js │ │ ├── exectest.html │ │ ├── externscr.js │ │ ├── frame.js │ │ ├── htmldoc.c │ │ ├── htmllocation.c │ │ ├── iframe.html │ │ ├── img.png │ │ ├── jstest.html │ │ ├── misc.c │ │ ├── mshtml_test.h │ │ ├── navigation.js │ │ ├── protocol.c │ │ ├── reload.js │ │ ├── rsrc.rc │ │ ├── runscript.html │ │ ├── script.c │ │ ├── style.c │ │ ├── test_tlb.idl │ │ ├── vbtest.html │ │ ├── winetest.js │ │ ├── xhr.js │ │ ├── xhr_iframe.html │ │ └── xmlhttprequest.c │ ├── view.c │ └── xmlhttprequest.c ├── msi │ ├── Makefile.in │ ├── action.c │ ├── alter.c │ ├── appsearch.c │ ├── assembly.c │ ├── automation.c │ ├── classes.c │ ├── cond.y │ ├── create.c │ ├── custom.c │ ├── database.c │ ├── delete.c │ ├── dialog.c │ ├── distinct.c │ ├── drop.c │ ├── files.c │ ├── font.c │ ├── format.c │ ├── handle.c │ ├── insert.c │ ├── instabsent.bmp │ ├── instadvert.bmp │ ├── install.c │ ├── instlocal.bmp │ ├── media.c │ ├── msi.c │ ├── msi.rc │ ├── msi.spec │ ├── msi_main.c │ ├── msipriv.h │ ├── msiquery.c │ ├── msiserver.idl │ ├── msiserver.rgs │ ├── msiserver_dispids.h │ ├── package.c │ ├── patch.c │ ├── query.h │ ├── record.c │ ├── registry.c │ ├── resource.h │ ├── script.c │ ├── select.c │ ├── source.c │ ├── sql.y │ ├── storages.c │ ├── streams.c │ ├── string.c │ ├── suminfo.c │ ├── table.c │ ├── tests │ │ ├── Makefile.in │ │ ├── action.c │ │ ├── automation.c │ │ ├── custom.c │ │ ├── custom.spec │ │ ├── db.c │ │ ├── format.c │ │ ├── install.c │ │ ├── msi.c │ │ ├── package.c │ │ ├── patch.c │ │ ├── record.c │ │ ├── selfreg.c │ │ ├── selfreg.spec │ │ ├── source.c │ │ ├── suminfo.c │ │ ├── typelib.idl │ │ └── utils.h │ ├── tokenize.c │ ├── update.c │ ├── upgrade.c │ ├── where.c │ └── winemsi.idl ├── msident │ ├── Makefile.in │ ├── msident.c │ ├── msident.spec │ └── msident_classes.idl ├── msimg32 │ ├── Makefile.in │ ├── msimg32.spec │ └── msimg32_main.c ├── msimsg │ ├── Makefile.in │ └── msimsg.rc ├── msimtf │ ├── Makefile.in │ ├── activeimmapp.c │ ├── main.c │ ├── msimtf.idl │ └── msimtf.spec ├── msisip │ ├── Makefile.in │ ├── main.c │ └── msisip.spec ├── msisys.ocx │ ├── Makefile.in │ ├── msisys.c │ └── msisys.ocx.spec ├── msls31 │ ├── Makefile.in │ └── msls31.spec ├── msmpeg2vdec │ ├── Makefile.in │ ├── msmpeg2vdec.c │ ├── msmpeg2vdec.idl │ └── msmpeg2vdec.spec ├── msnet32 │ ├── Makefile.in │ ├── msnet32.spec │ └── msnet_main.c ├── mspatcha │ ├── Makefile.in │ ├── lzxd_dec.c │ ├── lzxd_dec.h │ ├── mspatcha.spec │ ├── mspatcha_main.c │ ├── pa19.c │ ├── pa19.h │ ├── tests │ │ ├── Makefile.in │ │ ├── apply_patch.c │ │ ├── mspatcha.manifest │ │ └── mspatcha.rc │ └── version.rc ├── msports │ ├── Makefile.in │ └── msports.spec ├── msrle32 │ ├── Makefile.in │ ├── msrle32.c │ ├── msrle32.rc │ ├── msrle32.spec │ ├── msrle_private.h │ └── tests │ │ ├── Makefile.in │ │ └── msrle.c ├── msscript.ocx │ ├── Makefile.in │ ├── msscript.c │ ├── msscript.idl │ ├── msscript.ocx.spec │ ├── msscript.rc │ ├── msscript.rgs │ └── tests │ │ ├── Makefile.in │ │ ├── msscript.c │ │ └── msscript.idl ├── mssign32 │ ├── Makefile.in │ ├── mssign32.spec │ └── mssign32_main.c ├── mssip32 │ ├── Makefile.in │ └── mssip32.spec ├── mstask │ ├── Makefile.in │ ├── atsvc.idl │ ├── factory.c │ ├── mstask.spec │ ├── mstask_local.idl │ ├── mstask_main.c │ ├── mstask_private.h │ ├── task.c │ ├── task_scheduler.c │ ├── task_trigger.c │ └── tests │ │ ├── Makefile.in │ │ ├── task.c │ │ ├── task_scheduler.c │ │ └── task_trigger.c ├── msttsengine │ ├── Makefile.in │ ├── main.c │ ├── msttsengine.spec │ ├── tts.c │ ├── ttseng_classes.idl │ └── ttseng_private.h ├── msv1_0 │ ├── Makefile.in │ ├── main.c │ ├── msv1_0.spec │ ├── unixlib.c │ └── unixlib.h ├── msvcirt │ ├── Makefile.in │ ├── msvcirt.c │ ├── msvcirt.h │ ├── msvcirt.spec │ └── tests │ │ ├── Makefile.in │ │ └── msvcirt.c ├── msvcm80 │ ├── Makefile.in │ ├── msvcm80.spec │ └── msvcm_main.c ├── msvcm90 │ ├── Makefile.in │ └── msvcm90.spec ├── msvcp100 │ ├── Makefile.in │ ├── msvcp100.spec │ └── tests │ │ ├── Makefile.in │ │ ├── misc.c │ │ └── string.c ├── msvcp110 │ ├── Makefile.in │ ├── msvcp110.spec │ └── tests │ │ ├── Makefile.in │ │ └── msvcp110.c ├── msvcp120 │ ├── Makefile.in │ ├── msvcp120.spec │ └── tests │ │ ├── Makefile.in │ │ └── msvcp120.c ├── msvcp120_app │ ├── Makefile.in │ └── msvcp120_app.spec ├── msvcp140 │ ├── Makefile.in │ ├── msvcp140.spec │ ├── tests │ │ ├── Makefile.in │ │ └── msvcp140.c │ └── version.rc ├── msvcp140_1 │ ├── Makefile.in │ ├── msvcp140_1.c │ ├── msvcp140_1.spec │ └── tests │ │ ├── Makefile.in │ │ └── msvcp140_1.c ├── msvcp140_2 │ ├── Makefile.in │ ├── math.c │ ├── msvcp140_2.spec │ └── tests │ │ ├── Makefile.in │ │ └── math.c ├── msvcp140_atomic_wait │ ├── Makefile.in │ ├── main.c │ ├── msvcp140_atomic_wait.spec │ └── tests │ │ ├── Makefile.in │ │ └── msvcp140_atomic_wait.c ├── msvcp140_codecvt_ids │ ├── Makefile.in │ ├── main.c │ └── msvcp140_codecvt_ids.spec ├── msvcp60 │ ├── Makefile.in │ ├── ios.c │ ├── main.c │ ├── msvcp.h │ ├── msvcp60.spec │ ├── string.c │ └── tests │ │ ├── Makefile.in │ │ ├── ios.c │ │ └── string.c ├── msvcp70 │ ├── Makefile.in │ └── msvcp70.spec ├── msvcp71 │ ├── Makefile.in │ └── msvcp71.spec ├── msvcp80 │ ├── Makefile.in │ └── msvcp80.spec ├── msvcp90 │ ├── Makefile.in │ ├── cxx.h │ ├── details.c │ ├── exception.c │ ├── ios.c │ ├── locale.c │ ├── math.c │ ├── memory.c │ ├── misc.c │ ├── msvcp90.h │ ├── msvcp90.spec │ ├── msvcp_main.c │ ├── string.c │ └── tests │ │ ├── Makefile.in │ │ ├── ios.c │ │ ├── misc.c │ │ ├── msvcp90.manifest │ │ ├── msvcp90.rc │ │ └── string.c ├── msvcp_win │ ├── Makefile.in │ └── msvcp_win.spec ├── msvcr100 │ ├── Makefile.in │ ├── msvcr100.spec │ ├── rsrc.rc │ └── tests │ │ ├── Makefile.in │ │ └── msvcr100.c ├── msvcr110 │ ├── Makefile.in │ ├── msvcr110.spec │ └── tests │ │ ├── Makefile.in │ │ └── msvcr110.c ├── msvcr120 │ ├── Makefile.in │ ├── msvcr120.spec │ ├── tests │ │ ├── Makefile.in │ │ └── msvcr120.c │ └── version.rc ├── msvcr120_app │ ├── Makefile.in │ └── msvcr120_app.spec ├── msvcr70 │ ├── Makefile.in │ ├── msvcr70.spec │ └── tests │ │ ├── Makefile.in │ │ └── msvcr70.c ├── msvcr71 │ ├── Makefile.in │ ├── msvcr71.spec │ └── tests │ │ ├── Makefile.in │ │ └── msvcr71.c ├── msvcr80 │ ├── Makefile.in │ ├── msvcr80.manifest │ ├── msvcr80.rc │ ├── msvcr80.spec │ └── tests │ │ ├── Makefile.in │ │ ├── msvcr80.c │ │ ├── msvcr80.manifest │ │ └── msvcr80.rc ├── msvcr90 │ ├── Makefile.in │ ├── msvcr90.manifest │ ├── msvcr90.rc │ ├── msvcr90.spec │ └── tests │ │ ├── Makefile.in │ │ ├── msvcr90.c │ │ ├── msvcr90.manifest │ │ └── msvcr90.rc ├── msvcrt │ ├── Makefile.in │ ├── bnum.h │ ├── concurrency.c │ ├── console.c │ ├── cpp.c │ ├── cppexcept.h │ ├── crt_gccmain.c │ ├── crt_main.c │ ├── crt_winmain.c │ ├── crt_wmain.c │ ├── crt_wwinmain.c │ ├── ctype.c │ ├── cxx.h │ ├── data.c │ ├── dir.c │ ├── environ.c │ ├── errno.c │ ├── except.c │ ├── except_arm.c │ ├── except_arm64.c │ ├── except_arm64ec.c │ ├── except_i386.c │ ├── except_x86_64.c │ ├── exception_ptr.c │ ├── exit.c │ ├── file.c │ ├── handler4.c │ ├── heap.c │ ├── iob.c │ ├── locale.c │ ├── lock.c │ ├── main.c │ ├── math.c │ ├── mathf.c │ ├── mbcs.c │ ├── misc.c │ ├── msvcrt.h │ ├── msvcrt.spec │ ├── mtdll.h │ ├── onexit.c │ ├── printf.h │ ├── process.c │ ├── rsrc.rc │ ├── scanf.c │ ├── scanf.h │ ├── sincos.c │ ├── string.c │ ├── tests │ │ ├── Makefile.in │ │ ├── cpp.c │ │ ├── data.c │ │ ├── dir.c │ │ ├── environ.c │ │ ├── file.c │ │ ├── heap.c │ │ ├── locale.c │ │ ├── misc.c │ │ ├── printf.c │ │ ├── scanf.c │ │ ├── signal.c │ │ ├── string.c │ │ └── time.c │ ├── thread.c │ ├── time.c │ ├── undname.c │ └── wcs.c ├── msvcrt20 │ ├── Makefile.in │ ├── msvcrt20.c │ └── msvcrt20.spec ├── msvcrt40 │ ├── Makefile.in │ └── msvcrt40.spec ├── msvcrtd │ ├── Makefile.in │ ├── debug.c │ ├── msvcrtd.spec │ └── tests │ │ ├── Makefile.in │ │ └── debug.c ├── msvfw32 │ ├── Makefile.in │ ├── drawdib.c │ ├── mciwnd.c │ ├── msvfw32.rc │ ├── msvfw32.spec │ ├── msvideo_main.c │ ├── msvideo_private.h │ └── tests │ │ ├── Makefile.in │ │ ├── drawdib.c │ │ ├── mciwnd.c │ │ ├── msvfw.c │ │ ├── msvfw32.manifest │ │ └── msvfw32.rc ├── msvidc32 │ ├── Makefile.in │ ├── msvidc32.rc │ ├── msvidc32.spec │ ├── msvidc32_private.h │ └── msvideo1.c ├── msvideo.dll16 │ ├── Makefile.in │ ├── msvideo.dll16.spec │ ├── msvideo16.c │ └── vfw16.h ├── msvproc │ ├── Makefile.in │ ├── msvproc.c │ ├── msvproc.idl │ └── msvproc.spec ├── mswsock │ ├── Makefile.in │ ├── mswsock.c │ ├── mswsock.spec │ └── version.rc ├── msxml │ ├── Makefile.in │ ├── msxml.rgs │ ├── msxml.spec │ ├── msxml_tlb.idl │ └── rsrc.rc ├── msxml2 │ ├── Makefile.in │ ├── msxml2.spec │ └── msxml2_tlb.idl ├── msxml3 │ ├── Makefile.in │ ├── attribute.c │ ├── bsc.c │ ├── cdata.c │ ├── comment.c │ ├── datatypes.xsd │ ├── dispex.c │ ├── docfrag.c │ ├── doctype.c │ ├── domdoc.c │ ├── domimpl.c │ ├── element.c │ ├── entityref.c │ ├── factory.c │ ├── httprequest.c │ ├── main.c │ ├── msxml3.manifest │ ├── msxml3.spec │ ├── msxml3_v1.idl │ ├── msxml_dispex.h │ ├── msxml_private.h │ ├── mxnamespace.c │ ├── mxwriter.c │ ├── node.c │ ├── nodelist.c │ ├── nodemap.c │ ├── parseerror.c │ ├── pi.c │ ├── saxreader.c │ ├── schema.c │ ├── schemas.rc │ ├── selection.c │ ├── stylesheet.c │ ├── tests │ │ ├── Makefile.in │ │ ├── domdoc.c │ │ ├── httpreq.c │ │ ├── rsrc.rc │ │ ├── saxreader.c │ │ ├── schema.c │ │ ├── xmldoc.c │ │ ├── xmlparser.c │ │ ├── xmlparser.idl │ │ ├── xmlview.c │ │ ├── xmlview.xml │ │ └── xmlview.xsl │ ├── text.c │ ├── uuid.c │ ├── version.rc │ ├── xdr.c │ ├── xmldoc.c │ ├── xmlelem.c │ ├── xmlparser.c │ ├── xmlparser.idl │ ├── xmlview.c │ ├── xslpattern.h │ ├── xslpattern.l │ └── xslpattern.y ├── msxml4 │ ├── Makefile.in │ ├── msxml4.manifest │ ├── msxml4.spec │ ├── msxml4_tlb.idl │ ├── rsrc.rc │ └── tests │ │ ├── Makefile.in │ │ ├── domdoc.c │ │ └── schema.c ├── msxml6 │ ├── Makefile.in │ ├── msxml6.manifest │ ├── msxml6.spec │ ├── msxml6_tlb.idl │ ├── rsrc.rc │ └── tests │ │ ├── Makefile.in │ │ ├── domdoc.c │ │ ├── saxreader.c │ │ └── schema.c ├── mtxdm │ ├── Makefile.in │ ├── mtxdm.spec │ └── mtxdm_main.c ├── ncrypt │ ├── Makefile.in │ ├── main.c │ ├── ncrypt.spec │ ├── ncrypt_internal.h │ └── tests │ │ ├── Makefile.in │ │ └── ncrypt.c ├── nddeapi │ ├── Makefile.in │ ├── nddeapi.c │ └── nddeapi.spec ├── ndis.sys │ ├── Makefile.in │ ├── main.c │ ├── ndis.sys.spec │ └── tests │ │ ├── Makefile.in │ │ └── ndis.c ├── netapi32 │ ├── Makefile.in │ ├── atsvc.idl │ ├── nbcmdqueue.c │ ├── nbcmdqueue.h │ ├── nbnamecache.c │ ├── nbnamecache.h │ ├── nbt.c │ ├── netapi32.c │ ├── netapi32.spec │ ├── netbios.c │ ├── netbios.h │ ├── tests │ │ ├── Makefile.in │ │ ├── access.c │ │ ├── apibuf.c │ │ ├── ds.c │ │ └── wksta.c │ ├── unixlib.c │ └── unixlib.h ├── netcfgx │ ├── Makefile.in │ ├── main.c │ ├── netcfg.c │ ├── netcfg_private.h │ ├── netcfgx.spec │ ├── netcfgx_classes.idl │ └── tests │ │ ├── Makefile.in │ │ └── netcfgx.c ├── netio.sys │ ├── Makefile.in │ ├── netio.c │ └── netio.sys.spec ├── netprofm │ ├── Makefile.in │ ├── list.c │ ├── main.c │ ├── netprofm.idl │ ├── netprofm.spec │ ├── netprofm_private.h │ └── tests │ │ ├── Makefile.in │ │ └── list.c ├── netutils │ ├── Makefile.in │ ├── main.c │ └── netutils.spec ├── newdev │ ├── Makefile.in │ ├── main.c │ └── newdev.spec ├── ninput │ ├── Makefile.in │ ├── main.c │ ├── ninput.spec │ └── tests │ │ ├── Makefile.in │ │ └── ninput.c ├── normaliz │ ├── Makefile.in │ └── normaliz.spec ├── npmshtml │ ├── Makefile.in │ ├── main.c │ ├── npmshtml.spec │ └── rsrc.rc ├── npptools │ ├── Makefile.in │ └── npptools.spec ├── nsi │ ├── Makefile.in │ ├── nsi.c │ ├── nsi.spec │ └── tests │ │ ├── Makefile.in │ │ └── nsi.c ├── nsiproxy.sys │ ├── Makefile.in │ ├── device.c │ ├── icmp_echo.c │ ├── ip.c │ ├── ndis.c │ ├── nsi.c │ ├── nsiproxy_private.h │ ├── tcp.c │ ├── udp.c │ └── unix_private.h ├── ntdll │ ├── .DS_Store │ ├── Makefile.in │ ├── actctx.c │ ├── atom.c │ ├── crypt.c │ ├── debugbuffer.c │ ├── env.c │ ├── error.c │ ├── error.h │ ├── exception.c │ ├── handletable.c │ ├── heap.c │ ├── large_int.c │ ├── loader.c │ ├── locale.c │ ├── locale_private.h │ ├── make_errors │ ├── math.c │ ├── misc.c │ ├── ntdll.spec │ ├── ntdll_misc.h │ ├── ntsyscalls.h │ ├── path.c │ ├── printf.c │ ├── printf.h │ ├── process.c │ ├── reg.c │ ├── relay.c │ ├── resource.c │ ├── rtl.c │ ├── rtlbitmap.c │ ├── rtlstr.c │ ├── sec.c │ ├── signal_arm.c │ ├── signal_arm64.c │ ├── signal_arm64ec.c │ ├── signal_i386.c │ ├── signal_x86_64.c │ ├── string.c │ ├── sync.c │ ├── tests │ │ ├── Makefile.in │ │ ├── atom.c │ │ ├── change.c │ │ ├── directory.c │ │ ├── env.c │ │ ├── error.c │ │ ├── exception.c │ │ ├── file.c │ │ ├── generated.c │ │ ├── info.c │ │ ├── large_int.c │ │ ├── om.c │ │ ├── path.c │ │ ├── pipe.c │ │ ├── port.c │ │ ├── reg.c │ │ ├── rtl.c │ │ ├── rtlbitmap.c │ │ ├── rtlstr.c │ │ ├── string.c │ │ ├── sync.c │ │ ├── thread.c │ │ ├── threadpool.c │ │ ├── time.c │ │ ├── unwind.c │ │ ├── virtual.c │ │ └── wow64.c │ ├── thread.c │ ├── threadpool.c │ ├── time.c │ ├── unix │ │ ├── cdrom.c │ │ ├── debug.c │ │ ├── dwarf.h │ │ ├── env.c │ │ ├── esync.c │ │ ├── esync.h │ │ ├── file.c │ │ ├── loader.c │ │ ├── loadorder.c │ │ ├── msync.c │ │ ├── msync.h │ │ ├── process.c │ │ ├── registry.c │ │ ├── security.c │ │ ├── serial.c │ │ ├── server.c │ │ ├── signal_arm.c │ │ ├── signal_arm64.c │ │ ├── signal_i386.c │ │ ├── signal_x86_64.c │ │ ├── socket.c │ │ ├── sync.c │ │ ├── system.c │ │ ├── tape.c │ │ ├── thread.c │ │ ├── unix_private.h │ │ └── virtual.c │ ├── unixlib.h │ ├── unwind.c │ ├── unwind.h │ ├── version.c │ ├── version.rc │ └── wcstring.c ├── ntdsapi │ ├── Makefile.in │ ├── ntdsapi.c │ ├── ntdsapi.spec │ └── tests │ │ ├── Makefile.in │ │ └── ntdsapi.c ├── ntoskrnl.exe │ ├── Makefile.in │ ├── instr.c │ ├── ntoskrnl.c │ ├── ntoskrnl.exe.spec │ ├── ntoskrnl.rc │ ├── ntoskrnl_private.h │ ├── plugplay.idl │ ├── pnp.c │ ├── sync.c │ └── tests │ │ ├── Makefile.in │ │ ├── driver.c │ │ ├── driver.h │ │ ├── driver2.c │ │ ├── driver3.c │ │ ├── driver_netio.c │ │ ├── driver_pnp.c │ │ ├── ntoskrnl.c │ │ ├── pop_hid_macros.h │ │ ├── psh_hid_macros.h │ │ └── utils.h ├── ntprint │ ├── Makefile.in │ ├── ntprint.c │ ├── ntprint.rc │ ├── ntprint.spec │ └── tests │ │ ├── Makefile.in │ │ └── ntprint.c ├── objsel │ ├── Makefile.in │ ├── objsel.c │ ├── objsel.rc │ ├── objsel.spec │ └── objsel_classes.idl ├── odbc32 │ ├── Makefile.in │ ├── odbc32.spec │ ├── proxyodbc.c │ ├── rsrc.rc │ ├── tests │ │ ├── Makefile.in │ │ └── odbc32.c │ ├── unixlib.c │ └── unixlib.h ├── odbcbcp │ ├── Makefile.in │ └── odbcbcp.spec ├── odbccp32 │ ├── Makefile.in │ ├── odbccp32.c │ ├── odbccp32.spec │ └── tests │ │ ├── Makefile.in │ │ ├── misc.c │ │ ├── odbccp32.manifest │ │ └── odbccp32.rc ├── odbccu32 │ ├── Makefile.in │ ├── odbccu32.spec │ └── version.rc ├── ole2.dll16 │ ├── Makefile.in │ ├── ifs.h │ ├── memlockbytes.c │ ├── ole2.c │ └── ole2.dll16.spec ├── ole2conv.dll16 │ ├── Makefile.in │ └── ole2conv.dll16.spec ├── ole2disp.dll16 │ ├── Makefile.in │ ├── ole2disp.c │ ├── ole2disp.dll16.spec │ └── ole2disp.h ├── ole2nls.dll16 │ ├── Makefile.in │ ├── ole2nls.c │ ├── ole2nls.dll16.spec │ └── version.rc ├── ole2prox.dll16 │ ├── Makefile.in │ └── ole2prox.dll16.spec ├── ole2thk.dll16 │ ├── Makefile.in │ └── ole2thk.dll16.spec ├── ole32 │ ├── Makefile.in │ ├── antimoniker.c │ ├── bindctx.c │ ├── classmoniker.c │ ├── clipboard.c │ ├── comcat.c │ ├── compobj.c │ ├── compobj_private.h │ ├── compositemoniker.c │ ├── datacache.c │ ├── dcom.idl │ ├── defaulthandler.c │ ├── dictionary.c │ ├── dictionary.h │ ├── drag_copy.cur │ ├── drag_copy.svg │ ├── drag_link.cur │ ├── drag_link.svg │ ├── drag_move.cur │ ├── drag_move.svg │ ├── filelockbytes.c │ ├── filemoniker.c │ ├── ftmarshal.c │ ├── git.c │ ├── irot.idl │ ├── itemmoniker.c │ ├── marshal.c │ ├── moniker.c │ ├── moniker.h │ ├── nodrop.cur │ ├── nodrop.svg │ ├── ole2.c │ ├── ole2stubs.c │ ├── ole32.spec │ ├── ole32_main.c │ ├── ole32_objidl.idl │ ├── ole32_oleidl.idl │ ├── ole32_unknwn.idl │ ├── ole32res.rc │ ├── oleobj.c │ ├── oleproxy.c │ ├── olestd.h │ ├── pointermoniker.c │ ├── stg_prop.c │ ├── stg_stream.c │ ├── storage32.c │ ├── storage32.h │ ├── tests │ │ ├── Makefile.in │ │ ├── clipboard.c │ │ ├── compobj.c │ │ ├── defaulthandler.c │ │ ├── dragdrop.c │ │ ├── errorinfo.c │ │ ├── hglobalstream.c │ │ ├── marshal.c │ │ ├── moniker.c │ │ ├── ole2.c │ │ ├── ole_server.c │ │ ├── propvariant.c │ │ ├── stg_prop.c │ │ ├── storage32.c │ │ ├── testlib.c │ │ ├── testlib.spec │ │ └── usrmarshal.c │ └── usrmarshal.c ├── oleacc │ ├── Makefile.in │ ├── client.c │ ├── main.c │ ├── oleacc.rc │ ├── oleacc.spec │ ├── oleacc_classes.idl │ ├── oleacc_private.h │ ├── propservice.c │ ├── resource.h │ ├── tests │ │ ├── Makefile.in │ │ └── main.c │ └── window.c ├── oleaut32 │ ├── Makefile.in │ ├── connpt.c │ ├── connpt.h │ ├── dispatch.c │ ├── hash.c │ ├── oleaut.c │ ├── oleaut32.rc │ ├── oleaut32.rgs │ ├── oleaut32.spec │ ├── oleaut32_oaidl.idl │ ├── oleaut32_ocidl.idl │ ├── olefont.c │ ├── olepicture.c │ ├── olepropframe.c │ ├── recinfo.c │ ├── resource.h │ ├── safearray.c │ ├── tests │ │ ├── Makefile.in │ │ ├── dispatch.c │ │ ├── olefont.c │ │ ├── olepicture.c │ │ ├── safearray.c │ │ ├── test_reg.idl │ │ ├── test_simple.idl │ │ ├── test_tlb.idl │ │ ├── tmarshal.c │ │ ├── tmarshal.idl │ │ ├── tmarshal.rc │ │ ├── typelib.c │ │ ├── usrmarshal.c │ │ ├── varformat.c │ │ ├── vartest.c │ │ └── vartype.c │ ├── thunks.c │ ├── typelib.c │ ├── typelib.h │ ├── usrmarshal.c │ ├── varformat.c │ ├── variant.c │ ├── variant.h │ └── vartype.c ├── olecli.dll16 │ ├── Makefile.in │ ├── olecli.c │ ├── olecli.dll16.spec │ └── olecli.h ├── olecli32 │ ├── Makefile.in │ ├── olecli.h │ ├── olecli32.spec │ └── olecli_main.c ├── oledb32 │ ├── Makefile.in │ ├── convert.c │ ├── convert.idl │ ├── datainit.c │ ├── dslocator.c │ ├── errorinfo.c │ ├── main.c │ ├── oledb32.spec │ ├── oledb32_classes.idl │ ├── oledb32_typelib.idl │ ├── oledb_private.h │ ├── resource.h │ ├── rowpos.c │ ├── tests │ │ ├── Makefile.in │ │ ├── convert.c │ │ ├── convert.idl │ │ ├── database.c │ │ └── marshal.c │ └── version.rc ├── oledlg │ ├── Makefile.in │ ├── insobjdlg.c │ ├── oledlg.rc │ ├── oledlg.spec │ ├── oledlg_main.c │ ├── oledlg_private.h │ ├── pastespl.c │ ├── resource.h │ └── tests │ │ ├── Makefile.in │ │ └── main.c ├── olepro32 │ ├── Makefile.in │ ├── olepro.idl │ ├── olepro32.spec │ ├── olepro32stubs.c │ └── version.rc ├── olesvr.dll16 │ ├── Makefile.in │ ├── olesvr.c │ └── olesvr.dll16.spec ├── olesvr32 │ ├── Makefile.in │ ├── olesvr32.spec │ └── olesvr_main.c ├── olethk32 │ ├── Makefile.in │ ├── olethk32.spec │ └── version.rc ├── opcservices │ ├── Makefile.in │ ├── compress.c │ ├── factory.c │ ├── opc_private.h │ ├── opcservices.idl │ ├── opcservices.spec │ ├── package.c │ ├── tests │ │ ├── Makefile.in │ │ └── opcservices.c │ └── uri.c ├── opencl │ ├── Makefile.in │ ├── make_opencl │ ├── opencl.spec │ ├── opencl_private.h │ ├── opencl_types.h │ ├── pe_thunks.c │ ├── pe_wrappers.c │ ├── unix_private.h │ ├── unix_thunks.c │ ├── unix_wrappers.c │ └── unixlib.h ├── opengl32 │ ├── Makefile.in │ ├── make_opengl │ ├── opengl32.spec │ ├── private.h │ ├── tests │ │ ├── Makefile.in │ │ └── opengl.c │ ├── thunks.c │ ├── unix_private.h │ ├── unix_thunks.c │ ├── unix_wgl.c │ ├── unixlib.h │ ├── version.rc │ ├── wgl.c │ └── winegl.xml ├── packager │ ├── Makefile.in │ ├── packager.rc │ ├── packager.rgs │ ├── packager.spec │ ├── packager_classes.idl │ ├── packager_main.c │ └── tests │ │ ├── Makefile.in │ │ └── oleobj.c ├── pdh │ ├── Makefile.in │ ├── pdh.spec │ ├── pdh_main.c │ └── tests │ │ ├── Makefile.in │ │ └── pdh.c ├── photometadatahandler │ ├── Makefile.in │ ├── photometadatahandler.rc │ └── photometadatahandler.spec ├── pidgen │ ├── Makefile.in │ ├── bink.bin │ ├── main.c │ ├── pidgen.spec │ └── rsrc.rc ├── powrprof │ ├── Makefile.in │ ├── powrprof.c │ └── powrprof.spec ├── printui │ ├── Makefile.in │ ├── printui.c │ ├── printui.rc │ ├── printui.spec │ └── printui_private.h ├── prntvpt │ ├── Makefile.in │ ├── main.c │ ├── prntvpt.spec │ ├── prntvpt_private.h │ ├── tests │ │ ├── Makefile.in │ │ └── prntvpt.c │ └── ticket.c ├── profapi │ ├── Makefile.in │ └── profapi.spec ├── propsys │ ├── Makefile.in │ ├── propstore.c │ ├── propsys.spec │ ├── propsys_classes.idl │ ├── propsys_main.c │ ├── propsys_private.h │ ├── propvar.c │ └── tests │ │ ├── Makefile.in │ │ └── propsys.c ├── psapi │ ├── Makefile.in │ ├── psapi.spec │ ├── tests │ │ ├── Makefile.in │ │ └── psapi_main.c │ └── version.rc ├── pstorec │ ├── Makefile.in │ ├── pstorec.c │ ├── pstorec.spec │ ├── pstorec_tlb.idl │ └── tests │ │ ├── Makefile.in │ │ └── pstorec.c ├── pwrshplugin │ ├── Makefile.in │ ├── pwrshplugin.spec │ └── version.rc ├── qasf │ ├── Makefile.in │ ├── asfreader.c │ ├── dmowrapper.c │ ├── qasf.spec │ ├── qasf_classes.idl │ ├── qasf_main.c │ ├── qasf_private.h │ ├── tests │ │ ├── Makefile.in │ │ ├── asfreader.c │ │ ├── dmowrapper.c │ │ ├── resource.rc │ │ └── test.wmv │ └── version.rc ├── qcap │ ├── Makefile.in │ ├── audiorecord.c │ ├── avico.c │ ├── avimux.c │ ├── capturegraph.c │ ├── filewriter.c │ ├── qcap.spec │ ├── qcap_classes.idl │ ├── qcap_main.c │ ├── qcap_private.h │ ├── smartteefilter.c │ ├── tests │ │ ├── Makefile.in │ │ ├── audiorecord.c │ │ ├── avico.c │ │ ├── avimux.c │ │ ├── capturegraph.c │ │ ├── filewriter.c │ │ ├── qcap.c │ │ ├── smartteefilter.c │ │ └── videocapture.c │ ├── v4l.c │ ├── version.rc │ └── vfwcapture.c ├── qdvd │ ├── Makefile.in │ ├── graph.c │ ├── navigator.c │ ├── qdvd.spec │ ├── qdvd_classes.idl │ ├── qdvd_main.c │ ├── qdvd_private.h │ ├── tests │ │ ├── Makefile.in │ │ ├── graph.c │ │ └── navigator.c │ └── version.rc ├── qedit │ ├── Makefile.in │ ├── main.c │ ├── mediadet.c │ ├── nullrenderer.c │ ├── qedit.spec │ ├── qedit_classes.idl │ ├── qedit_private.h │ ├── samplegrabber.c │ ├── tests │ │ ├── Makefile.in │ │ ├── mediadet.c │ │ ├── nullrenderer.c │ │ ├── qedit.rc │ │ ├── rc.h │ │ ├── samplegrabber.c │ │ ├── test.avi │ │ ├── test_sound.avi │ │ └── timeline.c │ ├── timeline.c │ └── version.rc ├── qmgr │ ├── Makefile.in │ ├── enum_files.c │ ├── enum_jobs.c │ ├── factory.c │ ├── file.c │ ├── job.c │ ├── qmgr.c │ ├── qmgr.h │ ├── qmgr.rgs │ ├── qmgr.spec │ ├── qmgr_local.idl │ ├── rsrc.rc │ ├── service.c │ └── tests │ │ ├── Makefile.in │ │ ├── enum_files.c │ │ ├── enum_jobs.c │ │ ├── file.c │ │ ├── job.c │ │ └── qmgr.c ├── qmgrprxy │ ├── Makefile.in │ ├── qmgrprxy.idl │ └── qmgrprxy.spec ├── quartz │ ├── Makefile.in │ ├── acmwrapper.c │ ├── avidec.c │ ├── control_tlb.idl │ ├── decoder.c │ ├── dsoundrender.c │ ├── filesource.c │ ├── filtergraph.c │ ├── filtermapper.c │ ├── main.c │ ├── memallocator.c │ ├── parser.c │ ├── passthrough.c │ ├── quartz.rc │ ├── quartz.rgs │ ├── quartz.spec │ ├── quartz_private.h │ ├── quartz_strmif.idl │ ├── systemclock.c │ ├── tests │ │ ├── Makefile.in │ │ ├── acmwrapper.c │ │ ├── avidec.c │ │ ├── avisplit.c │ │ ├── dsoundrender.c │ │ ├── filesource.c │ │ ├── filtergraph.c │ │ ├── filtermapper.c │ │ ├── memallocator.c │ │ ├── mpegaudio.c │ │ ├── mpeglayer3.c │ │ ├── mpegsplit.c │ │ ├── mpegvideo.c │ │ ├── passthrough.c │ │ ├── rsrc.rc │ │ ├── systemclock.c │ │ ├── test.avi │ │ ├── test.mp3 │ │ ├── test.mpg │ │ ├── test.wav │ │ ├── test2.mpg │ │ ├── test_cinepak.avi │ │ ├── videorenderer.c │ │ ├── vmr7.c │ │ ├── vmr9.c │ │ └── waveparser.c │ ├── videorenderer.c │ ├── vmr7.c │ ├── vmr7_presenter.c │ ├── vmr9.c │ └── window.c ├── query │ ├── Makefile.in │ ├── query.spec │ └── query_main.c ├── qwave │ ├── Makefile.in │ ├── main.c │ ├── qwave.spec │ └── tests │ │ ├── Makefile.in │ │ └── qos.c ├── rasapi16.dll16 │ ├── Makefile.in │ └── rasapi16.dll16.spec ├── rasapi32 │ ├── Makefile.in │ ├── rasapi.c │ ├── rasapi32.spec │ └── tests │ │ ├── Makefile.in │ │ └── rasapi.c ├── rasdlg │ ├── Makefile.in │ ├── rasdlg.spec │ └── rasdlg_main.c ├── regapi │ ├── Makefile.in │ └── regapi.spec ├── resampledmo │ ├── Makefile.in │ ├── resampledmo.c │ ├── resampledmo.idl │ └── resampledmo.spec ├── resutils │ ├── Makefile.in │ └── resutils.spec ├── riched20 │ ├── Makefile.in │ ├── caret.c │ ├── clipboard.c │ ├── context.c │ ├── editor.c │ ├── editor.h │ ├── editstr.h │ ├── list.c │ ├── ocr_reverse.cur │ ├── ocr_reverse.svg │ ├── paint.c │ ├── para.c │ ├── reader.c │ ├── res.h │ ├── riched20.spec │ ├── riched_tom.idl │ ├── richole.c │ ├── row.c │ ├── rtf.h │ ├── run.c │ ├── string.c │ ├── style.c │ ├── table.c │ ├── tests │ │ ├── Makefile.in │ │ ├── editor.c │ │ ├── richole.c │ │ └── txtsrv.c │ ├── txthost.c │ ├── txtsrv.c │ ├── undo.c │ ├── version.rc │ ├── wrap.c │ └── writer.c ├── riched32 │ ├── Makefile.in │ ├── riched32.spec │ ├── richedit.c │ ├── tests │ │ ├── Makefile.in │ │ └── editor.c │ └── version.rc ├── rometadata │ ├── Makefile.in │ ├── main.c │ ├── rometadata.spec │ └── tests │ │ ├── Makefile.in │ │ └── rometadata.c ├── rpcrt4 │ ├── Makefile.in │ ├── cproxy.c │ ├── cpsf.c │ ├── cpsf.h │ ├── cstub.c │ ├── epm.idl │ ├── epm_towers.h │ ├── ncastatus.h │ ├── ndr_clientserver.c │ ├── ndr_contexthandle.c │ ├── ndr_es.c │ ├── ndr_fullpointer.c │ ├── ndr_marshall.c │ ├── ndr_misc.h │ ├── ndr_ole.c │ ├── ndr_stubless.c │ ├── ndr_stubless.h │ ├── ndr_typelib.c │ ├── ndr_types.idl │ ├── rpc_assoc.c │ ├── rpc_assoc.h │ ├── rpc_async.c │ ├── rpc_binding.c │ ├── rpc_binding.h │ ├── rpc_defs.h │ ├── rpc_epmap.c │ ├── rpc_message.c │ ├── rpc_message.h │ ├── rpc_server.c │ ├── rpc_server.h │ ├── rpc_transport.c │ ├── rpcrt4.spec │ ├── rpcrt4_main.c │ ├── tests │ │ ├── Makefile.in │ │ ├── cstub.c │ │ ├── cstub.idl │ │ ├── explicit_handle.idl │ │ ├── generated.c │ │ ├── ndr_marshall.c │ │ ├── rpc.c │ │ ├── rpc_async.c │ │ ├── server.c │ │ ├── server.idl │ │ ├── server_defines.h │ │ └── server_interp.idl │ ├── thunks.c │ └── version.rc ├── rsabase │ ├── Makefile.in │ ├── rsabase.spec │ └── version.rc ├── rsaenh │ ├── Makefile.in │ ├── aes.c │ ├── des.c │ ├── handle.c │ ├── handle.h │ ├── implglue.c │ ├── implglue.h │ ├── mpi.c │ ├── rc2.c │ ├── rc4.c │ ├── rsa.c │ ├── rsaenh.c │ ├── rsaenh.rgs │ ├── rsaenh.spec │ ├── rsrc.rc │ ├── tests │ │ ├── Makefile.in │ │ └── rsaenh.c │ └── tomcrypt.h ├── rstrtmgr │ ├── Makefile.in │ ├── main.c │ └── rstrtmgr.spec ├── rtutils │ ├── Makefile.in │ ├── rtutils.spec │ └── tracing.c ├── rtworkq │ ├── Makefile.in │ ├── queue.c │ ├── rtworkq.spec │ └── tests │ │ ├── Makefile.in │ │ └── rtworkq.c ├── samlib │ ├── Makefile.in │ └── samlib.spec ├── sane.ds │ ├── Makefile.in │ ├── capability.c │ ├── ds_ctrl.c │ ├── ds_image.c │ ├── options.c │ ├── resource.h │ ├── sane.ds.spec │ ├── sane.rc │ ├── sane_i.h │ ├── sane_main.c │ ├── ui.c │ ├── unixlib.c │ └── unixlib.h ├── sapi │ ├── Makefile.in │ ├── async.c │ ├── automation.c │ ├── dispatch.c │ ├── main.c │ ├── mmaudio.c │ ├── resource.c │ ├── sapi.rc │ ├── sapi.rgs │ ├── sapi.spec │ ├── sapi_classes.idl │ ├── sapi_private.h │ ├── sapi_typelib.idl │ ├── stream.c │ ├── tests │ │ ├── Makefile.in │ │ ├── automation.c │ │ ├── mmaudio.c │ │ ├── resource.c │ │ ├── stream.c │ │ ├── token.c │ │ └── tts.c │ ├── token.c │ └── tts.c ├── sas │ ├── Makefile.in │ └── sas.spec ├── scarddlg │ ├── Makefile.in │ └── scarddlg.spec ├── scardsvr │ ├── Makefile.in │ ├── scardsvr.c │ └── scardsvr.spec ├── sccbase │ ├── Makefile.in │ └── sccbase.spec ├── schannel │ ├── Makefile.in │ ├── lsamode.c │ ├── schannel.spec │ ├── schannel_main.c │ ├── tests │ │ ├── Makefile.in │ │ └── main.c │ ├── usermode.c │ └── version.rc ├── schedsvc │ ├── Makefile.in │ ├── atsvc.c │ ├── atsvc.idl │ ├── schedsvc.c │ ├── schedsvc.spec │ ├── schedsvc_private.h │ ├── schrpc.idl │ ├── svc_main.c │ └── tests │ │ ├── Makefile.in │ │ ├── atsvc.idl │ │ ├── atsvcapi.c │ │ ├── rpcapi.c │ │ └── schrpc.idl ├── scrobj │ ├── Makefile.in │ ├── scrobj.c │ ├── scrobj.idl │ ├── scrobj.spec │ └── tests │ │ ├── Makefile.in │ │ ├── rsrc.rc │ │ ├── scrobj.c │ │ └── scrobj.wsc ├── scrrun │ ├── Makefile.in │ ├── dictionary.c │ ├── filesystem.c │ ├── scrrun.c │ ├── scrrun.idl │ ├── scrrun.rc │ ├── scrrun.rgs │ ├── scrrun.spec │ ├── scrrun_private.h │ └── tests │ │ ├── Makefile.in │ │ ├── dictionary.c │ │ ├── filesystem.c │ │ └── scrrun.idl ├── scsiport.sys │ ├── Makefile.in │ ├── scsiport.c │ └── scsiport.sys.spec ├── sechost │ ├── Makefile.in │ ├── plugplay.idl │ ├── sechost.spec │ ├── security.c │ ├── service.c │ ├── svcctl.idl │ └── trace.c ├── secur32 │ ├── Makefile.in │ ├── lsa.c │ ├── negotiate.c │ ├── schannel.c │ ├── schannel_gnutls.c │ ├── secur32.c │ ├── secur32.spec │ ├── secur32_priv.h │ ├── tests │ │ ├── Makefile.in │ │ ├── main.c │ │ ├── negotiate.c │ │ ├── ntlm.c │ │ ├── schannel.c │ │ └── secur32.c │ ├── thunks.c │ ├── thunks.h │ └── wrapper.c ├── security │ ├── Makefile.in │ └── security.spec ├── sensapi │ ├── Makefile.in │ ├── sensapi.c │ └── sensapi.spec ├── serialui │ ├── Makefile.in │ ├── confdlg.c │ ├── serialui.h │ ├── serialui.rc │ ├── serialui.spec │ └── tests │ │ ├── Makefile.in │ │ └── confdlg.c ├── setupapi │ ├── Makefile.in │ ├── devinst.c │ ├── dialog.c │ ├── dirid.c │ ├── diskspace.c │ ├── fakedll.c │ ├── install.c │ ├── misc.c │ ├── parser.c │ ├── query.c │ ├── queue.c │ ├── setupapi.rc │ ├── setupapi.spec │ ├── setupapi_private.h │ ├── setupcab.c │ ├── stringtable.c │ ├── stubs.c │ └── tests │ │ ├── Makefile.in │ │ ├── coinst.c │ │ ├── coinst.spec │ │ ├── devinst.c │ │ ├── dialog.c │ │ ├── diskspace.c │ │ ├── install.c │ │ ├── misc.c │ │ ├── parser.c │ │ ├── query.c │ │ ├── selfreg.c │ │ ├── selfreg.spec │ │ ├── setupapi.manifest │ │ ├── setupapi.rc │ │ ├── setupcab.c │ │ └── stringtable.c ├── setupx.dll16 │ ├── Makefile.in │ ├── devinst16.c │ ├── infparse.c │ ├── setupx.dll16.spec │ ├── setupx16.h │ ├── setupx_main.c │ └── virtcopy.c ├── sfc │ ├── Makefile.in │ └── sfc.spec ├── sfc_os │ ├── Makefile.in │ ├── sfc_os.c │ └── sfc_os.spec ├── shcore │ ├── Makefile.in │ ├── main.c │ ├── shcore.spec │ └── tests │ │ ├── Makefile.in │ │ └── shcore.c ├── shdoclc │ ├── ERROR.HTM │ ├── Makefile.in │ ├── shdoclc.h │ └── shdoclc.rc ├── shdocvw │ ├── Makefile.in │ ├── shdocvw.h │ ├── shdocvw.rc │ ├── shdocvw.spec │ ├── shdocvw_main.c │ ├── shdocvw_v1.idl │ ├── shlinstobj.c │ └── tests │ │ ├── Makefile.in │ │ ├── shdocvw.c │ │ └── shortcut.c ├── shell.dll16 │ ├── Makefile.in │ ├── shell.c │ ├── shell.dll16.spec │ └── version.rc ├── shell32 │ ├── .DS_Store │ ├── Makefile.in │ ├── appbar.c │ ├── assoc.c │ ├── autocomplete.c │ ├── brsfolder.c │ ├── changenotify.c │ ├── classes.c │ ├── clipboard.c │ ├── control.c │ ├── cpanel.h │ ├── cpanelfolder.c │ ├── dataobject.c │ ├── dde.c │ ├── debughlp.c │ ├── debughlp.h │ ├── dialogs.c │ ├── dragdrophelper.c │ ├── ebrowser.c │ ├── enumidlist.c │ ├── folders.c │ ├── iconcache.c │ ├── new_menu.c │ ├── pidl.c │ ├── pidl.h │ ├── recyclebin.c │ ├── resources │ │ ├── audio.ico │ │ ├── audio.svg │ │ ├── blank.ico │ │ ├── blank.svg │ │ ├── control.ico │ │ ├── control.svg │ │ ├── copy.ico │ │ ├── copy.svg │ │ ├── delete.ico │ │ ├── delete.svg │ │ ├── desktop.ico │ │ ├── desktop.svg │ │ ├── disk_drive.ico │ │ ├── disk_drive.svg │ │ ├── document.ico │ │ ├── document.svg │ │ ├── drive.ico │ │ ├── drive.svg │ │ ├── eject.ico │ │ ├── eject.svg │ │ ├── favorites.ico │ │ ├── favorites.svg │ │ ├── folder.ico │ │ ├── folder.svg │ │ ├── folder_open.ico │ │ ├── folder_open.svg │ │ ├── help.ico │ │ ├── help.svg │ │ ├── idb_sort_decr.bmp │ │ ├── idb_sort_incr.bmp │ │ ├── idb_tb_large.bmp │ │ ├── idb_tb_small.bmp │ │ ├── image.ico │ │ ├── image.svg │ │ ├── internet.ico │ │ ├── internet.svg │ │ ├── log_off.ico │ │ ├── log_off.svg │ │ ├── menu.ico │ │ ├── menu.svg │ │ ├── move.ico │ │ ├── move.svg │ │ ├── mycomputer.ico │ │ ├── mycomputer.svg │ │ ├── mydocs.ico │ │ ├── mydocs.svg │ │ ├── netdrive.ico │ │ ├── netdrive.svg │ │ ├── netdrive2.ico │ │ ├── netdrive2.svg │ │ ├── network.ico │ │ ├── network.svg │ │ ├── optical_disc.ico │ │ ├── optical_disc.svg │ │ ├── optical_drive.ico │ │ ├── optical_drive.svg │ │ ├── play.ico │ │ ├── play.svg │ │ ├── printer.ico │ │ ├── printer.svg │ │ ├── ramdisk.ico │ │ ├── ramdisk.svg │ │ ├── recent.ico │ │ ├── recent.svg │ │ ├── rename.ico │ │ ├── rename.svg │ │ ├── restricted.ico │ │ ├── restricted.svg │ │ ├── search.ico │ │ ├── search.svg │ │ ├── searching.avi │ │ ├── security.ico │ │ ├── security.svg │ │ ├── shortcut.ico │ │ ├── shortcut.svg │ │ ├── shut_down.ico │ │ ├── shut_down.svg │ │ ├── sleep.ico │ │ ├── sleep.svg │ │ ├── trash_file.ico │ │ ├── trash_file.svg │ │ ├── trash_full.ico │ │ ├── trash_full.svg │ │ ├── update.ico │ │ ├── update.svg │ │ ├── users.ico │ │ ├── users.svg │ │ ├── video.ico │ │ ├── video.svg │ │ ├── window.ico │ │ └── window.svg │ ├── shell32.manifest │ ├── shell32.rc │ ├── shell32.rgs │ ├── shell32.spec │ ├── shell32_classes.idl │ ├── shell32_main.c │ ├── shell32_main.h │ ├── shell32_tlb.idl │ ├── shelldispatch.c │ ├── shellfolder.h │ ├── shellitem.c │ ├── shelllink.c │ ├── shellole.c │ ├── shellord.c │ ├── shellpath.c │ ├── shellreg.c │ ├── shellstring.c │ ├── shfldr.h │ ├── shfldr_desktop.c │ ├── shfldr_fs.c │ ├── shfldr_mycomp.c │ ├── shfldr_netplaces.c │ ├── shfldr_printers.c │ ├── shlexec.c │ ├── shlfileop.c │ ├── shlfolder.c │ ├── shlfsbind.c │ ├── shlmenu.c │ ├── shlview.c │ ├── shlview_cmenu.c │ ├── shpolicy.c │ ├── shresdef.h │ ├── systray.c │ ├── tests │ │ ├── Makefile.in │ │ ├── appbar.c │ │ ├── assoc.c │ │ ├── autocomplete.c │ │ ├── brsfolder.c │ │ ├── ebrowser.c │ │ ├── generated.c │ │ ├── msg.h │ │ ├── progman_dde.c │ │ ├── recyclebin.c │ │ ├── rsrc.rc │ │ ├── shell32_test.h │ │ ├── shelldispatch.c │ │ ├── shelllink.c │ │ ├── shellole.c │ │ ├── shellpath.c │ │ ├── shfldr_special.c │ │ ├── shlexec.c │ │ ├── shlfileop.c │ │ ├── shlfolder.c │ │ ├── shlview.c │ │ ├── string.c │ │ └── systray.c │ └── version.h ├── shfolder │ ├── Makefile.in │ ├── shfolder.spec │ └── version.rc ├── shlwapi │ ├── Makefile.in │ ├── assoc.c │ ├── clist.c │ ├── istream.c │ ├── msgbox.c │ ├── ordinal.c │ ├── path.c │ ├── reg.c │ ├── regstream.c │ ├── resource.h │ ├── shlwapi.rc │ ├── shlwapi.spec │ ├── shlwapi_main.c │ ├── stopwatch.c │ ├── string.c │ ├── tests │ │ ├── Makefile.in │ │ ├── assoc.c │ │ ├── clist.c │ │ ├── clsid.c │ │ ├── generated.c │ │ ├── istream.c │ │ ├── ordinal.c │ │ ├── path.c │ │ ├── shreg.c │ │ ├── string.c │ │ ├── thread.c │ │ └── url.c │ ├── thread.c │ └── url.c ├── slbcsp │ ├── Makefile.in │ └── slbcsp.spec ├── slc │ ├── Makefile.in │ ├── slc.c │ ├── slc.spec │ └── tests │ │ ├── Makefile.in │ │ └── slc.c ├── snmpapi │ ├── Makefile.in │ ├── main.c │ ├── snmpapi.spec │ └── tests │ │ ├── Makefile.in │ │ └── util.c ├── softpub │ ├── Makefile.in │ └── softpub.spec ├── sound.drv16 │ ├── Makefile.in │ ├── sound.c │ └── sound.drv16.spec ├── spoolss │ ├── Makefile.in │ ├── router.c │ ├── spoolss.h │ ├── spoolss.spec │ ├── spoolss_main.c │ └── tests │ │ ├── Makefile.in │ │ └── spoolss.c ├── sppc │ ├── Makefile.in │ ├── sppc.c │ └── sppc.spec ├── srclient │ ├── Makefile.in │ └── srclient.spec ├── srvcli │ ├── Makefile.in │ └── srvcli.spec ├── srvsvc │ ├── Makefile.in │ ├── srvsvc.c │ └── srvsvc.spec ├── sspicli │ ├── Makefile.in │ ├── main.c │ └── sspicli.spec ├── stdole2.tlb │ ├── Makefile.in │ ├── rsrc.rc │ └── stdole2.idl ├── stdole32.tlb │ ├── Makefile.in │ ├── rsrc.rc │ └── std_ole_v1.idl ├── sti │ ├── Makefile.in │ ├── sti.c │ ├── sti.spec │ ├── sti_main.c │ ├── sti_wia.idl │ └── tests │ │ ├── Makefile.in │ │ └── sti.c ├── storage.dll16 │ ├── Makefile.in │ ├── ifs.h │ ├── storage.c │ └── storage.dll16.spec ├── stress.dll16 │ ├── Makefile.in │ ├── stress.c │ └── stress.dll16.spec ├── strmdll │ ├── Makefile.in │ ├── strmdll.spec │ └── version.rc ├── svrapi │ ├── Makefile.in │ └── svrapi.spec ├── sxs │ ├── Makefile.in │ ├── cache.c │ ├── name.c │ ├── sxs.c │ ├── sxs.spec │ ├── sxs_private.h │ └── tests │ │ ├── Makefile.in │ │ ├── cache.c │ │ ├── comtest_dll.manifest │ │ ├── comtest_exe.manifest │ │ ├── interfaces.idl │ │ ├── name.c │ │ ├── resource.rc │ │ └── sxs.c ├── system.drv16 │ ├── Makefile.in │ ├── system.c │ └── system.drv16.spec ├── t2embed │ ├── Makefile.in │ ├── main.c │ ├── t2embed.spec │ └── tests │ │ ├── Makefile.in │ │ └── t2embed.c ├── tapi32 │ ├── Makefile.in │ ├── assisted.c │ ├── line.c │ ├── phone.c │ ├── tapi32.spec │ └── tests │ │ ├── Makefile.in │ │ └── tapi.c ├── taskschd │ ├── Makefile.in │ ├── folder.c │ ├── folder_collection.c │ ├── regtask.c │ ├── schrpc.idl │ ├── task.c │ ├── taskschd.c │ ├── taskschd.spec │ ├── taskschd_private.h │ ├── taskschd_tlb.idl │ └── tests │ │ ├── Makefile.in │ │ └── scheduler.c ├── tbs │ ├── Makefile.in │ ├── tbs.c │ └── tbs.spec ├── tdh │ ├── Makefile.in │ ├── tdh.spec │ ├── tdh_main.c │ └── version.rc ├── tdi.sys │ ├── Makefile.in │ ├── main.c │ └── tdi.sys.spec ├── threadpoolwinrt │ ├── Makefile.in │ ├── classes.idl │ ├── main.c │ ├── tests │ │ ├── Makefile.in │ │ └── threadpool.c │ └── threadpoolwinrt.spec ├── toolhelp.dll16 │ ├── Makefile.in │ ├── toolhelp.c │ ├── toolhelp.dll16.spec │ └── toolhelp.h ├── traffic │ ├── Makefile.in │ ├── traffic.spec │ └── traffic_main.c ├── twain.dll16 │ ├── Makefile.in │ ├── twain.c │ └── twain.dll16.spec ├── twain_32 │ ├── Makefile.in │ ├── dsm_ctrl.c │ ├── resource.h │ ├── tests │ │ ├── Makefile.in │ │ └── dsm.c │ ├── twain.rc │ ├── twain32_main.c │ ├── twain_32.spec │ └── twain_i.h ├── twinapi.appcore │ ├── Makefile.in │ ├── advertising_manager.c │ ├── analytics_info.c │ ├── classes.idl │ ├── client_device_information.c │ ├── main.c │ ├── private.h │ ├── tests │ │ ├── Makefile.in │ │ └── twinapi.c │ └── twinapi.appcore.spec ├── typelib.dll16 │ ├── Makefile.in │ ├── typelib.c │ └── typelib.dll16.spec ├── tzres │ ├── Makefile.in │ └── tzres.rc ├── ucrtbase │ ├── Makefile.in │ ├── printf.c │ ├── tests │ │ ├── Makefile.in │ │ ├── cpp.c │ │ ├── environ.c │ │ ├── file.c │ │ ├── misc.c │ │ ├── printf.c │ │ ├── scanf.c │ │ ├── string.c │ │ ├── thread.c │ │ ├── threaddll.c │ │ ├── threaddll.h │ │ └── threaddll.spec │ ├── ucrtbase.spec │ └── version.rc ├── uianimation │ ├── Makefile.in │ ├── main.c │ ├── tests │ │ ├── Makefile.in │ │ └── uianimation.c │ ├── uianimation.spec │ ├── uianimation_reg.idl │ └── uianimation_typelib.idl ├── uiautomationcore │ ├── Makefile.in │ ├── tests │ │ ├── Makefile.in │ │ └── uiautomation.c │ ├── uia_classes.idl │ ├── uia_classes_client.idl │ ├── uia_classes_core.idl │ ├── uia_client.c │ ├── uia_com_client.c │ ├── uia_event.c │ ├── uia_ids.c │ ├── uia_main.c │ ├── uia_private.h │ ├── uia_provider.c │ ├── uia_utils.c │ └── uiautomationcore.spec ├── uiribbon │ ├── Makefile.in │ ├── main.c │ ├── uiribbon.c │ ├── uiribbon.spec │ ├── uiribbon_classes.idl │ └── uiribbon_private.h ├── unicows │ ├── Makefile.in │ └── unicows.spec ├── updspapi │ ├── Makefile.in │ ├── main.c │ └── updspapi.spec ├── url │ ├── Makefile.in │ ├── url.spec │ └── url_main.c ├── urlmon │ ├── Makefile.in │ ├── axinstall.c │ ├── bindctx.c │ ├── binding.c │ ├── bindprot.c │ ├── download.c │ ├── file.c │ ├── format.c │ ├── ftp.c │ ├── gopher.c │ ├── http.c │ ├── internet.c │ ├── mimefilter.c │ ├── mk.c │ ├── protocol.c │ ├── resource.h │ ├── sec_mgr.c │ ├── session.c │ ├── tests │ │ ├── Makefile.in │ │ ├── generated.c │ │ ├── misc.c │ │ ├── protocol.c │ │ ├── sec_mgr.c │ │ ├── stream.c │ │ ├── uri.c │ │ └── url.c │ ├── umon.c │ ├── umstream.c │ ├── uri.c │ ├── urlmon.inf │ ├── urlmon.rc │ ├── urlmon.rgs │ ├── urlmon.spec │ ├── urlmon_main.c │ ├── urlmon_main.h │ ├── urlmon_urlmon.idl │ └── usrmarshal.c ├── usbd.sys │ ├── Makefile.in │ ├── usbd.c │ └── usbd.sys.spec ├── user.exe16 │ ├── Makefile.in │ ├── bidi.c │ ├── comm.c │ ├── dialog.c │ ├── hook.c │ ├── message.c │ ├── network.c │ ├── user.c │ ├── user.exe16.spec │ ├── user_private.h │ ├── version.rc │ └── window.c ├── user32 │ ├── .DS_Store │ ├── Makefile.in │ ├── button.c │ ├── class.c │ ├── clipboard.c │ ├── combo.c │ ├── controls.h │ ├── cursoricon.c │ ├── dde_client.c │ ├── dde_misc.c │ ├── dde_private.h │ ├── dde_server.c │ ├── defdlg.c │ ├── defwnd.c │ ├── desktop.c │ ├── dialog.c │ ├── edit.c │ ├── exticon.c │ ├── hook.c │ ├── icontitle.c │ ├── input.c │ ├── listbox.c │ ├── lstr.c │ ├── mdi.c │ ├── menu.c │ ├── message.c │ ├── misc.c │ ├── msgbox.c │ ├── nonclient.c │ ├── property.c │ ├── resource.c │ ├── resources.h │ ├── resources │ │ ├── obm_btncorners.bmp │ │ ├── obm_btsize.bmp │ │ ├── obm_check.bmp │ │ ├── obm_checkboxes.bmp │ │ ├── obm_close.bmp │ │ ├── obm_combo.bmp │ │ ├── obm_dnarrow.bmp │ │ ├── obm_dnarrowd.bmp │ │ ├── obm_dnarrowi.bmp │ │ ├── obm_lfarrow.bmp │ │ ├── obm_lfarrowd.bmp │ │ ├── obm_lfarrowi.bmp │ │ ├── obm_mnarrow.bmp │ │ ├── obm_old_close.bmp │ │ ├── obm_old_dnarrow.bmp │ │ ├── obm_old_lfarrow.bmp │ │ ├── obm_old_reduce.bmp │ │ ├── obm_old_restore.bmp │ │ ├── obm_old_rgarrow.bmp │ │ ├── obm_old_uparrow.bmp │ │ ├── obm_old_zoom.bmp │ │ ├── obm_reduce.bmp │ │ ├── obm_reduced.bmp │ │ ├── obm_restore.bmp │ │ ├── obm_restored.bmp │ │ ├── obm_rgarrow.bmp │ │ ├── obm_rgarrowd.bmp │ │ ├── obm_rgarrowi.bmp │ │ ├── obm_size.bmp │ │ ├── obm_trtype.bmp │ │ ├── obm_uparrow.bmp │ │ ├── obm_uparrowd.bmp │ │ ├── obm_uparrowi.bmp │ │ ├── obm_zoom.bmp │ │ ├── obm_zoomd.bmp │ │ ├── ocr_appstarting.cur │ │ ├── ocr_appstarting.svg │ │ ├── ocr_cross.cur │ │ ├── ocr_cross.svg │ │ ├── ocr_hand.cur │ │ ├── ocr_hand.svg │ │ ├── ocr_help.cur │ │ ├── ocr_help.svg │ │ ├── ocr_ibeam.cur │ │ ├── ocr_ibeam.svg │ │ ├── ocr_icon.cur │ │ ├── ocr_no.cur │ │ ├── ocr_no.svg │ │ ├── ocr_normal.cur │ │ ├── ocr_normal.svg │ │ ├── ocr_pen.cur │ │ ├── ocr_pen.svg │ │ ├── ocr_rdr2dim.cur │ │ ├── ocr_rdreast.cur │ │ ├── ocr_rdrhorz.cur │ │ ├── ocr_rdrnorth.cur │ │ ├── ocr_rdrnortheast.cur │ │ ├── ocr_rdrnorthwest.cur │ │ ├── ocr_rdrsouth.cur │ │ ├── ocr_rdrsoutheast.cur │ │ ├── ocr_rdrsouthwest.cur │ │ ├── ocr_rdrvert.cur │ │ ├── ocr_rdrwest.cur │ │ ├── ocr_size.cur │ │ ├── ocr_size.svg │ │ ├── ocr_sizeall.cur │ │ ├── ocr_sizeall.svg │ │ ├── ocr_sizenesw.cur │ │ ├── ocr_sizenesw.svg │ │ ├── ocr_sizens.cur │ │ ├── ocr_sizens.svg │ │ ├── ocr_sizenwse.cur │ │ ├── ocr_sizenwse.svg │ │ ├── ocr_sizewe.cur │ │ ├── ocr_sizewe.svg │ │ ├── ocr_up.cur │ │ ├── ocr_up.svg │ │ ├── ocr_wait.cur │ │ ├── ocr_wait.svg │ │ ├── oic_bang.ico │ │ ├── oic_bang.svg │ │ ├── oic_hand.ico │ │ ├── oic_hand.svg │ │ ├── oic_note.ico │ │ ├── oic_note.svg │ │ ├── oic_ques.ico │ │ ├── oic_ques.svg │ │ ├── oic_sample.ico │ │ ├── oic_sample.svg │ │ ├── oic_shield.ico │ │ ├── oic_shield.svg │ │ ├── oic_winlogo.ico │ │ └── oic_winlogo.svg │ ├── scroll.c │ ├── static.c │ ├── sysparams.c │ ├── tests │ │ ├── Makefile.in │ │ ├── bmp1x1_32bpp.bmp │ │ ├── broadcast.c │ │ ├── class.c │ │ ├── clipboard.c │ │ ├── combo.c │ │ ├── cursoricon.c │ │ ├── dce.c │ │ ├── dde.c │ │ ├── dialog.c │ │ ├── edit.c │ │ ├── generated.c │ │ ├── input.c │ │ ├── listbox.c │ │ ├── menu.c │ │ ├── monitor.c │ │ ├── msg.c │ │ ├── resource.c │ │ ├── resource.rc │ │ ├── scroll.c │ │ ├── static.c │ │ ├── sysparams.c │ │ ├── test_mono.bmp │ │ ├── testdll.c │ │ ├── testdll.spec │ │ ├── text.c │ │ ├── uitools.c │ │ ├── win.c │ │ ├── winstation.c │ │ └── wsprintf.c │ ├── text.c │ ├── uitools.c │ ├── user32.rc │ ├── user32.spec │ ├── user_main.c │ ├── user_private.h │ ├── win.c │ ├── winhelp.c │ ├── winproc.c │ ├── winstation.c │ └── wsprintf.c ├── userenv │ ├── Makefile.in │ ├── tests │ │ ├── Makefile.in │ │ └── userenv.c │ ├── userenv.spec │ └── userenv_main.c ├── usp10 │ ├── Makefile.in │ ├── tests │ │ ├── Makefile.in │ │ └── usp10.c │ └── usp10.spec ├── utildll │ ├── Makefile.in │ └── utildll.spec ├── uxtheme │ ├── Makefile.in │ ├── buffer.c │ ├── dialog.c │ ├── draw.c │ ├── main.c │ ├── metric.c │ ├── msstyles.c │ ├── msstyles.h │ ├── property.c │ ├── scrollbar.c │ ├── stylemap.c │ ├── system.c │ ├── tests │ │ ├── Makefile.in │ │ ├── msg.h │ │ ├── system.c │ │ └── v6util.h │ ├── uxini.c │ ├── uxtheme.manifest │ ├── uxtheme.spec │ ├── uxthemedll.h │ ├── version.rc │ └── window.c ├── vbscript │ ├── Makefile.in │ ├── compile.c │ ├── global.c │ ├── interp.c │ ├── lex.c │ ├── parse.h │ ├── parser.y │ ├── regexp.c │ ├── regexp.h │ ├── tests │ │ ├── Makefile.in │ │ ├── api.vbs │ │ ├── caller.c │ │ ├── createobj.c │ │ ├── error.vbs │ │ ├── lang.vbs │ │ ├── regexp.vbs │ │ ├── rsrc.rc │ │ ├── run.c │ │ ├── vbscript.c │ │ ├── vbscript_defs.h │ │ └── vbsregexp55.idl │ ├── utils.c │ ├── vbdisp.c │ ├── vbregexp.c │ ├── vbscript.c │ ├── vbscript.h │ ├── vbscript.rc │ ├── vbscript.rgs │ ├── vbscript.spec │ ├── vbscript_classes.idl │ ├── vbscript_defs.h │ ├── vbscript_main.c │ ├── vbsglobal.idl │ ├── vbsregexp10.idl │ └── vbsregexp55.idl ├── vcomp │ ├── Makefile.in │ ├── fork.c │ ├── main.c │ ├── tests │ │ ├── Makefile.in │ │ └── vcomp.c │ └── vcomp.spec ├── vcomp100 │ ├── Makefile.in │ └── vcomp100.spec ├── vcomp110 │ ├── Makefile.in │ ├── tests │ │ ├── Makefile.in │ │ └── vcomp110.c │ └── vcomp110.spec ├── vcomp120 │ ├── Makefile.in │ └── vcomp120.spec ├── vcomp140 │ ├── Makefile.in │ └── vcomp140.spec ├── vcomp90 │ ├── Makefile.in │ └── vcomp90.spec ├── vcruntime140 │ ├── Makefile.in │ ├── misc.c │ └── vcruntime140.spec ├── vcruntime140_1 │ ├── Makefile.in │ ├── main.c │ └── vcruntime140_1.spec ├── vdhcp.vxd │ ├── Makefile.in │ ├── vdhcp.c │ └── vdhcp.vxd.spec ├── vdmdbg │ ├── Makefile.in │ ├── vdmdbg.c │ └── vdmdbg.spec ├── ver.dll16 │ ├── Makefile.in │ ├── ver.dll16.spec │ └── version.c ├── version │ ├── Makefile.in │ ├── tests │ │ ├── Makefile.in │ │ ├── info.c │ │ ├── install.c │ │ └── version.rc │ ├── version.c │ ├── version.rc │ └── version.spec ├── vga │ ├── Makefile.in │ ├── version.rc │ └── vga.spec ├── virtdisk │ ├── Makefile.in │ ├── tests │ │ ├── Makefile.in │ │ └── virtdisk.c │ ├── virtdisk.spec │ └── virtdisk_main.c ├── vmm.vxd │ ├── Makefile.in │ ├── vmm.c │ └── vmm.vxd.spec ├── vnbt.vxd │ ├── Makefile.in │ ├── vnbt.c │ └── vnbt.vxd.spec ├── vnetbios.vxd │ ├── Makefile.in │ ├── vnetbios.c │ └── vnetbios.vxd.spec ├── vssapi │ ├── Makefile.in │ ├── main.c │ └── vssapi.spec ├── vtdapi.vxd │ ├── Makefile.in │ ├── vtdapi.c │ └── vtdapi.vxd.spec ├── vulkan-1 │ ├── Makefile.in │ ├── tests │ │ ├── Makefile.in │ │ └── vulkan.c │ ├── version.rc │ ├── vulkan-1.spec │ └── vulkan.c ├── vwin32.vxd │ ├── Makefile.in │ ├── vwin32.c │ └── vwin32.vxd.spec ├── w32skrnl │ ├── Makefile.in │ ├── w32skernel.c │ └── w32skrnl.spec ├── w32sys.dll16 │ ├── Makefile.in │ ├── w32sys.c │ └── w32sys.dll16.spec ├── wbemdisp │ ├── Makefile.in │ ├── locator.c │ ├── main.c │ ├── tests │ │ ├── Makefile.in │ │ └── wbemdisp.c │ ├── wbemdisp.spec │ ├── wbemdisp_classes.idl │ ├── wbemdisp_private.h │ └── wbemdisp_tlb.idl ├── wbemprox │ ├── Makefile.in │ ├── builtin.c │ ├── class.c │ ├── main.c │ ├── process.c │ ├── qualifier.c │ ├── query.c │ ├── reg.c │ ├── security.c │ ├── service.c │ ├── services.c │ ├── sysrestore.c │ ├── table.c │ ├── tests │ │ ├── Makefile.in │ │ ├── query.c │ │ └── services.c │ ├── wbemlocator.c │ ├── wbemprox.idl │ ├── wbemprox.spec │ ├── wbemprox_private.h │ └── wql.y ├── wdscore │ ├── Makefile.in │ └── wdscore.spec ├── webservices │ ├── Makefile.in │ ├── channel.c │ ├── error.c │ ├── heap.c │ ├── listener.c │ ├── msg.c │ ├── proxy.c │ ├── reader.c │ ├── rsrc.rc │ ├── sock.h │ ├── string.c │ ├── tests │ │ ├── Makefile.in │ │ ├── channel.c │ │ ├── msg.c │ │ ├── proxy.c │ │ ├── reader.c │ │ ├── url.c │ │ └── writer.c │ ├── url.c │ ├── webservices.spec │ ├── webservices_private.h │ └── writer.c ├── websocket │ ├── Makefile.in │ ├── websocket.c │ └── websocket.spec ├── wer │ ├── Makefile.in │ ├── main.c │ ├── tests │ │ ├── Makefile.in │ │ └── main.c │ └── wer.spec ├── wevtapi │ ├── Makefile.in │ ├── main.c │ ├── tests │ │ ├── Makefile.in │ │ └── wevtapi.c │ └── wevtapi.spec ├── wevtsvc │ ├── Makefile.in │ ├── wevtsvc.c │ └── wevtsvc.spec ├── wiaservc │ ├── Makefile.in │ ├── factory.c │ ├── rsrc.rc │ ├── service.c │ ├── tests │ │ ├── Makefile.in │ │ └── wia.c │ ├── wiadevmgr.c │ ├── wiaservc.idl │ ├── wiaservc.rgs │ ├── wiaservc.spec │ └── wiaservc_private.h ├── wimgapi │ ├── Makefile.in │ ├── main.c │ └── wimgapi.spec ├── win32s16.dll16 │ ├── Makefile.in │ ├── win32s16.c │ └── win32s16.dll16.spec ├── win32u │ ├── .DS_Store │ ├── Makefile.in │ ├── bitblt.c │ ├── bitmap.c │ ├── brush.c │ ├── class.c │ ├── clipboard.c │ ├── clipping.c │ ├── cursoricon.c │ ├── d3dkmt.c │ ├── dc.c │ ├── dce.c │ ├── defwnd.c │ ├── dib.c │ ├── dibdrv │ │ ├── bitblt.c │ │ ├── dc.c │ │ ├── dibdrv.h │ │ ├── graphics.c │ │ ├── objects.c │ │ ├── opengl.c │ │ └── primitives.c │ ├── driver.c │ ├── emfdrv.c │ ├── font.c │ ├── freetype.c │ ├── gdiobj.c │ ├── hook.c │ ├── imm.c │ ├── input.c │ ├── main.c │ ├── mapping.c │ ├── menu.c │ ├── message.c │ ├── ntgdi_private.h │ ├── ntuser_private.h │ ├── opentype.c │ ├── painting.c │ ├── palette.c │ ├── path.c │ ├── pen.c │ ├── printdrv.c │ ├── rawinput.c │ ├── region.c │ ├── scroll.c │ ├── spy.c │ ├── syscall.c │ ├── sysparams.c │ ├── systray.c │ ├── tests │ │ ├── Makefile.in │ │ └── win32u.c │ ├── vertical.c │ ├── vulkan.c │ ├── win32syscalls.h │ ├── win32u.spec │ ├── win32u_private.h │ ├── window.c │ └── winstation.c ├── win87em.dll16 │ ├── Makefile.in │ ├── win87em.c │ └── win87em.dll16.spec ├── winaspi.dll16 │ ├── Makefile.in │ ├── winaspi.c │ └── winaspi.dll16.spec ├── windebug.dll16 │ ├── Makefile.in │ ├── windebug.c │ └── windebug.dll16.spec ├── windows.applicationmodel │ ├── Makefile.in │ ├── classes.idl │ ├── main.c │ ├── package.c │ ├── private.h │ ├── tests │ │ ├── Makefile.in │ │ ├── application.c │ │ ├── appxmanifest.xml │ │ ├── model.c │ │ ├── resource.rc │ │ └── winrt_test.h │ └── windows.applicationmodel.spec ├── windows.devices.bluetooth │ ├── Makefile.in │ ├── bluetoothadapter.c │ ├── classes.idl │ ├── main.c │ ├── private.h │ ├── tests │ │ ├── Makefile.in │ │ └── bluetooth.c │ └── windows.devices.bluetooth.spec ├── windows.devices.enumeration │ ├── Makefile.in │ ├── access.c │ ├── classes.idl │ ├── event_handlers.c │ ├── main.c │ ├── private.h │ ├── tests │ │ ├── Makefile.in │ │ └── devices.c │ └── windows.devices.enumeration.spec ├── windows.devices.usb │ ├── Makefile.in │ ├── classes.idl │ ├── main.c │ ├── private.h │ ├── tests │ │ ├── Makefile.in │ │ └── usb.c │ ├── usbdevice.c │ └── windows.devices.usb.spec ├── windows.gaming.input │ ├── Makefile.in │ ├── async.c │ ├── classes.idl │ ├── condition_effect.c │ ├── constant_effect.c │ ├── controller.c │ ├── event_handlers.c │ ├── force_feedback.c │ ├── gamepad.c │ ├── main.c │ ├── manager.c │ ├── periodic_effect.c │ ├── private.h │ ├── provider.c │ ├── provider.idl │ ├── racing_wheel.c │ ├── ramp_effect.c │ ├── tests │ │ ├── Makefile.in │ │ └── input.c │ ├── vector.c │ └── windows.gaming.input.spec ├── windows.gaming.ui.gamebar │ ├── Makefile.in │ ├── classes.idl │ ├── main.c │ ├── private.h │ ├── tests │ │ ├── Makefile.in │ │ └── gamebar.c │ └── windows.gaming.ui.gamebar.spec ├── windows.globalization │ ├── Makefile.in │ ├── classes.idl │ ├── geographic_region.c │ ├── main.c │ ├── private.h │ ├── tests │ │ ├── Makefile.in │ │ └── globalization.c │ └── windows.globalization.spec ├── windows.media.devices │ ├── Makefile.in │ ├── classes.idl │ ├── main.c │ ├── tests │ │ ├── Makefile.in │ │ └── devices.c │ └── windows.media.devices.spec ├── windows.media.mediacontrol │ ├── Makefile.in │ ├── classes.idl │ ├── main.c │ ├── private.h │ ├── tests │ │ ├── Makefile.in │ │ └── mediacontrol.c │ └── windows.media.mediacontrol.spec ├── windows.media.speech │ ├── Makefile.in │ ├── async.c │ ├── classes.idl │ ├── event_handlers.c │ ├── listconstraint.c │ ├── main.c │ ├── private.h │ ├── recognizer.c │ ├── synthesizer.c │ ├── tests │ │ ├── Makefile.in │ │ └── speech.c │ ├── vector.c │ └── windows.media.speech.spec ├── windows.media │ ├── Makefile.in │ ├── captions.c │ ├── classes.idl │ ├── main.c │ ├── private.h │ ├── tests │ │ ├── Makefile.in │ │ └── captions.c │ └── windows.media.spec ├── windows.networking.connectivity │ ├── Makefile.in │ ├── classes.idl │ ├── main.c │ ├── network_information.c │ ├── private.h │ ├── tests │ │ ├── Makefile.in │ │ └── connectivity.c │ └── windows.networking.connectivity.spec ├── windows.networking.hostname │ ├── Makefile.in │ ├── classes.idl │ ├── hostname.c │ ├── main.c │ ├── private.h │ ├── tests │ │ ├── Makefile.in │ │ └── hostname.c │ └── windows.networking.hostname.spec ├── windows.networking │ ├── Makefile.in │ ├── main.c │ └── windows.networking.spec ├── windows.perception.stub │ ├── Makefile.in │ ├── classes.idl │ ├── holographicspace.c │ ├── main.c │ ├── observer.c │ ├── private.h │ ├── tests │ │ ├── Makefile.in │ │ └── perception.c │ └── windows.perception.stub.spec ├── windows.security.authentication.onlineid │ ├── Makefile.in │ ├── authenticator.c │ ├── classes.idl │ ├── main.c │ ├── private.h │ ├── tests │ │ ├── Makefile.in │ │ └── onlineid.c │ ├── ticket.c │ └── windows.security.authentication.onlineid.spec ├── windows.security.credentials.ui.userconsentverifier │ ├── Makefile.in │ ├── async.c │ ├── classes.idl │ ├── main.c │ ├── private.h │ ├── provider.idl │ ├── tests │ │ ├── Makefile.in │ │ └── verifier.c │ └── windows.security.credentials.ui.userconsentverifier.spec ├── windows.storage.applicationdata │ ├── Makefile.in │ ├── applicationdata.c │ ├── classes.idl │ ├── main.c │ ├── private.h │ ├── tests │ │ ├── Makefile.in │ │ └── data.c │ └── windows.storage.applicationdata.spec ├── windows.system.profile.systemmanufacturers │ ├── Makefile.in │ ├── classes.idl │ ├── main.c │ ├── private.h │ ├── tests │ │ ├── Makefile.in │ │ └── smbios.c │ └── windows.system.profile.systemmanufacturers.spec ├── windows.ui │ ├── Makefile.in │ ├── classes.idl │ ├── inputpane.c │ ├── main.c │ ├── private.h │ ├── tests │ │ ├── Makefile.in │ │ └── uisettings.c │ ├── uisettings.c │ ├── uiviewsettings.c │ └── windows.ui.spec ├── windows.web │ ├── Makefile.in │ ├── classes.idl │ ├── json_object.c │ ├── json_value.c │ ├── main.c │ ├── private.h │ ├── tests │ │ ├── Makefile.in │ │ └── web.c │ └── windows.web.spec ├── windowscodecs │ ├── Makefile.in │ ├── bitmap.c │ ├── bmpdecode.c │ ├── bmpencode.c │ ├── clipper.c │ ├── clsfactory.c │ ├── colorcontext.c │ ├── colortransform.c │ ├── converter.c │ ├── ddsformat.c │ ├── decoder.c │ ├── encoder.c │ ├── fliprotate.c │ ├── gifformat.c │ ├── icoformat.c │ ├── imgfactory.c │ ├── info.c │ ├── libjpeg.c │ ├── libpng.c │ ├── libtiff.c │ ├── main.c │ ├── metadatahandler.c │ ├── metadataquery.c │ ├── palette.c │ ├── pngformat.c │ ├── propertybag.c │ ├── proxy.c │ ├── regsvr.c │ ├── scaler.c │ ├── stream.c │ ├── tests │ │ ├── Makefile.in │ │ ├── bitmap.c │ │ ├── bmpformat.c │ │ ├── converter.c │ │ ├── ddsformat.c │ │ ├── gifformat.c │ │ ├── icoformat.c │ │ ├── info.c │ │ ├── jpegformat.c │ │ ├── metadata.c │ │ ├── palette.c │ │ ├── pngformat.c │ │ ├── propertybag.c │ │ ├── stream.c │ │ ├── tiffformat.c │ │ └── wmpformat.c │ ├── tgaformat.c │ ├── ungif.c │ ├── ungif.h │ ├── uuid.c │ ├── version.rc │ ├── wincodecs_common.c │ ├── wincodecs_common.h │ ├── wincodecs_private.h │ ├── windowscodecs.spec │ └── windowscodecs_wincodec.idl ├── windowscodecsext │ ├── Makefile.in │ ├── main.c │ ├── tests │ │ ├── Makefile.in │ │ └── transform.c │ └── windowscodecsext.spec ├── winealsa.drv │ ├── Makefile.in │ ├── alsa.c │ ├── alsamidi.c │ ├── midi.c │ ├── mmdevdrv.c │ ├── unixlib.h │ └── winealsa.drv.spec ├── wineandroid.drv │ ├── .gitattributes │ ├── AndroidManifest.xml │ ├── Makefile.in │ ├── WineActivity.java │ ├── android.h │ ├── android_native.h │ ├── build.gradle.in │ ├── device.c │ ├── dllmain.c │ ├── init.c │ ├── keyboard.c │ ├── opengl.c │ ├── unixlib.h │ ├── window.c │ ├── wine.svg │ └── wineandroid.drv.spec ├── winebth.sys │ ├── Makefile.in │ ├── dbus.c │ ├── dbus.h │ ├── unixlib.c │ ├── unixlib.h │ ├── unixlib_priv.h │ ├── winebluetooth.c │ ├── winebth.c │ ├── winebth.inf │ ├── winebth.rc │ └── winebth_priv.h ├── winebus.sys │ ├── Makefile.in │ ├── bus_iohid.c │ ├── bus_sdl.c │ ├── bus_udev.c │ ├── bus_xbox360.c │ ├── hid.c │ ├── main.c │ ├── pop_hid_macros.h │ ├── psh_hid_macros.h │ ├── unix_private.h │ ├── unixlib.c │ ├── unixlib.h │ ├── winebus.inf │ └── winebus.rc ├── winecoreaudio.drv │ ├── Makefile.in │ ├── authorization.m │ ├── coreaudio.c │ ├── coreaudio.h │ ├── coreaudio_cocoa.h │ ├── coremidi.c │ ├── midi.c │ ├── mmdevdrv.c │ ├── unixlib.h │ └── winecoreaudio.drv.spec ├── winecrt0 │ ├── Makefile.in │ ├── arm64ec.c │ ├── crt_dllmain.c │ ├── crt_fltused.c │ ├── debug.c │ ├── delay_load.c │ ├── dll_canunload.c │ ├── dll_entry.c │ ├── dll_main.c │ ├── dll_register.c │ ├── dll_soinit.c │ ├── exception.c │ ├── exe16_entry.c │ ├── exe_entry.c │ ├── exe_main.c │ ├── exe_wentry.c │ ├── exe_wmain.c │ ├── register.c │ ├── setjmp.c │ ├── stub.c │ └── unix_lib.c ├── wined3d │ ├── Makefile.in │ ├── adapter_gl.c │ ├── adapter_vk.c │ ├── buffer.c │ ├── context.c │ ├── context_gl.c │ ├── context_vk.c │ ├── cs.c │ ├── cs_uav_clear_1d_array_float_code.hlsl │ ├── cs_uav_clear_1d_array_uint_code.hlsl │ ├── cs_uav_clear_1d_float_code.hlsl │ ├── cs_uav_clear_1d_uint_code.hlsl │ ├── cs_uav_clear_2d_array_float_code.hlsl │ ├── cs_uav_clear_2d_array_uint_code.hlsl │ ├── cs_uav_clear_2d_float_code.hlsl │ ├── cs_uav_clear_2d_uint_code.hlsl │ ├── cs_uav_clear_3d_float_code.hlsl │ ├── cs_uav_clear_3d_uint_code.hlsl │ ├── cs_uav_clear_buffer_float_code.hlsl │ ├── cs_uav_clear_buffer_uint_code.hlsl │ ├── device.c │ ├── directx.c │ ├── ffp_gl.c │ ├── ffp_hlsl.c │ ├── gl_compat.c │ ├── glsl_shader.c │ ├── palette.c │ ├── query.c │ ├── resource.c │ ├── resource.rc │ ├── sampler.c │ ├── shader.c │ ├── shader_sm1.c │ ├── shader_sm4.c │ ├── shader_spirv.c │ ├── stateblock.c │ ├── surface.c │ ├── swapchain.c │ ├── texture.c │ ├── utils.c │ ├── version.rc │ ├── vertexdeclaration.c │ ├── view.c │ ├── wined3d.spec │ ├── wined3d_gl.h │ ├── wined3d_main.c │ ├── wined3d_private.h │ └── wined3d_vk.h ├── winedmo │ ├── Makefile.in │ ├── main.c │ ├── unix_demuxer.c │ ├── unix_media_type.c │ ├── unix_private.h │ ├── unixlib.c │ ├── unixlib.h │ └── winedmo.spec ├── winegstreamer │ ├── Makefile.in │ ├── aac_decoder.c │ ├── color_convert.c │ ├── gst_guids.h │ ├── gst_private.h │ ├── main.c │ ├── media_sink.c │ ├── media_source.c │ ├── mfplat.c │ ├── quartz_parser.c │ ├── quartz_transform.c │ ├── resampler.c │ ├── rsrc.rc │ ├── unix_private.h │ ├── unixlib.c │ ├── unixlib.h │ ├── video_decoder.c │ ├── video_encoder.c │ ├── video_processor.c │ ├── wg_allocator.c │ ├── wg_format.c │ ├── wg_media_type.c │ ├── wg_muxer.c │ ├── wg_parser.c │ ├── wg_sample.c │ ├── wg_transform.c │ ├── winegstreamer.rgs │ ├── winegstreamer.spec │ ├── winegstreamer_classes.idl │ ├── wm_reader.c │ └── wma_decoder.c ├── winehid.sys │ ├── Makefile.in │ ├── main.c │ ├── winehid.inf │ └── winehid.rc ├── winemac.drv │ ├── .gitattributes │ ├── Makefile.in │ ├── clipboard.c │ ├── cocoa_app.h │ ├── cocoa_app.m │ ├── cocoa_clipboard.m │ ├── cocoa_cursorclipping.h │ ├── cocoa_cursorclipping.m │ ├── cocoa_display.m │ ├── cocoa_event.h │ ├── cocoa_event.m │ ├── cocoa_main.m │ ├── cocoa_opengl.h │ ├── cocoa_opengl.m │ ├── cocoa_status_item.m │ ├── cocoa_window.h │ ├── cocoa_window.m │ ├── d3dmetal.c │ ├── display.c │ ├── dllmain.c │ ├── event.c │ ├── gdi.c │ ├── image.c │ ├── keyboard.c │ ├── macdrv.h │ ├── macdrv_cocoa.h │ ├── macdrv_dll.h │ ├── macdrv_main.c │ ├── macdrv_res.h │ ├── mouse.c │ ├── opengl.c │ ├── opengl_bcdec.h │ ├── surface.c │ ├── systray.c │ ├── unixlib.h │ ├── vulkan.c │ ├── window.c │ ├── winemac.drv.spec │ └── winemac.rc ├── winemapi │ ├── Makefile.in │ ├── main.c │ ├── sendmail.c │ └── winemapi.spec ├── wineoss.drv │ ├── Makefile.in │ ├── midi.c │ ├── midipatch.c │ ├── mmaux.c │ ├── mmdevdrv.c │ ├── oss.c │ ├── ossmidi.c │ ├── unixlib.h │ └── wineoss.drv.spec ├── wineps.drv │ ├── Makefile.in │ ├── afm.c │ ├── afm2c.c │ ├── bitblt.c │ ├── bitmap.c │ ├── brush.c │ ├── builtin.c │ ├── clipping.c │ ├── color.c │ ├── data │ │ ├── AvantGarde_Book.c │ │ ├── AvantGarde_BookOblique.c │ │ ├── AvantGarde_Demi.c │ │ ├── AvantGarde_DemiOblique.c │ │ ├── Bookman_Demi.c │ │ ├── Bookman_DemiItalic.c │ │ ├── Bookman_Light.c │ │ ├── Bookman_LightItalic.c │ │ ├── COPYRIGHTS │ │ ├── Courier.c │ │ ├── Courier_Bold.c │ │ ├── Courier_BoldOblique.c │ │ ├── Courier_Oblique.c │ │ ├── Helvetica.c │ │ ├── Helvetica_Bold.c │ │ ├── Helvetica_BoldOblique.c │ │ ├── Helvetica_Narrow.c │ │ ├── Helvetica_Narrow_Bold.c │ │ ├── Helvetica_Narrow_BoldOblique.c │ │ ├── Helvetica_Narrow_Oblique.c │ │ ├── Helvetica_Oblique.c │ │ ├── NewCenturySchlbk_Bold.c │ │ ├── NewCenturySchlbk_BoldItalic.c │ │ ├── NewCenturySchlbk_Italic.c │ │ ├── NewCenturySchlbk_Roman.c │ │ ├── Palatino_Bold.c │ │ ├── Palatino_BoldItalic.c │ │ ├── Palatino_Italic.c │ │ ├── Palatino_Roman.c │ │ ├── Symbol.c │ │ ├── Times_Bold.c │ │ ├── Times_BoldItalic.c │ │ ├── Times_Italic.c │ │ ├── Times_Roman.c │ │ ├── ZapfChancery_MediumItalic.c │ │ ├── ZapfDingbats.c │ │ ├── agl.c │ │ └── agl.h │ ├── direction.c │ ├── download.c │ ├── driver.c │ ├── encode.c │ ├── escape.c │ ├── font.c │ ├── graphics.c │ ├── init.c │ ├── mkagl.c │ ├── ntf.h │ ├── pen.c │ ├── ppd.c │ ├── printproc.c │ ├── ps.c │ ├── psdlg.h │ ├── psdrv.h │ ├── text.c │ ├── type1.c │ ├── type1afm.c │ ├── type42.c │ ├── unixlib.c │ ├── unixlib.h │ ├── vertical.c │ ├── wineps.drv.spec │ └── wineps.rc ├── wineps16.drv16 │ ├── Makefile.in │ ├── driver.c │ └── wineps16.drv16.spec ├── winepulse.drv │ ├── Makefile.in │ ├── mmdevdrv.c │ ├── mult.h │ ├── pulse.c │ └── winepulse.drv.spec ├── wineusb.sys │ ├── Makefile.in │ ├── unixlib.c │ ├── unixlib.h │ ├── wineusb.c │ ├── wineusb.inf │ └── wineusb.rc ├── winevulkan │ ├── Makefile.in │ ├── loader.c │ ├── loader_thunks.c │ ├── loader_thunks.h │ ├── make_vulkan │ ├── vulkan.c │ ├── vulkan_loader.h │ ├── vulkan_private.h │ ├── vulkan_thunks.c │ ├── vulkan_thunks.h │ ├── winevulkan.json │ ├── winevulkan.rc │ └── winevulkan.spec ├── winewayland.drv │ ├── Makefile.in │ ├── display.c │ ├── dllmain.c │ ├── opengl.c │ ├── pointer-constraints-unstable-v1.xml │ ├── relative-pointer-unstable-v1.xml │ ├── unixlib.h │ ├── version.rc │ ├── viewporter.xml │ ├── vulkan.c │ ├── wayland.c │ ├── wayland_keyboard.c │ ├── wayland_output.c │ ├── wayland_pointer.c │ ├── wayland_surface.c │ ├── waylanddrv.h │ ├── waylanddrv_dll.h │ ├── waylanddrv_main.c │ ├── window.c │ ├── window_surface.c │ ├── winewayland.drv.spec │ ├── xdg-output-unstable-v1.xml │ └── xdg-shell.xml ├── winex11.drv │ ├── Makefile.in │ ├── bitblt.c │ ├── brush.c │ ├── clipboard.c │ ├── desktop.c │ ├── display.c │ ├── dllmain.c │ ├── event.c │ ├── graphics.c │ ├── init.c │ ├── keyboard.c │ ├── mouse.c │ ├── mwm.h │ ├── opengl.c │ ├── palette.c │ ├── pen.c │ ├── unixlib.h │ ├── version.rc │ ├── vulkan.c │ ├── window.c │ ├── winex11.drv.spec │ ├── wintab.c │ ├── x11drv.h │ ├── x11drv_main.c │ ├── xcomposite.h │ ├── xim.c │ ├── xinerama.c │ ├── xrandr.c │ ├── xrender.c │ └── xvidmode.c ├── winexinput.sys │ ├── Makefile.in │ ├── main.c │ ├── pop_hid_macros.h │ ├── psh_hid_macros.h │ ├── winexinput.inf │ └── winexinput.rc ├── wing.dll16 │ ├── Makefile.in │ ├── wing.c │ └── wing.dll16.spec ├── wing32 │ ├── Makefile.in │ ├── tests │ │ ├── Makefile.in │ │ └── wing32.c │ ├── wing32.c │ └── wing32.spec ├── winhttp │ ├── Makefile.in │ ├── cookie.c │ ├── handle.c │ ├── main.c │ ├── net.c │ ├── request.c │ ├── rsrc.rc │ ├── session.c │ ├── tests │ │ ├── Makefile.in │ │ ├── notification.c │ │ ├── url.c │ │ └── winhttp.c │ ├── url.c │ ├── winhttp.spec │ ├── winhttp_private.h │ └── winhttp_tlb.idl ├── wininet │ ├── Makefile.in │ ├── cookie.c │ ├── dialogs.c │ ├── ftp.c │ ├── gopher.c │ ├── http.c │ ├── internet.c │ ├── internet.h │ ├── netconnection.c │ ├── resource.h │ ├── tests │ │ ├── Makefile.in │ │ ├── ftp.c │ │ ├── generated.c │ │ ├── http.c │ │ ├── internet.c │ │ ├── url.c │ │ ├── urlcache.c │ │ └── wininet_test.h │ ├── urlcache.c │ ├── utility.c │ ├── wininet.rc │ ├── wininet.spec │ └── winineterror.mc ├── winmm │ ├── Makefile.in │ ├── driver.c │ ├── joystick.c │ ├── lolvldrv.c │ ├── mci.c │ ├── mmio.c │ ├── playsound.c │ ├── resource.h │ ├── tests │ │ ├── Makefile.in │ │ ├── capture.c │ │ ├── generated.c │ │ ├── joystick.c │ │ ├── mci.c │ │ ├── mcicda.c │ │ ├── midi.c │ │ ├── mixer.c │ │ ├── mmio.c │ │ ├── rsrc.rc │ │ ├── test.mpg │ │ ├── timer.c │ │ ├── wave.c │ │ └── winmm_test.h │ ├── time.c │ ├── waveform.c │ ├── winemm.h │ ├── winmm.c │ ├── winmm.rc │ ├── winmm.spec │ └── winmm_res.rc ├── winnls.dll16 │ ├── Makefile.in │ ├── winnls.c │ └── winnls.dll16.spec ├── winnls32 │ ├── Makefile.in │ ├── winnls.c │ └── winnls32.spec ├── winprint │ ├── Makefile.in │ ├── printproc.c │ └── winprint.spec ├── winscard │ ├── Makefile.in │ ├── rsrc.rc │ ├── tests │ │ ├── Makefile.in │ │ └── winscard.c │ ├── unixlib.c │ ├── unixlib.h │ ├── winscard.c │ └── winscard.spec ├── winsock.dll16 │ ├── Makefile.in │ ├── socket.c │ ├── winsock.dll16.spec │ └── winsock16.h ├── winspool.drv │ ├── Makefile.in │ ├── cups.c │ ├── generic.ppd │ ├── info.c │ ├── tests │ │ ├── Makefile.in │ │ └── info.c │ ├── winspool.drv.spec │ ├── winspool.rc │ ├── wspool.c │ └── wspool.h ├── winsta │ ├── Makefile.in │ ├── main.c │ ├── winsta.h │ └── winsta.spec ├── wintab.dll16 │ ├── Makefile.in │ ├── wintab.c │ └── wintab.dll16.spec ├── wintab32 │ ├── Makefile.in │ ├── context.c │ ├── manager.c │ ├── tests │ │ ├── Makefile.in │ │ └── context.c │ ├── wintab32.c │ ├── wintab32.spec │ └── wintab_internal.h ├── wintrust │ ├── Makefile.in │ ├── asn.c │ ├── crypt.c │ ├── register.c │ ├── softpub.c │ ├── tests │ │ ├── Makefile.in │ │ ├── asn.c │ │ ├── crypt.c │ │ ├── register.c │ │ └── softpub.c │ ├── version.rc │ ├── wintrust.spec │ ├── wintrust_main.c │ └── wintrust_priv.h ├── wintypes │ ├── Makefile.in │ ├── classes.idl │ ├── main.c │ ├── tests │ │ ├── Makefile.in │ │ ├── wintypes.c │ │ └── wintypes_test.idl │ ├── wintypes.spec │ └── wintypes_private.idl ├── winusb │ ├── Makefile.in │ ├── main.c │ └── winusb.spec ├── wlanapi │ ├── Makefile.in │ ├── main.c │ ├── tests │ │ ├── Makefile.in │ │ └── wlanapi.c │ └── wlanapi.spec ├── wlanui │ ├── Makefile.in │ └── wlanui.spec ├── wldap32 │ ├── Makefile.in │ ├── add.c │ ├── ber.c │ ├── bind.c │ ├── compare.c │ ├── control.c │ ├── delete.c │ ├── dn.c │ ├── error.c │ ├── extended.c │ ├── init.c │ ├── main.c │ ├── misc.c │ ├── modify.c │ ├── modrdn.c │ ├── option.c │ ├── page.c │ ├── parse.c │ ├── rename.c │ ├── search.c │ ├── tests │ │ ├── Makefile.in │ │ ├── ber.c │ │ └── parse.c │ ├── value.c │ ├── winldap_private.h │ ├── wldap32.rc │ └── wldap32.spec ├── wldp │ ├── Makefile.in │ ├── tests │ │ ├── Makefile.in │ │ └── wldp.c │ ├── wldp.c │ └── wldp.spec ├── wmadmod │ ├── Makefile.in │ ├── wmadmod.c │ ├── wmadmod.idl │ └── wmadmod.spec ├── wmasf │ ├── Makefile.in │ └── wmasf.spec ├── wmi │ ├── Makefile.in │ └── wmi.spec ├── wmilib.sys │ ├── Makefile.in │ └── wmilib.sys.spec ├── wmiutils │ ├── Makefile.in │ ├── main.c │ ├── path.c │ ├── statuscode.c │ ├── tests │ │ ├── Makefile.in │ │ └── path.c │ ├── wmiutils.spec │ ├── wmiutils_classes.idl │ └── wmiutils_private.h ├── wmp │ ├── Makefile.in │ ├── events.c │ ├── oleobj.c │ ├── player.c │ ├── rsrc.rc │ ├── tests │ │ ├── Makefile.in │ │ ├── media.c │ │ ├── oleobj.c │ │ ├── rsrc.rc │ │ ├── test.mp3 │ │ └── test1s.mp3 │ ├── wmp.rgs │ ├── wmp.spec │ ├── wmp_main.c │ ├── wmp_private.h │ └── wmp_typelib.idl ├── wmphoto │ ├── Makefile.in │ ├── jxrlib.c │ ├── main.c │ ├── wmphoto.idl │ └── wmphoto.spec ├── wmvcore │ ├── Makefile.in │ ├── async_reader.c │ ├── tests │ │ ├── Makefile.in │ │ ├── rsrc.rc │ │ ├── test.wmv │ │ └── wmvcore.c │ ├── version.rc │ ├── wmvcore.spec │ ├── wmvcore_main.c │ ├── wmvcore_private.h │ └── writer.c ├── wmvdecod │ ├── Makefile.in │ ├── video_decoder.c │ ├── video_decoder.h │ ├── wmvdecod.c │ ├── wmvdecod.idl │ └── wmvdecod.spec ├── wnaspi32 │ ├── Makefile.in │ ├── aspi.c │ ├── aspi.h │ ├── winaspi32.c │ ├── winescsi.h │ └── wnaspi32.spec ├── wofutil │ ├── Makefile.in │ ├── main.c │ └── wofutil.spec ├── wow32 │ ├── Makefile.in │ └── wow32.spec ├── wow64 │ ├── Makefile.in │ ├── file.c │ ├── process.c │ ├── registry.c │ ├── security.c │ ├── struct32.h │ ├── sync.c │ ├── syscall.c │ ├── system.c │ ├── virtual.c │ ├── wow64.spec │ └── wow64_private.h ├── wow64cpu │ ├── Makefile.in │ ├── cpu.c │ └── wow64cpu.spec ├── wow64win │ ├── Makefile.in │ ├── gdi.c │ ├── syscall.c │ ├── user.c │ ├── wow64win.spec │ └── wow64win_private.h ├── wpc │ ├── Makefile.in │ ├── tests │ │ ├── Makefile.in │ │ └── wpc.c │ ├── wpc.c │ ├── wpc.spec │ └── wpc_classes.idl ├── wpcap │ ├── Makefile.in │ ├── tests │ │ ├── Makefile.in │ │ └── wpcap.c │ ├── unixlib.c │ ├── unixlib.h │ ├── version.rc │ ├── wpcap.c │ └── wpcap.spec ├── ws2_32 │ ├── Makefile.in │ ├── async.c │ ├── hosts │ ├── inaddr.c │ ├── networks │ ├── protocol │ ├── protocol.c │ ├── services │ ├── socket.c │ ├── tests │ │ ├── Makefile.in │ │ ├── afd.c │ │ ├── protocol.c │ │ └── sock.c │ ├── unixlib.c │ ├── version.rc │ ├── ws2_32.spec │ └── ws2_32_private.h ├── wsdapi │ ├── Makefile.in │ ├── address.c │ ├── discovery.c │ ├── memory.c │ ├── msgparams.c │ ├── network.c │ ├── soap.c │ ├── tests │ │ ├── Makefile.in │ │ ├── address.c │ │ ├── discovery.c │ │ ├── memory.c │ │ ├── msgparams.c │ │ └── xml.c │ ├── wsdapi.spec │ ├── wsdapi_internal.h │ └── xml.c ├── wshom.ocx │ ├── Makefile.in │ ├── network.c │ ├── shell.c │ ├── tests │ │ ├── Makefile.in │ │ ├── wshom.c │ │ └── wshom.idl │ ├── wshom.idl │ ├── wshom.ocx.spec │ ├── wshom.rc │ ├── wshom.rgs │ ├── wshom_main.c │ └── wshom_private.h ├── wsnmp32 │ ├── Makefile.in │ ├── tests │ │ ├── Makefile.in │ │ └── wsnmp.c │ ├── wsnmp32.c │ └── wsnmp32.spec ├── wsock32 │ ├── Makefile.in │ ├── protocol.c │ ├── service.c │ ├── socket.c │ ├── version.rc │ ├── wscontrol.h │ └── wsock32.spec ├── wtsapi32 │ ├── Makefile.in │ ├── tests │ │ ├── Makefile.in │ │ └── wtsapi.c │ ├── wtsapi32.c │ └── wtsapi32.spec ├── wuapi │ ├── Makefile.in │ ├── downloader.c │ ├── installer.c │ ├── main.c │ ├── searcher.c │ ├── session.c │ ├── systeminfo.c │ ├── updates.c │ ├── wuapi.spec │ ├── wuapi_private.h │ └── wuapi_tlb.idl ├── wuaueng │ ├── Makefile.in │ ├── version.rc │ └── wuaueng.spec ├── x3daudio1_0 │ ├── Makefile.in │ └── x3daudio1_0.spec ├── x3daudio1_1 │ ├── Makefile.in │ └── x3daudio1_1.spec ├── x3daudio1_2 │ ├── Makefile.in │ └── x3daudio1_2.spec ├── x3daudio1_3 │ ├── Makefile.in │ └── x3daudio1_3.spec ├── x3daudio1_4 │ ├── Makefile.in │ └── x3daudio1_4.spec ├── x3daudio1_5 │ ├── Makefile.in │ └── x3daudio1_5.spec ├── x3daudio1_6 │ ├── Makefile.in │ └── x3daudio1_6.spec ├── x3daudio1_7 │ ├── Makefile.in │ └── x3daudio1_7.spec ├── xactengine2_0 │ ├── Makefile.in │ └── xactengine2_0.spec ├── xactengine2_4 │ ├── Makefile.in │ └── xactengine2_4.spec ├── xactengine2_7 │ ├── Makefile.in │ └── xactengine2_7.spec ├── xactengine2_9 │ ├── Makefile.in │ └── xactengine2_9.spec ├── xactengine3_0 │ ├── Makefile.in │ └── xactengine3_0.spec ├── xactengine3_1 │ ├── Makefile.in │ └── xactengine3_1.spec ├── xactengine3_2 │ ├── Makefile.in │ └── xactengine3_2.spec ├── xactengine3_3 │ ├── Makefile.in │ └── xactengine3_3.spec ├── xactengine3_4 │ ├── Makefile.in │ └── xactengine3_4.spec ├── xactengine3_5 │ ├── Makefile.in │ └── xactengine3_5.spec ├── xactengine3_6 │ ├── Makefile.in │ └── xactengine3_6.spec ├── xactengine3_7 │ ├── Makefile.in │ ├── tests │ │ ├── Makefile.in │ │ └── xact3.c │ ├── xact_classes.idl │ ├── xact_dll.c │ └── xactengine3_7.spec ├── xapofx1_1 │ ├── Makefile.in │ ├── version.rc │ └── xapofx1_1.spec ├── xapofx1_2 │ ├── Makefile.in │ └── xapofx1_2.spec ├── xapofx1_3 │ ├── Makefile.in │ ├── version.rc │ └── xapofx1_3.spec ├── xapofx1_4 │ ├── Makefile.in │ └── xapofx1_4.spec ├── xapofx1_5 │ ├── Makefile.in │ └── xapofx1_5.spec ├── xaudio2_0 │ ├── Makefile.in │ └── xaudio2_0.spec ├── xaudio2_1 │ ├── Makefile.in │ └── xaudio2_1.spec ├── xaudio2_2 │ ├── Makefile.in │ └── xaudio2_2.spec ├── xaudio2_3 │ ├── Makefile.in │ └── xaudio2_3.spec ├── xaudio2_4 │ ├── Makefile.in │ └── xaudio2_4.spec ├── xaudio2_5 │ ├── Makefile.in │ └── xaudio2_5.spec ├── xaudio2_6 │ ├── Makefile.in │ └── xaudio2_6.spec ├── xaudio2_7 │ ├── Makefile.in │ ├── tests │ │ ├── Makefile.in │ │ ├── xaudio2.c │ │ └── xaudio_classes.idl │ ├── x3daudio.c │ ├── xapo.c │ ├── xapofx.c │ ├── xaudio2_7.spec │ ├── xaudio_allocator.c │ ├── xaudio_classes.idl │ ├── xaudio_dll.c │ └── xaudio_private.h ├── xaudio2_8 │ ├── Makefile.in │ ├── tests │ │ └── Makefile.in │ └── xaudio2_8.spec ├── xaudio2_9 │ ├── Makefile.in │ ├── version.rc │ └── xaudio2_9.spec ├── xinput1_1 │ ├── Makefile.in │ ├── version.rc │ └── xinput1_1.spec ├── xinput1_2 │ ├── Makefile.in │ ├── version.rc │ └── xinput1_2.spec ├── xinput1_3 │ ├── Makefile.in │ ├── main.c │ ├── tests │ │ ├── Makefile.in │ │ └── xinput.c │ ├── version.rc │ └── xinput1_3.spec ├── xinput1_4 │ ├── Makefile.in │ ├── version.rc │ └── xinput1_4.spec ├── xinput9_1_0 │ ├── Makefile.in │ ├── main.c │ ├── version.rc │ └── xinput9_1_0.spec ├── xinputuap │ ├── Makefile.in │ ├── version.rc │ └── xinputuap.spec ├── xmllite │ ├── Makefile.in │ ├── reader.c │ ├── tests │ │ ├── Makefile.in │ │ ├── reader.c │ │ └── writer.c │ ├── writer.c │ ├── xmllite.spec │ └── xmllite_private.h ├── xolehlp │ ├── Makefile.in │ ├── xolehlp.c │ └── xolehlp.spec ├── xpsprint │ ├── Makefile.in │ ├── xpsprint.rc │ └── xpsprint.spec ├── xpssvcs │ ├── Makefile.in │ └── xpssvcs.spec └── xtajit64 │ ├── Makefile.in │ ├── cpu.c │ └── xtajit64.spec ├── documentation ├── README-de.md ├── README-es.md ├── README-fi.md ├── README-fr.md ├── README-hu.md ├── README-it.md ├── README-ja.md ├── README-ko.md ├── README-nl.md ├── README-no.md ├── README-pt.md ├── README-pt_br.md ├── README-ru.md ├── README-sv.md ├── README-tr.md ├── README-uk.md └── README-zh_cn.md ├── fonts ├── Makefile.in ├── courier.sfd ├── courier.ttf ├── fixedsys.sfd ├── fixedsys.ttf ├── fixedsys_jp.sfd ├── fixedsys_jp.ttf ├── genttf.ff ├── marlett.sfd ├── marlett.ttf ├── ms_sans_serif.sfd ├── ms_sans_serif.ttf ├── small_fonts.sfd ├── small_fonts.ttf ├── small_fonts_jp.sfd ├── small_fonts_jp.ttf ├── symbol.sfd ├── symbol.ttf ├── system.sfd ├── system.ttf ├── tahoma.sfd ├── tahoma.ttf ├── tahomabd.sfd ├── tahomabd.ttf ├── webdings.sfd ├── webdings.ttf ├── wingding.sfd └── wingding.ttf ├── include ├── .DS_Store ├── Makefile.in ├── accctrl.h ├── access.idl ├── aclapi.h ├── aclui.h ├── activation.idl ├── activaut.idl ├── activdbg.idl ├── activeds.h ├── activscp.idl ├── adserr.h ├── adshlp.h ├── advpub.h ├── af_irda.h ├── amaudio.h ├── amsi.idl ├── amstream.idl ├── amva.h ├── amvideo.idl ├── appcompatapi.h ├── appmgmt.h ├── appmodel.h ├── appnotify.h ├── asferr.h ├── asptlb.idl ├── asyncinfo.idl ├── asynot.idl ├── asysta.idl ├── atlbase.h ├── atlcom.h ├── atldef.h ├── atliface.idl ├── atlthunk.h ├── atlwin.h ├── audevcod.h ├── audioclient.idl ├── audiopolicy.idl ├── audiosessiontypes.h ├── austream.idl ├── authz.h ├── aviriff.h ├── avrt.h ├── axcore.idl ├── axextend.idl ├── axextendenums.h ├── 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 ├── bits5_0.idl ├── bitsmsg.h ├── bluetoothapis.h ├── bthdef.h ├── bthioctl.h ├── bthsdpdef.h ├── cderr.h ├── cdosys.idl ├── cfg.h ├── cfgmgr32.h ├── cguid.h ├── chprst.idl ├── cierror.h ├── clusapi.h ├── cmdbas.idl ├── cmdpre.idl ├── cmdprp.idl ├── cmdstrm.idl ├── cmdtxt.idl ├── cmdwpr.idl ├── cmnquery.idl ├── codecapi.h ├── colinf.idl ├── colordlg.h ├── colrst.idl ├── combaseapi.h ├── comcat.idl ├── commctrl.h ├── commctrl.rh ├── commdlg.h ├── commoncontrols.idl ├── compobj.h ├── comsvcs.idl ├── concurrencysal.h ├── config.h.in ├── consoleapi.h ├── control.idl ├── cor.idl ├── cordebug.idl ├── corerror.h ├── corhdr.h ├── corsym.idl ├── cpl.h ├── crtrow.idl ├── cryptdlg.h ├── cryptuiapi.h ├── ctfutb.idl ├── ctxtcall.idl ├── custcntl.h ├── cvconst.h ├── cvttyp.idl ├── d2d1.idl ├── d2d1_1.idl ├── d2d1_2.idl ├── d2d1_3.idl ├── d2d1effectauthor.idl ├── d2d1effects.idl ├── d2d1effects_1.idl ├── d2d1effects_2.idl ├── d2dbasetypes.h ├── d2derr.h ├── d3d.h ├── d3d10.idl ├── d3d10_1.idl ├── d3d10_1shader.h ├── d3d10effect.idl ├── d3d10misc.h ├── d3d10sdklayers.idl ├── d3d10shader.idl ├── d3d11.idl ├── d3d11_1.idl ├── d3d11_2.idl ├── d3d11_3.idl ├── d3d11_4.idl ├── d3d11on12.idl ├── d3d11sdklayers.idl ├── d3d11shader.h ├── d3d12.idl ├── d3d12sdklayers.idl ├── d3d12shader.idl ├── d3d12video.idl ├── d3d8.h ├── d3d8caps.h ├── d3d8types.h ├── d3d9.h ├── d3d9caps.h ├── d3d9types.h ├── d3dcaps.h ├── d3dcommon.idl ├── d3dcompiler.h ├── d3dhal.h ├── d3dkmdt.h ├── d3drm.h ├── d3drmdef.h ├── d3drmobj.h ├── d3drmwin.h ├── d3dtypes.h ├── d3dukmdt.h ├── d3dvec.inl ├── d3dx10.h ├── d3dx10async.h ├── d3dx10core.h ├── d3dx10math.h ├── d3dx10mesh.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 ├── dbgeng.h ├── dbghelp.h ├── dbinit.idl ├── dbprop.idl ├── dbs.idl ├── dbt.h ├── dciddi.h ├── dciman.h ├── dcommon.idl ├── dcomp.idl ├── dcompanimation.idl ├── dcomptypes.idl ├── dde.h ├── dde.rh ├── ddeml.h ├── ddk │ ├── compstui.h │ ├── csq.h │ ├── d3dkmthk.h │ ├── fltkernel.h │ ├── hidclass.h │ ├── hidpddi.h │ ├── hidpi.h │ ├── hidport.h │ ├── hidsdi.h │ ├── hidtypes.h │ ├── mountmgr.h │ ├── ndis.h │ ├── ntddcdvd.h │ ├── ntddk.h │ ├── ntddser.h │ ├── ntddtape.h │ ├── ntifs.h │ ├── usb.h │ ├── usb100.h │ ├── usb200.h │ ├── usbdlib.h │ ├── usbioctl.h │ ├── usbiodef.h │ ├── wdm.h │ ├── winddi.h │ ├── winddiui.h │ ├── winsplp.h │ └── wsk.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 ├── directmanipulation.idl ├── dispatcherqueue.idl ├── dispdib.h ├── dispex.idl ├── dlgs.h ├── dls1.h ├── dls2.h ├── dmdls.h ├── dmerror.h ├── dmksctrl.h ├── dmo.h ├── dmodshow.idl ├── dmoreg.h ├── dmort.h ├── dmplugin.h ├── dmusbuff.h ├── dmusicc.h ├── dmusicf.h ├── dmusici.h ├── dmusics.h ├── docobj.idl ├── docobjectservice.idl ├── documenttarget.idl ├── downloadmgr.idl ├── dpaddr.h ├── dpfilter.h ├── dplay.h ├── dplay8.h ├── dplobby.h ├── dplobby8.h ├── dpnathlp.h ├── dragdropinterop.idl ├── driverspecs.h ├── drmexternals.idl ├── dsclient.h ├── dsconf.h ├── dsgetdc.h ├── dshow.h ├── dsound.h ├── dsrole.h ├── dvdif.idl ├── dvdmedia.h ├── dvoice.h ├── dwmapi.h ├── dwrite.idl ├── dwrite_1.idl ├── dwrite_2.idl ├── dwrite_3.idl ├── dxcore.h ├── dxcore_interface.h ├── 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 ├── dxgidebug.idl ├── dxgiformat.idl ├── dxgitype.idl ├── dxva.h ├── dxva2api.idl ├── dxvahd.idl ├── dyngraph.idl ├── endpointvolume.idl ├── errorrep.h ├── errors.h ├── errrec.idl ├── evcode.h ├── eventtoken.idl ├── evntprov.h ├── evntrace.h ├── evr.idl ├── evr9.idl ├── excpt.h ├── exdisp.idl ├── exdispid.h ├── exposeenums2managed.h ├── fci.h ├── fdi.h ├── featurestagingapi.h ├── fileapi.h ├── filter.idl ├── fltdefs.h ├── fontsub.h ├── fusion.idl ├── gameux.idl ├── gamingtcui.h ├── 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 ├── getdts.idl ├── guiddef.h ├── hidusage.h ├── highlevelmonitorconfigurationapi.h ├── hlguids.h ├── hlink.idl ├── holographicspaceinterop.idl ├── hrtfapoapi.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 ├── icodecapi.idl ├── idispids.h ├── ieautomation.idl ├── iextag.idl ├── ifdef.h ├── ifmib.h ├── iimgctx.idl ├── imagehlp.h ├── ime.h ├── imm.h ├── immdev.h ├── imnact.idl ├── imnxport.idl ├── in6addr.h ├── inaddr.h ├── indexsrv.idl ├── initguid.h ├── inputpaneinterop.idl ├── inputscope.idl ├── inseng.idl ├── inspectable.idl ├── interactioncontext.h ├── intshcut.h ├── ioringapi.h ├── ip2string.h ├── ipexport.h ├── iphlpapi.h ├── ipifcons.h ├── ipmib.h ├── iprtrmib.h ├── iptypes.h ├── isguids.h ├── ivectorchangedeventargs.idl ├── kbd.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 ├── lmremutl.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 ├── medparam.idl ├── memoryapi.h ├── metahost.idl ├── mfapi.h ├── mfd3d12.idl ├── mferror.h ├── mfidl.idl ├── mfmediaengine.idl ├── mfobjects.idl ├── mfplay.idl ├── mfreadwrite.idl ├── mftransform.idl ├── mgmtapi.h ├── midles.h ├── mimeinfo.idl ├── mimeole.idl ├── minidumpapiset.h ├── minmax.h ├── minschannel.h ├── mlang.idl ├── mmc.idl ├── mmddk.h ├── mmdeviceapi.idl ├── mmreg.h ├── mmstream.idl ├── mmsystem.h ├── mpegtype.idl ├── mprapi.h ├── mprerror.h ├── msacm.h ├── msacmdlg.h ├── msacmdrv.h ├── msado15_backcompat.idl ├── msasn1.h ├── mscat.h ├── mscoree.idl ├── msctf.idl ├── msdadc.idl ├── msdaguid.h ├── msdasc.idl ├── msdasql.h ├── msdelta.h ├── 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 ├── msvcrt │ ├── assert.h │ ├── complex.h │ ├── conio.h │ ├── corecrt.h │ ├── corecrt_io.h │ ├── corecrt_malloc.h │ ├── corecrt_startup.h │ ├── corecrt_stdio_config.h │ ├── corecrt_wctype.h │ ├── corecrt_wdirect.h │ ├── corecrt_wio.h │ ├── corecrt_wprocess.h │ ├── corecrt_wstdio.h │ ├── corecrt_wstdlib.h │ ├── corecrt_wstring.h │ ├── corecrt_wtime.h │ ├── crtdbg.h │ ├── crtdefs.h │ ├── ctype.h │ ├── direct.h │ ├── dirent.h │ ├── dos.h │ ├── eh.h │ ├── errno.h │ ├── fcntl.h │ ├── fenv.h │ ├── float.h │ ├── fpieee.h │ ├── intrin.h │ ├── inttypes.h │ ├── io.h │ ├── limits.h │ ├── locale.h │ ├── malloc.h │ ├── math.h │ ├── mbctype.h │ ├── mbstring.h │ ├── memory.h │ ├── process.h │ ├── search.h │ ├── setjmp.h │ ├── share.h │ ├── signal.h │ ├── stdarg.h │ ├── stdbool.h │ ├── stddef.h │ ├── stdint.h │ ├── stdio.h │ ├── stdlib.h │ ├── string.h │ ├── sys │ │ ├── locking.h │ │ ├── stat.h │ │ ├── timeb.h │ │ ├── types.h │ │ ├── unistd.h │ │ └── utime.h │ ├── time.h │ ├── uchar.h │ ├── unistd.h │ ├── vadefs.h │ ├── wchar.h │ └── wctype.h ├── mswsock.h ├── msxml.idl ├── msxml2.idl ├── msxml2did.h ├── msxml6.idl ├── msxml6did.h ├── msxmldid.h ├── mtxdm.h ├── mulres.idl ├── multimon.h ├── namespaceapi.h ├── natupnp.idl ├── nb30.h ├── ncrypt.h ├── ndrtypes.h ├── netcfgx.idl ├── netcon.idl ├── netevent.h ├── netfw.idl ├── netioapi.h ├── netiodef.h ├── netlistmgr.idl ├── newdev.h ├── nldef.h ├── npapi.h ├── nserror.h ├── nspapi.h ├── ntddcdrm.h ├── ntddkbd.h ├── ntddmou.h ├── ntddndis.h ├── ntddscsi.h ├── ntddstor.h ├── ntddvdeo.h ├── ntdef.h ├── ntdsapi.h ├── ntgdi.h ├── ntioring_x.h ├── ntlsa.h ├── ntquery.h ├── ntsecapi.h ├── ntsecpkg.h ├── ntstatus.h ├── ntuser.h ├── oaidl.idl ├── objbase.h ├── objectarray.idl ├── objidl.idl ├── objidlbase.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 ├── processthreadsapi.h ├── profinfo.h ├── proofofpossessioncookieinfo.idl ├── 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 ├── qos2.h ├── ras.h ├── rasdlg.h ├── raserror.h ├── realtimeapiset.h ├── reason.h ├── regstr.h ├── relogger.idl ├── restartmanager.h ├── restrictederrorinfo.idl ├── richedit.h ├── richole.idl ├── rmxfguid.h ├── rmxftmpl.x ├── roapi.h ├── roerrorapi.h ├── rometadata.h ├── rometadataresolution.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 ├── rstchg.idl ├── rstfnd.idl ├── rstidn.idl ├── rstinf.idl ├── rstloc.idl ├── rstnot.idl ├── rstscr.idl ├── rstupd.idl ├── rstxsc.idl ├── rtlsupportapi.h ├── rtutils.h ├── rtworkq.idl ├── sal.h ├── sapi.idl ├── sapiaut.idl ├── sapiddk.idl ├── scarderr.h ├── schannel.h ├── schemadef.h ├── schnlsp.h ├── sddl.h ├── sdkddkver.h ├── secext.h ├── security.h ├── sensapi.h ├── sensevts.idl ├── servprov.idl ├── sesprp.idl ├── setupapi.h ├── sfc.h ├── shcore.h ├── shdeprecated.idl ├── shdispid.h ├── shellapi.h ├── shellscalingapi.h ├── sherrors.h ├── shimgdata.idl ├── shldisp.idl ├── shlguid.h ├── shlobj.h ├── shlwapi.h ├── shobjidl.idl ├── shobjidl_core.idl ├── shtypes.idl ├── sipbase.h ├── slerror.h ├── slpublic.h ├── snmp.h ├── socketapi.h ├── softpub.h ├── spatialaudioclient.idl ├── specstrings.h ├── specstrings_strict.h ├── sperror.h ├── sql.h ├── sqlext.h ├── sqltypes.h ├── sqlucode.h ├── srcrst.idl ├── srrestoreptapi.h ├── sspi.h ├── stamp-h.in ├── stgprop.h ├── sti.h ├── storage.h ├── strmif.idl ├── strongname.h ├── strsafe.h ├── structuredquerycondition.idl ├── svrapi.h ├── synchapi.h ├── systemmediatransportcontrolsinterop.idl ├── t2embapi.h ├── tapi.h ├── taskschd.idl ├── tbs.h ├── tchar.h ├── tcpestats.h ├── tcpmib.h ├── textserv.h ├── textstor.idl ├── threadpoolapiset.h ├── thumbcache.idl ├── timezoneapi.h ├── tlhelp32.h ├── tlogstg.idl ├── tmschema.h ├── tom.idl ├── tpcshrd.h ├── traffic.h ├── transact.idl ├── trnjoi.idl ├── trnlcl.idl ├── trnobj.idl ├── twain.h ├── txcoord.idl ├── txdtc.idl ├── udpmib.h ├── uianimation.idl ├── uiautomation.h ├── uiautomationclient.idl ├── uiautomationcore.idl ├── uiautomationcoreapi.h ├── uiribbon.idl ├── uiviewsettingsinterop.idl ├── unexposeenums2managed.h ├── unknwn.idl ├── urlhist.idl ├── urlmon.idl ├── userenv.h ├── usp10.h ├── uuids.h ├── uxtheme.h ├── vdmdbg.h ├── ver.h ├── verrsrc.h ├── vfw.h ├── vfwmsgs.h ├── videoacc.idl ├── virtdisk.h ├── vmr9.idl ├── vmrender.idl ├── vsbackup.idl ├── vss.idl ├── vsstyle.h ├── vssym32.h ├── vswriter.idl ├── wbemcli.idl ├── wbemdisp.idl ├── wbemprov.idl ├── wct.h ├── wdbgexts.h ├── weakreference.idl ├── webservices.h ├── websocket.h ├── werapi.h ├── wfext.h ├── wia.h ├── wia_lh.idl ├── wia_xp.idl ├── wiadef.h ├── wimgapi.h ├── winapifamily.h ├── winbase.h ├── winber.h ├── wincodec.idl ├── wincodecsdk.idl ├── wincon.h ├── wincontypes.h ├── wincred.h ├── wincrypt.h ├── windef.h ├── windns.h ├── windot11.h ├── windows.applicationmodel.activation.idl ├── windows.applicationmodel.background.idl ├── windows.applicationmodel.core.idl ├── windows.applicationmodel.datatransfer.dragdrop.core.idl ├── windows.applicationmodel.datatransfer.dragdrop.idl ├── windows.applicationmodel.datatransfer.idl ├── windows.applicationmodel.idl ├── windows.data.json.idl ├── windows.data.xml.dom.idl ├── windows.devices.bluetooth.idl ├── windows.devices.enumeration.idl ├── windows.devices.geolocation.idl ├── windows.devices.haptics.idl ├── windows.devices.input.idl ├── windows.devices.power.idl ├── windows.devices.radios.idl ├── windows.devices.usb.idl ├── windows.foundation.collections.idl ├── windows.foundation.idl ├── windows.foundation.metadata.idl ├── windows.foundation.numerics.idl ├── windows.gaming.input.custom.idl ├── windows.gaming.input.forcefeedback.idl ├── windows.gaming.input.idl ├── windows.gaming.ui.idl ├── windows.globalization.idl ├── windows.graphics.capture.idl ├── windows.graphics.capture.interop.idl ├── windows.graphics.directx.direct3d11.idl ├── windows.graphics.directx.idl ├── windows.graphics.effects.idl ├── windows.graphics.holographic.idl ├── windows.graphics.idl ├── windows.graphics.imaging.idl ├── windows.h ├── windows.management.deployment.idl ├── windows.media.capture.idl ├── windows.media.closedcaptioning.idl ├── windows.media.devices.idl ├── windows.media.effects.idl ├── windows.media.faceanalysis.idl ├── windows.media.idl ├── windows.media.render.idl ├── windows.media.speechrecognition.idl ├── windows.media.speechsynthesis.idl ├── windows.networking.connectivity.idl ├── windows.networking.idl ├── windows.perception.spatial.idl ├── windows.perception.spatial.surfaces.idl ├── windows.security.authentication.onlineid.idl ├── windows.security.authorization.appcapabilityaccess.idl ├── windows.security.credentials.idl ├── windows.security.credentials.ui.idl ├── windows.security.cryptography.idl ├── windows.security.enterprisedata.idl ├── windows.security.exchangeactivesyncprovisioning.idl ├── windows.security.isolation.idl ├── windows.storage.fileproperties.idl ├── windows.storage.idl ├── windows.storage.search.idl ├── windows.storage.streams.idl ├── windows.system.idl ├── windows.system.power.idl ├── windows.system.profile.idl ├── windows.system.profile.systemmanufacturers.idl ├── windows.system.threading.idl ├── windows.system.userprofile.idl ├── windows.ui.composition.idl ├── windows.ui.composition.interop.idl ├── windows.ui.core.idl ├── windows.ui.idl ├── windows.ui.input.idl ├── windows.ui.notifications.idl ├── windows.ui.viewmanagement.idl ├── windows.ui.xaml.hosting.desktopwindowxamlsource.idl ├── windows.ui.xaml.idl ├── windows.ui.xaml.interop.idl ├── windowscontracts.idl ├── windowsx.h ├── wine │ ├── afd.h │ ├── asm.h │ ├── atsvc.idl │ ├── condrv.h │ ├── dcetypes.idl │ ├── debug.h │ ├── dplaysp.h │ ├── epm.idl │ ├── exception.h │ ├── fil_data.idl │ ├── gdi_driver.h │ ├── glu.h │ ├── heap.h │ ├── hid.h │ ├── http.h │ ├── iaccessible2.idl │ ├── irot.idl │ ├── irpcss.idl │ ├── itss.idl │ ├── list.h │ ├── mfinternal.idl │ ├── mmsystem16.h │ ├── mscvpdb.h │ ├── mssign.h │ ├── nsi.h │ ├── orpc.idl │ ├── plugplay.idl │ ├── rbtree.h │ ├── schrpc.idl │ ├── server.h │ ├── server_protocol.h │ ├── strmbase.h │ ├── svcctl.idl │ ├── test.h │ ├── unixlib.h │ ├── vulkan.h │ ├── vulkan_driver.h │ ├── wgl.h │ ├── wgl_driver.h │ ├── winbase16.h │ ├── windef16.h │ ├── wine_common_ver.rc │ ├── wined3d.h │ ├── winedmo.h │ ├── winedxgi.idl │ ├── wingdi16.h │ ├── winnet16.h │ └── winuser16.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 ├── winppi.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 ├── winusb.h ├── winuser.h ├── winuser.rh ├── winver.h ├── wlanapi.h ├── wldp.h ├── wmcodecdsp.idl ├── wmdrmsdk.idl ├── wmistr.h ├── wmium.h ├── wmiutils.idl ├── wmp.idl ├── wmpids.h ├── wmprealestate.idl ├── wmpservices.idl ├── wmsbuffer.idl ├── wmsdk.h ├── wmsdkidl.idl ├── wmsecure.idl ├── wnaspi32.h ├── wofapi.h ├── wownt16.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 ├── wspiapi.h ├── wtsapi32.h ├── wtypes.idl ├── wuapi.idl ├── x3daudio.h ├── xact.h ├── xact2wb.h ├── xact3.h ├── xact3wb.h ├── xamlom.idl ├── xapo.idl ├── xapofx.h ├── xaudio2.idl ├── xaudio2fx.idl ├── xcmc.h ├── xinput.h ├── xmldom.h ├── xmldom.idl ├── xmldomdid.h ├── xmldso.idl ├── xmldsodid.h ├── xmllite.idl ├── xpsobjectmodel.idl ├── xpsobjectmodel_1.idl └── zmouse.h ├── libs ├── .DS_Store ├── adsiid │ ├── Makefile.in │ └── adsiid.c ├── capstone │ ├── .DS_Store │ ├── CREDITS.TXT │ ├── LEB128.h │ ├── LICENSE.TXT │ ├── LICENSE_LLVM.TXT │ ├── MCDisassembler.h │ ├── MCFixedLenDisassembler.h │ ├── MCInst.c │ ├── MCInst.h │ ├── MCInstrDesc.c │ ├── MCInstrDesc.h │ ├── MCRegisterInfo.c │ ├── MCRegisterInfo.h │ ├── Makefile.in │ ├── Mapping.c │ ├── Mapping.h │ ├── MathExtras.h │ ├── SStream.c │ ├── SStream.h │ ├── arch │ │ ├── AArch64 │ │ │ ├── AArch64AddressingModes.h │ │ │ ├── AArch64BaseInfo.c │ │ │ ├── AArch64BaseInfo.h │ │ │ ├── AArch64Disassembler.c │ │ │ ├── AArch64Disassembler.h │ │ │ ├── AArch64GenAsmWriter.inc │ │ │ ├── AArch64GenDisassemblerTables.inc │ │ │ ├── AArch64GenInstrInfo.inc │ │ │ ├── AArch64GenRegisterInfo.inc │ │ │ ├── AArch64GenRegisterName.inc │ │ │ ├── AArch64GenRegisterV.inc │ │ │ ├── AArch64GenSubtargetInfo.inc │ │ │ ├── AArch64GenSystemOperands.inc │ │ │ ├── AArch64GenSystemOperands_enum.inc │ │ │ ├── AArch64InstPrinter.c │ │ │ ├── AArch64InstPrinter.h │ │ │ ├── AArch64Mapping.c │ │ │ ├── AArch64Mapping.h │ │ │ ├── AArch64MappingInsn.inc │ │ │ ├── AArch64MappingInsnName.inc │ │ │ ├── AArch64MappingInsnOp.inc │ │ │ ├── AArch64Module.c │ │ │ └── AArch64Module.h │ │ ├── ARM │ │ │ ├── ARMAddressingModes.h │ │ │ ├── ARMBaseInfo.h │ │ │ ├── ARMDisassembler.c │ │ │ ├── ARMDisassembler.h │ │ │ ├── ARMGenAsmWriter.inc │ │ │ ├── ARMGenDisassemblerTables.inc │ │ │ ├── ARMGenInstrInfo.inc │ │ │ ├── ARMGenRegisterInfo.inc │ │ │ ├── ARMGenRegisterName.inc │ │ │ ├── ARMGenRegisterName_digit.inc │ │ │ ├── ARMGenSubtargetInfo.inc │ │ │ ├── ARMGenSystemRegister.inc │ │ │ ├── ARMInstPrinter.c │ │ │ ├── ARMInstPrinter.h │ │ │ ├── ARMMapping.c │ │ │ ├── ARMMapping.h │ │ │ ├── ARMMappingInsn.inc │ │ │ ├── ARMMappingInsnName.inc │ │ │ ├── ARMMappingInsnOp.inc │ │ │ ├── ARMModule.c │ │ │ └── ARMModule.h │ │ └── X86 │ │ │ ├── X86ATTInstPrinter.c │ │ │ ├── X86BaseInfo.h │ │ │ ├── X86Disassembler.c │ │ │ ├── X86Disassembler.h │ │ │ ├── X86DisassemblerDecoder.c │ │ │ ├── X86DisassemblerDecoder.h │ │ │ ├── X86DisassemblerDecoderCommon.h │ │ │ ├── X86GenAsmWriter.inc │ │ │ ├── X86GenAsmWriter1.inc │ │ │ ├── X86GenDisassemblerTables.inc │ │ │ ├── X86GenDisassemblerTables2.inc │ │ │ ├── X86GenInstrInfo.inc │ │ │ ├── X86GenRegisterInfo.inc │ │ │ ├── X86GenRegisterName.inc │ │ │ ├── X86GenRegisterName1.inc │ │ │ ├── X86ImmSize.inc │ │ │ ├── X86InstPrinter.h │ │ │ ├── X86InstPrinterCommon.c │ │ │ ├── X86InstPrinterCommon.h │ │ │ ├── X86IntelInstPrinter.c │ │ │ ├── X86Lookup16.inc │ │ │ ├── X86Mapping.c │ │ │ ├── X86Mapping.h │ │ │ ├── X86MappingInsn.inc │ │ │ ├── X86MappingInsnName.inc │ │ │ ├── X86MappingInsnOp.inc │ │ │ ├── X86MappingReg.inc │ │ │ ├── X86Module.c │ │ │ └── X86Module.h │ ├── cs.c │ ├── cs_priv.h │ ├── include │ │ ├── capstone │ │ │ ├── arm.h │ │ │ ├── arm64.h │ │ │ ├── bpf.h │ │ │ ├── capstone.h │ │ │ ├── evm.h │ │ │ ├── m680x.h │ │ │ ├── m68k.h │ │ │ ├── mips.h │ │ │ ├── mos65xx.h │ │ │ ├── platform.h │ │ │ ├── ppc.h │ │ │ ├── riscv.h │ │ │ ├── sh.h │ │ │ ├── sparc.h │ │ │ ├── systemz.h │ │ │ ├── tms320c64x.h │ │ │ ├── tricore.h │ │ │ ├── wasm.h │ │ │ ├── x86.h │ │ │ └── xcore.h │ │ └── platform.h │ ├── utils.c │ └── utils.h ├── dmoguids │ ├── Makefile.in │ └── dmoguids.c ├── dxerr8 │ ├── Makefile.in │ └── dxerr8.c ├── dxerr9 │ ├── Makefile.in │ └── dxerr9.c ├── dxguid │ ├── Makefile.in │ ├── dx10guid.c │ ├── dx8guid.c │ ├── dx9guid.c │ └── dxguid.c ├── faudio │ ├── .DS_Store │ ├── LICENSE │ ├── Makefile.in │ ├── include │ │ ├── F3DAudio.h │ │ ├── FACT.h │ │ ├── FACT3D.h │ │ ├── FAPO.h │ │ ├── FAPOBase.h │ │ ├── FAPOFX.h │ │ ├── FAudio.h │ │ └── FAudioFX.h │ └── src │ │ ├── F3DAudio.c │ │ ├── FACT.c │ │ ├── FACT3D.c │ │ ├── FACT_internal.c │ │ ├── FACT_internal.h │ │ ├── FAPOBase.c │ │ ├── FAPOFX.c │ │ ├── FAPOFX_echo.c │ │ ├── FAPOFX_eq.c │ │ ├── FAPOFX_masteringlimiter.c │ │ ├── FAPOFX_reverb.c │ │ ├── FAudio.c │ │ ├── FAudioFX_reverb.c │ │ ├── FAudioFX_volumemeter.c │ │ ├── FAudio_internal.c │ │ ├── FAudio_internal.h │ │ ├── FAudio_internal_simd.c │ │ ├── FAudio_operationset.c │ │ ├── FAudio_platform_win32.c │ │ ├── matrix_defaults.inl │ │ ├── stb.h │ │ └── stb_vorbis.h ├── fluidsynth │ ├── .DS_Store │ ├── AUTHORS │ ├── COPYING.md │ ├── Makefile.in │ ├── config.h │ ├── fluid_conv_tables.inc.h │ ├── fluid_rvoice_dsp_tables.inc.h │ ├── glib.c │ ├── glib.h │ ├── include │ │ ├── fluidsynth.h │ │ └── fluidsynth │ │ │ ├── audio.h │ │ │ ├── event.h │ │ │ ├── gen.h │ │ │ ├── ladspa.h │ │ │ ├── log.h │ │ │ ├── midi.h │ │ │ ├── misc.h │ │ │ ├── mod.h │ │ │ ├── seq.h │ │ │ ├── seqbind.h │ │ │ ├── settings.h │ │ │ ├── sfont.h │ │ │ ├── shell.h │ │ │ ├── synth.h │ │ │ ├── types.h │ │ │ ├── version.h │ │ │ └── voice.h │ └── src │ │ ├── bindings │ │ └── fluid_ladspa.h │ │ ├── midi │ │ ├── fluid_midi.c │ │ ├── fluid_midi.h │ │ └── fluid_midi_router.h │ │ ├── rvoice │ │ ├── fluid_adsr_env.c │ │ ├── fluid_adsr_env.h │ │ ├── fluid_chorus.c │ │ ├── fluid_chorus.h │ │ ├── fluid_iir_filter.c │ │ ├── fluid_iir_filter.h │ │ ├── fluid_lfo.c │ │ ├── fluid_lfo.h │ │ ├── fluid_phase.h │ │ ├── fluid_rev.c │ │ ├── fluid_rev.h │ │ ├── fluid_rvoice.c │ │ ├── fluid_rvoice.h │ │ ├── fluid_rvoice_dsp.c │ │ ├── fluid_rvoice_event.c │ │ ├── fluid_rvoice_event.h │ │ ├── fluid_rvoice_mixer.c │ │ └── fluid_rvoice_mixer.h │ │ ├── sfloader │ │ ├── fluid_defsfont.c │ │ ├── fluid_defsfont.h │ │ ├── fluid_instpatch.h │ │ ├── fluid_samplecache.c │ │ ├── fluid_samplecache.h │ │ ├── fluid_sffile.c │ │ ├── fluid_sffile.h │ │ ├── fluid_sfont.c │ │ └── fluid_sfont.h │ │ ├── synth │ │ ├── fluid_chan.c │ │ ├── fluid_chan.h │ │ ├── fluid_event.c │ │ ├── fluid_event.h │ │ ├── fluid_gen.c │ │ ├── fluid_gen.h │ │ ├── fluid_mod.c │ │ ├── fluid_mod.h │ │ ├── fluid_synth.c │ │ ├── fluid_synth.h │ │ ├── fluid_synth_monopoly.c │ │ ├── fluid_tuning.c │ │ ├── fluid_tuning.h │ │ ├── fluid_voice.c │ │ └── fluid_voice.h │ │ └── utils │ │ ├── fluid_conv.c │ │ ├── fluid_conv.h │ │ ├── fluid_conv_tables.h │ │ ├── fluid_hash.c │ │ ├── fluid_hash.h │ │ ├── fluid_list.c │ │ ├── fluid_list.h │ │ ├── fluid_ringbuffer.c │ │ ├── fluid_ringbuffer.h │ │ ├── fluid_settings.c │ │ ├── fluid_settings.h │ │ ├── fluid_sys.c │ │ ├── fluid_sys.h │ │ └── fluidsynth_priv.h ├── gsm │ ├── .DS_Store │ ├── COPYRIGHT │ ├── Makefile.in │ ├── inc │ │ ├── gsm.h │ │ ├── private.h │ │ ├── proto.h │ │ └── unproto.h │ └── src │ │ ├── add.c │ │ ├── code.c │ │ ├── decode.c │ │ ├── gsm_create.c │ │ ├── gsm_decode.c │ │ ├── gsm_destroy.c │ │ ├── gsm_encode.c │ │ ├── gsm_option.c │ │ ├── gsm_print.c │ │ ├── long_term.c │ │ ├── lpc.c │ │ ├── preprocess.c │ │ ├── rpe.c │ │ ├── short_term.c │ │ └── table.c ├── jpeg │ ├── LICENSE │ ├── Makefile.in │ ├── jaricom.c │ ├── jcapimin.c │ ├── jcapistd.c │ ├── jcarith.c │ ├── jccoefct.c │ ├── jccolor.c │ ├── jcdctmgr.c │ ├── jchuff.c │ ├── jcinit.c │ ├── jcmainct.c │ ├── jcmarker.c │ ├── jcmaster.c │ ├── jcomapi.c │ ├── jconfig.h │ ├── jcparam.c │ ├── jcprepct.c │ ├── jcsample.c │ ├── jdapimin.c │ ├── jdapistd.c │ ├── jdarith.c │ ├── jdcoefct.c │ ├── jdcolor.c │ ├── jdct.h │ ├── jddctmgr.c │ ├── jdhuff.c │ ├── jdinput.c │ ├── jdmainct.c │ ├── jdmarker.c │ ├── jdmaster.c │ ├── jdmerge.c │ ├── jdpostct.c │ ├── jdsample.c │ ├── jerror.c │ ├── jerror.h │ ├── jfdctflt.c │ ├── jfdctfst.c │ ├── jfdctint.c │ ├── jidctflt.c │ ├── jidctfst.c │ ├── jidctint.c │ ├── jinclude.h │ ├── jmemansi.c │ ├── jmemmgr.c │ ├── jmemsys.h │ ├── jmorecfg.h │ ├── jpegint.h │ ├── jpeglib.h │ ├── jquant1.c │ ├── jquant2.c │ ├── jutils.c │ └── jversion.h ├── jxr │ ├── .DS_Store │ ├── LICENSE │ ├── Makefile.in │ ├── image │ │ ├── decode │ │ │ ├── JXRTranscode.c │ │ │ ├── decode.c │ │ │ ├── decode.h │ │ │ ├── postprocess.c │ │ │ ├── segdec.c │ │ │ ├── strInvTransform.c │ │ │ ├── strPredQuantDec.c │ │ │ └── strdec.c │ │ ├── encode │ │ │ ├── encode.c │ │ │ ├── encode.h │ │ │ ├── segenc.c │ │ │ ├── strFwdTransform.c │ │ │ ├── strPredQuantEnc.c │ │ │ └── strenc.c │ │ ├── sys │ │ │ ├── adapthuff.c │ │ │ ├── ansi.h │ │ │ ├── common.h │ │ │ ├── image.c │ │ │ ├── perfTimer.h │ │ │ ├── strPredQuant.c │ │ │ ├── strTransform.c │ │ │ ├── strTransform.h │ │ │ ├── strcodec.c │ │ │ ├── strcodec.h │ │ │ ├── windowsmediaphoto.h │ │ │ └── xplatform_image.h │ │ └── x86 │ │ │ └── x86.h │ └── jxrgluelib │ │ ├── JXRGlue.c │ │ ├── JXRGlue.h │ │ ├── JXRGlueJxr.c │ │ ├── JXRGluePFC.c │ │ ├── JXRMeta.c │ │ └── JXRMeta.h ├── lcms2 │ ├── .DS_Store │ ├── AUTHORS │ ├── COPYING │ ├── Makefile.in │ ├── include │ │ ├── lcms2.h │ │ └── lcms2_plugin.h │ └── src │ │ ├── cmsalpha.c │ │ ├── cmscnvrt.c │ │ ├── cmserr.c │ │ ├── cmsgamma.c │ │ ├── cmsgmt.c │ │ ├── cmshalf.c │ │ ├── cmsintrp.c │ │ ├── cmsio0.c │ │ ├── cmsio1.c │ │ ├── cmslut.c │ │ ├── cmsmtrx.c │ │ ├── cmsnamed.c │ │ ├── cmsopt.c │ │ ├── cmspack.c │ │ ├── cmspcs.c │ │ ├── cmsplugin.c │ │ ├── cmssamp.c │ │ ├── cmstypes.c │ │ ├── cmsvirt.c │ │ ├── cmswtpnt.c │ │ ├── cmsxform.c │ │ └── lcms2_internal.h ├── ldap │ ├── .DS_Store │ ├── COPYRIGHT │ ├── LICENSE │ ├── Makefile.in │ ├── include │ │ ├── ac │ │ │ ├── assert.h │ │ │ ├── bytes.h │ │ │ ├── ctype.h │ │ │ ├── dirent.h │ │ │ ├── errno.h │ │ │ ├── fdset.h │ │ │ ├── localize.h │ │ │ ├── param.h │ │ │ ├── signal.h │ │ │ ├── socket.h │ │ │ ├── stdarg.h │ │ │ ├── stdlib.h │ │ │ ├── string.h │ │ │ ├── time.h │ │ │ └── unistd.h │ │ ├── getopt-compat.h │ │ ├── lber.h │ │ ├── lber_pvt.h │ │ ├── lber_types.h │ │ ├── ldap.h │ │ ├── ldap_avl.h │ │ ├── ldap_cdefs.h │ │ ├── ldap_config.h │ │ ├── ldap_defaults.h │ │ ├── ldap_features.h │ │ ├── ldap_int_thread.h │ │ ├── ldap_log.h │ │ ├── ldap_pvt.h │ │ ├── ldap_pvt_thread.h │ │ ├── ldap_pvt_uc.h │ │ ├── ldap_queue.h │ │ ├── ldap_schema.h │ │ ├── ldap_utf8.h │ │ ├── ldif.h │ │ ├── lutil.h │ │ ├── lutil_lockf.h │ │ ├── openldap.h │ │ ├── portable.h │ │ └── sasl.h │ ├── liblber │ │ ├── bprint.c │ │ ├── decode.c │ │ ├── encode.c │ │ ├── io.c │ │ ├── lber-int.h │ │ ├── memory.c │ │ ├── nt_err.c │ │ ├── options.c │ │ └── sockbuf.c │ └── libldap │ │ ├── abandon.c │ │ ├── add.c │ │ ├── avl.c │ │ ├── bind.c │ │ ├── charray.c │ │ ├── compare.c │ │ ├── controls.c │ │ ├── cyrus.c │ │ ├── delete.c │ │ ├── error.c │ │ ├── extended.c │ │ ├── fetch.c │ │ ├── filter.c │ │ ├── free.c │ │ ├── getattr.c │ │ ├── getdn.c │ │ ├── getentry.c │ │ ├── getvalues.c │ │ ├── init.c │ │ ├── lbase64.c │ │ ├── ldap-int.h │ │ ├── ldap-tls.h │ │ ├── ldap_thr_debug.h │ │ ├── ldif.c │ │ ├── modify.c │ │ ├── modrdn.c │ │ ├── open.c │ │ ├── options.c │ │ ├── os-ip.c │ │ ├── pagectrl.c │ │ ├── print.c │ │ ├── references.c │ │ ├── request.c │ │ ├── result.c │ │ ├── sasl.c │ │ ├── sasl_w.c │ │ ├── schema.c │ │ ├── search.c │ │ ├── sortctrl.c │ │ ├── string.c │ │ ├── tavl.c │ │ ├── thr_nt.c │ │ ├── tls2.c │ │ ├── tls_w.c │ │ ├── unbind.c │ │ ├── url.c │ │ ├── utf-8.c │ │ ├── util-int.c │ │ └── vlvctrl.c ├── mfuuid │ ├── Makefile.in │ ├── mfplay.c │ └── mfuuid.c ├── mpg123 │ ├── AUTHORS │ ├── LICENSE │ ├── Makefile.in │ ├── config.h │ └── src │ │ ├── common │ │ ├── abi_align.h │ │ ├── debug.h │ │ ├── sample.h │ │ ├── swap_bytes_impl.h │ │ └── true.h │ │ ├── compat │ │ ├── compat.c │ │ ├── compat.h │ │ ├── compat_str.c │ │ └── wpathconv.h │ │ ├── include │ │ ├── fmt123.h │ │ └── mpg123.h │ │ ├── libmpg123 │ │ ├── costabs.h │ │ ├── dct64.c │ │ ├── decode.h │ │ ├── dither.c │ │ ├── dither.h │ │ ├── dither_impl.h │ │ ├── equalizer.c │ │ ├── format.c │ │ ├── frame.c │ │ ├── frame.h │ │ ├── gapless.h │ │ ├── getbits.h │ │ ├── getcpuflags.h │ │ ├── huffman.h │ │ ├── icy.c │ │ ├── icy.h │ │ ├── icy2utf8.c │ │ ├── icy2utf8.h │ │ ├── id3.c │ │ ├── id3.h │ │ ├── index.c │ │ ├── index.h │ │ ├── l12tabs.h │ │ ├── l2tables.h │ │ ├── l3bandgain.h │ │ ├── l3tabs.h │ │ ├── layer1.c │ │ ├── layer2.c │ │ ├── layer3.c │ │ ├── lfs_wrap.c │ │ ├── lfs_wrap.h │ │ ├── libmpg123.c │ │ ├── mpeghead.h │ │ ├── mpg123lib_intern.h │ │ ├── newhuffman.h │ │ ├── ntom.c │ │ ├── optimize.c │ │ ├── optimize.h │ │ ├── parse.c │ │ ├── parse.h │ │ ├── reader.h │ │ ├── readers.c │ │ ├── stringbuf.c │ │ ├── synth.c │ │ ├── synth.h │ │ ├── synth_8bit.c │ │ ├── synth_8bit.h │ │ ├── synth_mono.h │ │ ├── synth_ntom.h │ │ ├── synth_real.c │ │ ├── synth_s32.c │ │ ├── synths.h │ │ └── tabinit.c │ │ └── version.h ├── musl │ ├── COPYRIGHT │ ├── Makefile.in │ ├── VERSION │ └── src │ │ ├── internal │ │ ├── features.h │ │ └── libm.h │ │ └── math │ │ ├── __cos.c │ │ ├── __cosdf.c │ │ ├── __expo2.c │ │ ├── __expo2f.c │ │ ├── __fpclassify.c │ │ ├── __fpclassifyf.c │ │ ├── __math_divzero.c │ │ ├── __math_divzerof.c │ │ ├── __math_invalid.c │ │ ├── __math_invalidf.c │ │ ├── __rem_pio2.c │ │ ├── __rem_pio2_large.c │ │ ├── __rem_pio2f.c │ │ ├── __sin.c │ │ ├── __sindf.c │ │ ├── __tan.c │ │ ├── __tandf.c │ │ ├── acos.c │ │ ├── acosf.c │ │ ├── acosh.c │ │ ├── acoshf.c │ │ ├── asin.c │ │ ├── asinf.c │ │ ├── asinh.c │ │ ├── asinhf.c │ │ ├── atan.c │ │ ├── atan2.c │ │ ├── atan2f.c │ │ ├── atanf.c │ │ ├── atanh.c │ │ ├── atanhf.c │ │ ├── cbrt.c │ │ ├── cbrtf.c │ │ ├── ceil.c │ │ ├── ceilf.c │ │ ├── copysign.c │ │ ├── copysignf.c │ │ ├── cos.c │ │ ├── cosf.c │ │ ├── cosh.c │ │ ├── coshf.c │ │ ├── erf.c │ │ ├── erff.c │ │ ├── exp.c │ │ ├── exp2.c │ │ ├── exp2f.c │ │ ├── exp2f_data.c │ │ ├── exp2f_data.h │ │ ├── exp_data.c │ │ ├── exp_data.h │ │ ├── expf.c │ │ ├── expm1.c │ │ ├── expm1f.c │ │ ├── fabs.c │ │ ├── fabsf.c │ │ ├── fdim.c │ │ ├── fdimf.c │ │ ├── floor.c │ │ ├── floorf.c │ │ ├── fma.c │ │ ├── fmaf.c │ │ ├── fmax.c │ │ ├── fmaxf.c │ │ ├── fmin.c │ │ ├── fminf.c │ │ ├── fmod.c │ │ ├── fmodf.c │ │ ├── frexp.c │ │ ├── frexpf.c │ │ ├── hypot.c │ │ ├── hypotf.c │ │ ├── ilogb.c │ │ ├── ilogbf.c │ │ ├── j0.c │ │ ├── j1.c │ │ ├── jn.c │ │ ├── ldexp.c │ │ ├── lgamma.c │ │ ├── lgamma_r.c │ │ ├── lgammaf.c │ │ ├── lgammaf_r.c │ │ ├── log.c │ │ ├── log10.c │ │ ├── log10f.c │ │ ├── log1p.c │ │ ├── log1pf.c │ │ ├── log2.c │ │ ├── log2_data.c │ │ ├── log2_data.h │ │ ├── log2f.c │ │ ├── log2f_data.c │ │ ├── log2f_data.h │ │ ├── log_data.c │ │ ├── log_data.h │ │ ├── logb.c │ │ ├── logbf.c │ │ ├── logf.c │ │ ├── logf_data.c │ │ ├── logf_data.h │ │ ├── modf.c │ │ ├── modff.c │ │ ├── nan.c │ │ ├── nanf.c │ │ ├── nextafter.c │ │ ├── nextafterf.c │ │ ├── nexttoward.c │ │ ├── nexttowardf.c │ │ ├── pow.c │ │ ├── pow_data.c │ │ ├── pow_data.h │ │ ├── powf.c │ │ ├── powf_data.c │ │ ├── powf_data.h │ │ ├── remainder.c │ │ ├── remainderf.c │ │ ├── remquo.c │ │ ├── remquof.c │ │ ├── rint.c │ │ ├── rintf.c │ │ ├── round.c │ │ ├── roundf.c │ │ ├── scalbn.c │ │ ├── scalbnf.c │ │ ├── signgam.c │ │ ├── sin.c │ │ ├── sincos.c │ │ ├── sincosf.c │ │ ├── sinf.c │ │ ├── sinh.c │ │ ├── sinhf.c │ │ ├── sqrt.c │ │ ├── sqrt_data.c │ │ ├── sqrt_data.h │ │ ├── sqrtf.c │ │ ├── tan.c │ │ ├── tanf.c │ │ ├── tanh.c │ │ ├── tanhf.c │ │ ├── tgamma.c │ │ ├── tgammaf.c │ │ ├── trunc.c │ │ └── truncf.c ├── png │ ├── AUTHORS │ ├── LICENSE │ ├── Makefile.in │ ├── png.c │ ├── png.h │ ├── pngconf.h │ ├── pngdebug.h │ ├── pngerror.c │ ├── pngget.c │ ├── pnginfo.h │ ├── pnglibconf.h │ ├── pngmem.c │ ├── pngpriv.h │ ├── pngread.c │ ├── pngrio.c │ ├── pngrtran.c │ ├── pngrutil.c │ ├── pngset.c │ ├── pngstruct.h │ ├── pngtrans.c │ ├── pngwio.c │ ├── pngwrite.c │ ├── pngwtran.c │ └── pngwutil.c ├── strmbase │ ├── Makefile.in │ ├── dispatch.c │ ├── filter.c │ ├── mediatype.c │ ├── pin.c │ ├── pospass.c │ ├── renderer.c │ ├── seeking.c │ └── strmbase_private.h ├── strmiids │ ├── Makefile.in │ ├── evr.c │ └── strmiids.c ├── tiff │ ├── COPYRIGHT │ ├── Makefile.in │ └── libtiff │ │ ├── t4.h │ │ ├── tif_aux.c │ │ ├── tif_close.c │ │ ├── tif_codec.c │ │ ├── tif_compress.c │ │ ├── tif_config.h │ │ ├── tif_dir.c │ │ ├── tif_dir.h │ │ ├── tif_dirinfo.c │ │ ├── tif_dirread.c │ │ ├── tif_dirwrite.c │ │ ├── tif_dumpmode.c │ │ ├── tif_error.c │ │ ├── tif_fax3.c │ │ ├── tif_fax3.h │ │ ├── tif_fax3sm.c │ │ ├── tif_flush.c │ │ ├── tif_hash_set.c │ │ ├── tif_hash_set.h │ │ ├── tif_jpeg.c │ │ ├── tif_luv.c │ │ ├── tif_lzw.c │ │ ├── tif_next.c │ │ ├── tif_open.c │ │ ├── tif_packbits.c │ │ ├── tif_pixarlog.c │ │ ├── tif_predict.c │ │ ├── tif_predict.h │ │ ├── tif_read.c │ │ ├── tif_strip.c │ │ ├── tif_swab.c │ │ ├── tif_thunder.c │ │ ├── tif_tile.c │ │ ├── tif_warning.c │ │ ├── tif_win32.c │ │ ├── tif_write.c │ │ ├── tif_zip.c │ │ ├── tiff.h │ │ ├── tiffconf.h │ │ ├── tiffio.h │ │ ├── tiffiop.h │ │ ├── tiffvers.h │ │ └── uvcode.h ├── uuid │ ├── Makefile.in │ ├── d2d.c │ └── uuid.c ├── vkd3d │ ├── .DS_Store │ ├── AUTHORS │ ├── COPYING │ ├── Makefile.in │ ├── config.h │ ├── include │ │ ├── private │ │ │ ├── vkd3d_blob.h │ │ │ ├── vkd3d_common.h │ │ │ ├── vkd3d_debug.h │ │ │ ├── vkd3d_memory.h │ │ │ ├── vkd3d_shader_utils.h │ │ │ ├── vkd3d_utf8.h │ │ │ └── vkd3d_version.h │ │ ├── vkd3d.h │ │ ├── vkd3d_shader.h │ │ ├── vkd3d_types.h │ │ └── vulkan │ │ │ ├── GLSL.std.450.h │ │ │ └── spirv.h │ └── libs │ │ ├── vkd3d-common │ │ ├── blob.c │ │ ├── debug.c │ │ ├── error.c │ │ ├── memory.c │ │ └── utf8.c │ │ ├── vkd3d-shader │ │ ├── checksum.c │ │ ├── d3d_asm.c │ │ ├── d3dbc.c │ │ ├── dxbc.c │ │ ├── dxil.c │ │ ├── fx.c │ │ ├── glsl.c │ │ ├── hlsl.c │ │ ├── hlsl.h │ │ ├── hlsl.l │ │ ├── hlsl.y │ │ ├── hlsl_codegen.c │ │ ├── hlsl_constant_ops.c │ │ ├── ir.c │ │ ├── msl.c │ │ ├── preproc.h │ │ ├── preproc.l │ │ ├── preproc.y │ │ ├── spirv.c │ │ ├── tpf.c │ │ ├── vkd3d_shader_main.c │ │ └── vkd3d_shader_private.h │ │ └── vkd3d │ │ ├── cache.c │ │ ├── command.c │ │ ├── device.c │ │ ├── resource.c │ │ ├── state.c │ │ ├── utils.c │ │ ├── vkd3d_main.c │ │ ├── vkd3d_private.h │ │ ├── vkd3d_shaders.h │ │ └── vulkan_procs.h ├── wbemuuid │ ├── Makefile.in │ └── wbemuuid.c ├── wmcodecdspuuid │ ├── Makefile.in │ └── wmcodecdspuuid.c ├── xml2 │ ├── AUTHORS │ ├── COPYING │ ├── HTMLparser.c │ ├── HTMLtree.c │ ├── Makefile.in │ ├── SAX.c │ ├── SAX2.c │ ├── buf.c │ ├── catalog.c │ ├── chvalid.c │ ├── debugXML.c │ ├── dict.c │ ├── encoding.c │ ├── entities.c │ ├── error.c │ ├── globals.c │ ├── hash.c │ ├── include │ │ ├── libxml │ │ │ ├── HTMLparser.h │ │ │ ├── HTMLtree.h │ │ │ ├── SAX.h │ │ │ ├── SAX2.h │ │ │ ├── catalog.h │ │ │ ├── chvalid.h │ │ │ ├── debugXML.h │ │ │ ├── dict.h │ │ │ ├── encoding.h │ │ │ ├── entities.h │ │ │ ├── globals.h │ │ │ ├── hash.h │ │ │ ├── list.h │ │ │ ├── nanoftp.h │ │ │ ├── nanohttp.h │ │ │ ├── parser.h │ │ │ ├── parserInternals.h │ │ │ ├── pattern.h │ │ │ ├── relaxng.h │ │ │ ├── schemasInternals.h │ │ │ ├── threads.h │ │ │ ├── tree.h │ │ │ ├── uri.h │ │ │ ├── valid.h │ │ │ ├── xinclude.h │ │ │ ├── xmlIO.h │ │ │ ├── xmlautomata.h │ │ │ ├── xmlerror.h │ │ │ ├── xmlexports.h │ │ │ ├── xmlmemory.h │ │ │ ├── xmlreader.h │ │ │ ├── xmlregexp.h │ │ │ ├── xmlsave.h │ │ │ ├── xmlschemas.h │ │ │ ├── xmlschemastypes.h │ │ │ ├── xmlstring.h │ │ │ ├── xmlunicode.h │ │ │ ├── xmlversion.h │ │ │ ├── xpath.h │ │ │ ├── xpathInternals.h │ │ │ └── xpointer.h │ │ ├── private │ │ │ ├── buf.h │ │ │ ├── dict.h │ │ │ ├── enc.h │ │ │ ├── entities.h │ │ │ ├── error.h │ │ │ ├── globals.h │ │ │ ├── html.h │ │ │ ├── io.h │ │ │ ├── memory.h │ │ │ ├── parser.h │ │ │ ├── regexp.h │ │ │ ├── save.h │ │ │ ├── string.h │ │ │ ├── threads.h │ │ │ ├── tree.h │ │ │ ├── xinclude.h │ │ │ └── xpath.h │ │ └── win32config.h │ ├── libxml.h │ ├── list.c │ ├── parser.c │ ├── parserInternals.c │ ├── pattern.c │ ├── relaxng.c │ ├── threads.c │ ├── timsort.h │ ├── tree.c │ ├── uri.c │ ├── valid.c │ ├── xinclude.c │ ├── xmlIO.c │ ├── xmlmemory.c │ ├── xmlreader.c │ ├── xmlregexp.c │ ├── xmlsave.c │ ├── xmlschemas.c │ ├── xmlschemastypes.c │ ├── xmlstring.c │ ├── xmlunicode.c │ ├── xpath.c │ └── xpointer.c ├── xslt │ ├── AUTHORS │ ├── COPYING │ ├── Makefile.in │ └── libxslt │ │ ├── attributes.c │ │ ├── attributes.h │ │ ├── attrvt.c │ │ ├── documents.c │ │ ├── documents.h │ │ ├── extensions.c │ │ ├── extensions.h │ │ ├── extra.c │ │ ├── extra.h │ │ ├── functions.c │ │ ├── functions.h │ │ ├── imports.c │ │ ├── imports.h │ │ ├── keys.c │ │ ├── keys.h │ │ ├── libxslt.h │ │ ├── namespaces.c │ │ ├── namespaces.h │ │ ├── numbers.c │ │ ├── numbersInternals.h │ │ ├── pattern.c │ │ ├── pattern.h │ │ ├── preproc.c │ │ ├── preproc.h │ │ ├── security.c │ │ ├── security.h │ │ ├── templates.c │ │ ├── templates.h │ │ ├── transform.c │ │ ├── transform.h │ │ ├── trio.h │ │ ├── triodef.h │ │ ├── variables.c │ │ ├── variables.h │ │ ├── win32config.h │ │ ├── xslt.c │ │ ├── xslt.h │ │ ├── xsltInternals.h │ │ ├── xsltconfig.h │ │ ├── xsltexports.h │ │ ├── xsltlocale.c │ │ ├── xsltlocale.h │ │ ├── xsltutils.c │ │ └── xsltutils.h └── zlib │ ├── LICENSE │ ├── Makefile.in │ ├── adler32.c │ ├── crc32.c │ ├── crc32.h │ ├── deflate.c │ ├── deflate.h │ ├── inffast.c │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.c │ ├── inflate.h │ ├── inftrees.c │ ├── inftrees.h │ ├── trees.c │ ├── trees.h │ ├── zconf.h │ ├── zlib.h │ ├── zutil.c │ └── zutil.h ├── loader ├── Makefile.in ├── main.c ├── main.h ├── preloader.c ├── preloader_mac.c ├── wine.de.UTF-8.man.in ├── wine.desktop ├── wine.fr.UTF-8.man.in ├── wine.inf.in ├── wine.man.in ├── wine.pl.UTF-8.man.in └── wine_info.plist.in ├── nls ├── Makefile.in ├── c_037.nls ├── c_10000.nls ├── c_10001.nls ├── c_10002.nls ├── c_10003.nls ├── c_10004.nls ├── c_10005.nls ├── c_10006.nls ├── c_10007.nls ├── c_10008.nls ├── c_10010.nls ├── c_10017.nls ├── c_10021.nls ├── c_10029.nls ├── c_10079.nls ├── c_10081.nls ├── c_10082.nls ├── c_1026.nls ├── c_1250.nls ├── c_1251.nls ├── c_1252.nls ├── c_1253.nls ├── c_1254.nls ├── c_1255.nls ├── c_1256.nls ├── c_1257.nls ├── c_1258.nls ├── c_1361.nls ├── c_20127.nls ├── c_20866.nls ├── c_20932.nls ├── c_20949.nls ├── c_21866.nls ├── c_28591.nls ├── c_28592.nls ├── c_28593.nls ├── c_28594.nls ├── c_28595.nls ├── c_28596.nls ├── c_28597.nls ├── c_28598.nls ├── c_28599.nls ├── c_28603.nls ├── c_28605.nls ├── c_437.nls ├── c_500.nls ├── c_708.nls ├── c_720.nls ├── c_737.nls ├── c_775.nls ├── c_850.nls ├── c_852.nls ├── c_855.nls ├── c_857.nls ├── c_860.nls ├── c_861.nls ├── c_862.nls ├── c_863.nls ├── c_864.nls ├── c_865.nls ├── c_866.nls ├── c_869.nls ├── c_874.nls ├── c_875.nls ├── c_932.nls ├── c_936.nls ├── c_949.nls ├── c_950.nls ├── l_intl.nls ├── locale.nls ├── normidna.nls ├── normnfc.nls ├── normnfd.nls ├── normnfkc.nls ├── normnfkd.nls └── sortdefault.nls ├── po ├── Makefile.in ├── ar.po ├── ast.po ├── bg.po ├── ca.po ├── cs.po ├── da.po ├── de.po ├── el.po ├── en.po ├── en_US.po ├── eo.po ├── es.po ├── fa.po ├── fi.po ├── fr.po ├── he.po ├── hi.po ├── hr.po ├── hu.po ├── it.po ├── ja.po ├── ka.po ├── ko.po ├── lt.po ├── ml.po ├── nb_NO.po ├── nl.po ├── or.po ├── pa.po ├── pl.po ├── pt_BR.po ├── pt_PT.po ├── rm.po ├── ro.po ├── ru.po ├── si.po ├── sk.po ├── sl.po ├── sr_RS@cyrillic.po ├── sr_RS@latin.po ├── sv.po ├── ta.po ├── te.po ├── th.po ├── tr.po ├── uk.po ├── wa.po ├── wine.pot ├── zh_CN.po └── zh_TW.po ├── programs ├── .DS_Store ├── arp │ ├── Makefile.in │ └── main.c ├── aspnet_regiis │ ├── Makefile.in │ └── main.c ├── attrib │ ├── Makefile.in │ ├── attrib.c │ ├── attrib.h │ └── attrib.rc ├── cabarc │ ├── Makefile.in │ └── cabarc.c ├── cacls │ ├── Makefile.in │ └── cacls_main.c ├── certutil │ ├── Makefile.in │ └── main.c ├── chcp.com │ ├── Makefile.in │ ├── chcp.rc │ ├── main.c │ └── resource.h ├── clock │ ├── Makefile.in │ ├── clock.manifest │ ├── clock.rc │ ├── clock_res.h │ ├── main.c │ ├── main.h │ ├── winclock.c │ └── winclock.h ├── cmd │ ├── Makefile.in │ ├── batch.c │ ├── builtins.c │ ├── cmd.rc │ ├── directory.c │ ├── tests │ │ ├── Makefile.in │ │ ├── batch.c │ │ ├── directory.c │ │ ├── rsrc.rc │ │ ├── test_builtins.bat │ │ ├── test_builtins.bat.exp │ │ ├── test_builtins.cmd │ │ ├── test_builtins.cmd.exp │ │ ├── test_cmdline.cmd │ │ └── test_cmdline.cmd.exp │ ├── wcmd.h │ ├── wcmd.ico │ ├── wcmd.svg │ └── wcmdmain.c ├── conhost │ ├── Makefile.in │ ├── conhost.c │ ├── conhost.h │ ├── conhost.manifest │ ├── conhost.rc │ ├── tests │ │ ├── Makefile.in │ │ └── tty.c │ └── window.c ├── control │ ├── Makefile.in │ ├── control.c │ ├── control.manifest │ └── control.rc ├── cscript │ └── Makefile.in ├── dism │ ├── Makefile.in │ ├── dism.c │ └── version.rc ├── dllhost │ ├── Makefile.in │ └── dllhost.c ├── dplaysvr │ ├── Makefile.in │ ├── main.c │ └── version.rc ├── dpnsvr │ ├── Makefile.in │ ├── main.c │ └── version.rc ├── dpvsetup │ ├── Makefile.in │ ├── main.c │ └── version.rc ├── dxdiag │ ├── Makefile.in │ ├── dxdiag.manifest │ ├── dxdiag.rc │ ├── dxdiag_private.h │ ├── information.c │ ├── main.c │ └── output.c ├── eject │ ├── Makefile.in │ └── eject.c ├── expand │ ├── Makefile.in │ └── expand.c ├── explorer │ ├── Makefile.in │ ├── appbar.c │ ├── desktop.c │ ├── explorer.c │ ├── explorer.manifest │ ├── explorer.rc │ ├── explorer_private.h │ ├── resource.h │ ├── startmenu.c │ ├── systray.c │ └── tests │ │ ├── Makefile.in │ │ └── explorer.c ├── extrac32 │ ├── Makefile.in │ ├── extrac32.c │ ├── extrac32.manifest │ └── extrac32.rc ├── fc │ ├── Makefile.in │ ├── fc.c │ └── tests │ │ ├── Makefile.in │ │ └── fc.c ├── find │ ├── Makefile.in │ ├── find.c │ ├── find.rc │ ├── resources.h │ └── tests │ │ ├── Makefile.in │ │ └── find.c ├── findstr │ ├── Makefile.in │ ├── findstr.h │ ├── findstr.rc │ ├── main.c │ └── tests │ │ ├── Makefile.in │ │ └── findstr.c ├── fsutil │ ├── Makefile.in │ ├── fsutil.mc │ ├── main.c │ ├── resources.h │ └── tests │ │ ├── Makefile.in │ │ └── fsutil.c ├── hh │ ├── Makefile.in │ ├── hh.manifest │ ├── hh.rc │ ├── main.c │ ├── winhelp.ico │ └── winhelp.svg ├── hostname │ ├── Makefile.in │ ├── hostname.c │ ├── hostname.h │ └── hostname.rc ├── icacls │ ├── Makefile.in │ └── icacls_main.c ├── icinfo │ ├── Makefile.in │ └── icinfo.c ├── iexplore │ ├── Makefile.in │ ├── iexplore.ico │ ├── iexplore.inf │ ├── iexplore.rc │ ├── iexplore.svg │ └── main.c ├── ipconfig │ ├── Makefile.in │ ├── ipconfig.c │ ├── ipconfig.h │ └── ipconfig.rc ├── klist │ ├── Makefile.in │ ├── klist.rc │ ├── main.c │ └── resources.h ├── lodctr │ ├── Makefile.in │ └── lodctr_main.c ├── mofcomp │ ├── Makefile.in │ └── mofcomp.c ├── mshta │ ├── Makefile.in │ └── main.c ├── msidb │ ├── Makefile.in │ └── main.c ├── msiexec │ ├── Makefile.in │ ├── msiexec.c │ ├── msiexec.ico │ ├── msiexec.man.in │ ├── msiexec.manifest │ ├── msiexec.svg │ ├── msiexec_internal.h │ ├── rsrc.rc │ └── service.c ├── msinfo32 │ ├── Makefile.in │ ├── main.c │ ├── msinfo32.manifest │ ├── msinfo32.rc │ └── resource.h ├── net │ ├── Makefile.in │ ├── net.c │ ├── net.rc │ ├── resources.h │ └── tests │ │ ├── Makefile.in │ │ └── net.c ├── netsh │ ├── Makefile.in │ └── netsh.c ├── netstat │ ├── Makefile.in │ ├── netstat.c │ ├── netstat.h │ └── netstat.rc ├── ngen │ ├── Makefile.in │ ├── ngen_main.c │ └── version.rc ├── notepad │ ├── Makefile.in │ ├── dialog.c │ ├── dialog.h │ ├── main.c │ ├── main.h │ ├── notepad.ico │ ├── notepad.man.in │ ├── notepad.manifest │ ├── notepad.rc │ ├── notepad.svg │ └── notepad_res.h ├── oleview │ ├── Makefile.in │ ├── details.c │ ├── interface.c │ ├── main.h │ ├── oleview.c │ ├── oleview.manifest │ ├── oleview.rc │ ├── pane.c │ ├── resource.h │ ├── toolbar.bmp │ ├── tree.c │ └── typelib.c ├── ping │ ├── Makefile.in │ └── ping_main.c ├── plugplay │ ├── Makefile.in │ ├── main.c │ └── plugplay.idl ├── pnputil │ ├── Makefile.in │ └── main.c ├── powershell │ ├── Makefile.in │ └── main.c ├── presentationfontcache │ ├── Makefile.in │ └── main.c ├── progman │ ├── Makefile.in │ ├── dialog.c │ ├── group.c │ ├── grpfile.c │ ├── main.c │ ├── progman.h │ ├── progman.rc │ ├── program.c │ └── string.c ├── reg │ ├── Makefile.in │ ├── add.c │ ├── copy.c │ ├── delete.c │ ├── export.c │ ├── import.c │ ├── query.c │ ├── reg.c │ ├── reg.h │ ├── reg.rc │ ├── resource.h │ └── tests │ │ ├── Makefile.in │ │ ├── add.c │ │ ├── copy.c │ │ ├── delete.c │ │ ├── export.c │ │ ├── import.c │ │ ├── query.c │ │ └── reg_test.h ├── regasm │ ├── Makefile.in │ └── main.c ├── regedit │ ├── Makefile.in │ ├── about.c │ ├── bin.ico │ ├── childwnd.c │ ├── computer.ico │ ├── edit.c │ ├── folder.ico │ ├── folderopen.ico │ ├── framewnd.c │ ├── hexedit.c │ ├── listview.c │ ├── main.c │ ├── main.h │ ├── regedit.c │ ├── regedit.ico │ ├── regedit.man.in │ ├── regedit.manifest │ ├── regedit.rc │ ├── regedit.svg │ ├── regproc.c │ ├── resource.h │ ├── string.ico │ ├── tests │ │ ├── Makefile.in │ │ └── regedit.c │ └── treeview.c ├── regini │ ├── Makefile.in │ └── main.c ├── regsvcs │ ├── Makefile.in │ └── main.c ├── regsvr32 │ ├── Makefile.in │ ├── regsvr32.c │ ├── regsvr32.h │ ├── regsvr32.man.in │ ├── regsvr32.manifest │ └── regsvr32.rc ├── robocopy │ ├── Makefile.in │ ├── main.c │ └── robocopy.rc ├── rpcss │ ├── Makefile.in │ ├── epm.idl │ ├── epmp.c │ ├── irot.idl │ ├── irotp.c │ ├── irpcss.idl │ └── rpcss_main.c ├── rundll.exe16 │ ├── Makefile.in │ └── rundll.c ├── rundll32 │ ├── Makefile.in │ └── rundll32.c ├── sc │ ├── Makefile.in │ ├── sc.c │ └── tests │ │ ├── Makefile.in │ │ └── sc.c ├── schtasks │ ├── Makefile.in │ ├── schtasks.c │ └── tests │ │ ├── Makefile.in │ │ └── schtasks.c ├── sdbinst │ ├── Makefile.in │ └── main.c ├── secedit │ ├── Makefile.in │ └── main.c ├── servicemodelreg │ ├── Makefile.in │ └── main.c ├── services │ ├── Makefile.in │ ├── rpc.c │ ├── services.c │ ├── services.h │ ├── svcctl.idl │ ├── tests │ │ ├── Makefile.in │ │ └── service.c │ └── utils.c ├── setx │ ├── Makefile.in │ ├── main.c │ └── version.rc ├── shutdown │ ├── Makefile.in │ └── main.c ├── sort │ ├── Makefile.in │ └── main.c ├── spoolsv │ ├── Makefile.in │ └── main.c ├── start │ ├── Makefile.in │ ├── resources.h │ ├── start.c │ └── start.rc ├── subst │ ├── Makefile.in │ └── main.c ├── svchost │ ├── Makefile.in │ └── svchost.c ├── systeminfo │ ├── Makefile.in │ └── main.c ├── taskkill │ ├── Makefile.in │ ├── taskkill.c │ ├── taskkill.h │ └── taskkill.rc ├── tasklist │ ├── Makefile.in │ ├── tasklist.c │ ├── tasklist.h │ ├── tasklist.rc │ └── tests │ │ ├── Makefile.in │ │ └── tasklist.c ├── taskmgr │ ├── Makefile.in │ ├── about.c │ ├── affinity.c │ ├── applpage.c │ ├── column.c │ ├── column.h │ ├── dbgchnl.c │ ├── debug.c │ ├── endproc.c │ ├── graph.c │ ├── graphctl.c │ ├── graphctl.h │ ├── optnmenu.c │ ├── perfdata.c │ ├── perfdata.h │ ├── perfpage.c │ ├── priority.c │ ├── proclist.c │ ├── procpage.c │ ├── resource.h │ ├── run.c │ ├── taskmgr.c │ ├── taskmgr.h │ ├── taskmgr.ico │ ├── taskmgr.manifest │ ├── taskmgr.rc │ ├── taskmgr.svg │ ├── trayicon.bmp │ ├── trayicon.c │ ├── traymask.bmp │ ├── window.ico │ └── windowsm.ico ├── termsv │ ├── Makefile.in │ └── main.c ├── uninstaller │ ├── Makefile.in │ ├── main.c │ ├── resource.h │ ├── uninstaller.manifest │ └── uninstaller.rc ├── unlodctr │ ├── Makefile.in │ └── unlodctr_main.c ├── view │ ├── Makefile.in │ ├── resource.h │ ├── view.c │ ├── view.manifest │ └── view.rc ├── wevtutil │ ├── Makefile.in │ └── main.c ├── where │ ├── Makefile.in │ └── main.c ├── whoami │ ├── Makefile.in │ └── main.c ├── wineboot │ ├── Makefile.in │ ├── resource.h │ ├── shutdown.c │ ├── wineboot.c │ ├── wineboot.man.in │ ├── wineboot.manifest │ └── wineboot.rc ├── winebrowser │ ├── Makefile.in │ └── main.c ├── winecfg │ ├── Makefile.in │ ├── about.c │ ├── appdefaults.c │ ├── audio.c │ ├── drive.c │ ├── driveui.c │ ├── idw_testsound.wav │ ├── libraries.c │ ├── logo.ico │ ├── logo.svg │ ├── main.c │ ├── resource.h │ ├── theme.c │ ├── winecfg.c │ ├── winecfg.h │ ├── winecfg.ico │ ├── winecfg.man.in │ ├── winecfg.manifest │ ├── winecfg.rc │ ├── winecfg.svg │ └── x11drvdlg.c ├── wineconsole │ ├── Makefile.in │ ├── wineconsole.c │ ├── wineconsole.man.in │ ├── wineconsole.rc │ └── wineconsole_res.h ├── winedbg │ ├── Makefile.in │ ├── README │ ├── be_arm.c │ ├── be_arm64.c │ ├── be_cpu.h │ ├── be_i386.c │ ├── be_x86_64.c │ ├── break.c │ ├── crashdlg.c │ ├── dbg.y │ ├── debug.l │ ├── debugger.h │ ├── display.c │ ├── distversion.h │ ├── expr.c │ ├── expr.h │ ├── gdbproxy.c │ ├── info.c │ ├── intvar.h │ ├── memory.c │ ├── resource.h │ ├── source.c │ ├── stack.c │ ├── symbol.c │ ├── tgt_active.c │ ├── tgt_minidump.c │ ├── tgt_module.c │ ├── types.c │ ├── winedbg.c │ ├── winedbg.man.in │ ├── winedbg.manifest │ └── winedbg.rc ├── winedevice │ ├── Makefile.in │ └── device.c ├── winefile │ ├── Makefile.in │ ├── drivebar.bmp │ ├── images.bmp │ ├── resource.h │ ├── toolbar.bmp │ ├── winefile.c │ ├── winefile.h │ ├── winefile.ico │ ├── winefile.man.in │ ├── winefile.manifest │ ├── winefile.rc │ └── winefile.svg ├── winemenubuilder │ ├── Makefile.in │ ├── cxmenu.c │ ├── cxmenu.h │ └── winemenubuilder.c ├── winemine │ ├── Makefile.in │ ├── dialog.c │ ├── faces.bmp │ ├── leds.bmp │ ├── main.c │ ├── main.h │ ├── mines.bmp │ ├── resource.h │ ├── winemine.ico │ ├── winemine.man.in │ ├── winemine.manifest │ ├── winemine.rc │ └── winemine.svg ├── winemsibuilder │ ├── Makefile.in │ └── main.c ├── winepath │ ├── Makefile.in │ ├── winepath.c │ └── winepath.man.in ├── winetest │ ├── Makefile.in │ ├── gui.c │ ├── main.c │ ├── resource.h │ ├── send.c │ ├── util.c │ ├── winetest.h │ ├── winetest.ico │ ├── winetest.manifest │ ├── winetest.rc │ └── winetest.svg ├── winevdm │ ├── Makefile.in │ ├── winevdm.c │ ├── winevdm.manifest │ └── winevdm.rc ├── winhelp.exe16 │ ├── Makefile.in │ └── winhelp.c ├── winhlp32 │ ├── Makefile.in │ ├── callback.c │ ├── hlpfile.c │ ├── hlpfile.h │ ├── macro.c │ ├── macro.h │ ├── macro.lex.l │ ├── string.c │ ├── winhelp.c │ ├── winhelp.h │ ├── winhelp.ico │ ├── winhelp.svg │ ├── winhelp_res.h │ └── winhlp32.rc ├── winmgmt │ ├── Makefile.in │ └── main.c ├── winoldap.mod16 │ ├── Makefile.in │ └── winoldap.c ├── winver │ ├── Makefile.in │ ├── version.rc │ ├── winver.c │ └── winver.manifest ├── wmic │ ├── Makefile.in │ ├── main.c │ ├── wmic.h │ └── wmic.rc ├── wmplayer │ ├── Makefile.in │ ├── main.c │ └── version.rc ├── wordpad │ ├── Makefile.in │ ├── formatbar.bmp │ ├── formatbar.svg │ ├── olecallback.c │ ├── print.c │ ├── registry.c │ ├── toolbar.bmp │ ├── toolbar.svg │ ├── wordpad.c │ ├── wordpad.h │ ├── wordpad.ico │ ├── wordpad.manifest │ ├── wordpad.rc │ ├── wordpad.svg │ ├── zoom.cur │ └── zoom.svg ├── write │ ├── Makefile.in │ ├── resources.h │ ├── write.c │ └── write.rc ├── wscript │ ├── Makefile.in │ ├── arguments.c │ ├── host.c │ ├── ihost.idl │ ├── ihost_dispid.h │ ├── main.c │ ├── tests │ │ ├── Makefile.in │ │ ├── rsrc.rc │ │ ├── run.c │ │ ├── run.js │ │ └── run.vbs │ └── wscript.h ├── wuauserv │ ├── Makefile.in │ └── main.c ├── wusa │ ├── Makefile.in │ ├── main.c │ ├── manifest.c │ └── wusa.h └── xcopy │ ├── Makefile.in │ ├── tests │ ├── Makefile.in │ └── xcopy.c │ ├── xcopy.c │ ├── xcopy.h │ └── xcopy.rc ├── server ├── Makefile.in ├── async.c ├── atom.c ├── change.c ├── class.c ├── clipboard.c ├── completion.c ├── console.c ├── debugger.c ├── device.c ├── directory.c ├── esync.c ├── esync.h ├── event.c ├── fd.c ├── file.c ├── file.h ├── handle.c ├── handle.h ├── hook.c ├── mach.c ├── mailslot.c ├── main.c ├── mapping.c ├── msync.c ├── msync.h ├── mutex.c ├── named_pipe.c ├── object.c ├── object.h ├── process.c ├── process.h ├── procfs.c ├── protocol.def ├── ptrace.c ├── queue.c ├── region.c ├── registry.c ├── request.c ├── request.h ├── request_handlers.h ├── request_trace.h ├── security.h ├── semaphore.c ├── serial.c ├── signal.c ├── sock.c ├── symlink.c ├── thread.c ├── thread.h ├── timer.c ├── token.c ├── trace.c ├── unicode.c ├── unicode.h ├── user.c ├── user.h ├── window.c ├── wineserver.de.UTF-8.man.in ├── wineserver.fr.UTF-8.man.in ├── wineserver.man.in └── winstation.c └── tools ├── .DS_Store ├── Makefile.in ├── buildimage ├── config.guess ├── config.sub ├── examine-relay ├── findfunc ├── gitlab ├── build-clang ├── build-linux ├── build-mac ├── build.yml ├── image.docker ├── image.yml ├── release.yml └── test.yml ├── install-sh ├── make_announce ├── make_makefiles ├── make_requests ├── make_specfiles ├── make_unicode ├── make_xftmpl.c ├── makedep.c ├── runtest ├── sfnt2fon ├── Makefile.in └── sfnt2fon.c ├── tools.h ├── widl ├── Makefile.in ├── attribute.c ├── client.c ├── expr.c ├── expr.h ├── hash.c ├── hash.h ├── header.c ├── header.h ├── parser.h ├── parser.l ├── parser.y ├── proxy.c ├── register.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.man.in ├── widltypes.h ├── write_msft.c └── write_sltg.c ├── winapi ├── c_function.pm ├── c_parser.pm ├── c_type.pm ├── config.pm ├── function.pm ├── make_filter ├── make_filter_options.pm ├── make_parser.pm ├── modules.pm ├── msvcmaker ├── msvcmaker_options.pm ├── nativeapi.dat ├── nativeapi.pm ├── options.pm ├── output.pm ├── preprocessor.pm ├── setup.pm ├── tests.dat ├── tests.pm ├── type.pm ├── util.pm ├── win16.api ├── win32.api ├── winapi.pm ├── winapi_check ├── winapi_check_options.pm ├── winapi_documentation.pm ├── winapi_extract ├── winapi_extract_options.pm ├── winapi_function.pm ├── winapi_global.pm ├── winapi_local.pm ├── winapi_module_user.pm ├── winapi_parser.pm ├── winapi_test └── winapi_test_options.pm ├── wineapploader.in ├── winebuild ├── Makefile.in ├── build.h ├── import.c ├── main.c ├── parser.c ├── relay.c ├── res16.c ├── res32.c ├── spec16.c ├── spec32.c ├── utils.c └── winebuild.man.in ├── winedump ├── Makefile.in ├── README ├── debug.c ├── dos.c ├── dump.c ├── emf.c ├── emfspool.c ├── font.c ├── function_grep.pl ├── le.c ├── lib.c ├── lnk.c ├── main.c ├── mf.c ├── minidump.c ├── misc.c ├── msc.c ├── msmangle.c ├── ne.c ├── nls.c ├── output.c ├── pdb.c ├── pe.c ├── reg.c ├── search.c ├── symbol.c ├── tlb.c ├── winedump.h └── winedump.man.in ├── winegcc ├── Makefile.in ├── utils.c ├── utils.h ├── winegcc.c └── winegcc.man.in ├── winemaker ├── Makefile.in ├── winemaker ├── winemaker.de.UTF-8.man.in ├── winemaker.fr.UTF-8.man.in └── winemaker.man.in ├── winewrapper ├── wmc ├── Makefile.in ├── lang.c ├── lang.h ├── mcl.c ├── mcy.y ├── po.c ├── utils.c ├── utils.h ├── wmc.c ├── wmc.h ├── wmc.man.in ├── wmctypes.h ├── write.c └── write.h └── wrc ├── CHANGES ├── Makefile.in ├── genres.c ├── newstruc.c ├── newstruc.h ├── parser.h ├── parser.l ├── parser.y ├── po.c ├── ppl.l ├── ppy.y ├── utils.c ├── utils.h ├── wpp.c ├── wpp_private.h ├── wrc.c ├── wrc.doc ├── wrc.h ├── wrc.man.in └── wrctypes.h /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/.DS_Store -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml 3 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/winecx.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/.idea/winecx.iml -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/.mailmap -------------------------------------------------------------------------------- /ANNOUNCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/ANNOUNCE.md -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/COPYING.LIB -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.OLD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/LICENSE.OLD -------------------------------------------------------------------------------- /MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/MAINTAINERS -------------------------------------------------------------------------------- /README.esync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/README.esync -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | Wine version 10.0 2 | -------------------------------------------------------------------------------- /aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/aclocal.m4 -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/configure.ac -------------------------------------------------------------------------------- /dlls/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/.DS_Store -------------------------------------------------------------------------------- /dlls/acledit/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/acledit/main.c -------------------------------------------------------------------------------- /dlls/aclui/aclui.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/aclui/aclui.rc -------------------------------------------------------------------------------- /dlls/adsldp/ldap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/adsldp/ldap.c -------------------------------------------------------------------------------- /dlls/adsldp/rsrc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/adsldp/rsrc.rc -------------------------------------------------------------------------------- /dlls/advapi32/lsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/advapi32/lsa.c -------------------------------------------------------------------------------- /dlls/advapi32/wmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/advapi32/wmi.c -------------------------------------------------------------------------------- /dlls/advpack/reg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/advpack/reg.c -------------------------------------------------------------------------------- /dlls/amsi/amsi.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/amsi/amsi.spec -------------------------------------------------------------------------------- /dlls/amsi/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/amsi/main.c -------------------------------------------------------------------------------- /dlls/atl/atl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/atl/atl.c -------------------------------------------------------------------------------- /dlls/atl/atl.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/atl/atl.spec -------------------------------------------------------------------------------- /dlls/atl/atl30.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/atl/atl30.c -------------------------------------------------------------------------------- /dlls/atl/atl_ax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/atl/atl_ax.c -------------------------------------------------------------------------------- /dlls/atl80/atl80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/atl80/atl80.c -------------------------------------------------------------------------------- /dlls/atl80/atl80.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/atl80/atl80.rc -------------------------------------------------------------------------------- /dlls/atl90/atl90.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/atl90/atl90.rc -------------------------------------------------------------------------------- /dlls/atmlib/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/atmlib/main.c -------------------------------------------------------------------------------- /dlls/authz/authz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/authz/authz.c -------------------------------------------------------------------------------- /dlls/avicap32/v4l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/avicap32/v4l.c -------------------------------------------------------------------------------- /dlls/avifil32/api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/avifil32/api.c -------------------------------------------------------------------------------- /dlls/avrt/avrt.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/avrt/avrt.spec -------------------------------------------------------------------------------- /dlls/avrt/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/avrt/main.c -------------------------------------------------------------------------------- /dlls/bcrypt/md2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/bcrypt/md2.c -------------------------------------------------------------------------------- /dlls/bcryptprimitives/bcryptprimitives.spec: -------------------------------------------------------------------------------- 1 | @ stdcall ProcessPrng(ptr long) 2 | -------------------------------------------------------------------------------- /dlls/bthprops.cpl/Makefile.in: -------------------------------------------------------------------------------- 1 | MODULE = bthprops.cpl 2 | IMPORTS = bluetoothapis 3 | -------------------------------------------------------------------------------- /dlls/cabinet/fci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cabinet/fci.c -------------------------------------------------------------------------------- /dlls/cabinet/fdi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cabinet/fdi.c -------------------------------------------------------------------------------- /dlls/cards/b1fv.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/b1fv.bmp -------------------------------------------------------------------------------- /dlls/cards/b2fv.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/b2fv.bmp -------------------------------------------------------------------------------- /dlls/cards/c1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/c1.bmp -------------------------------------------------------------------------------- /dlls/cards/c10.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/c10.bmp -------------------------------------------------------------------------------- /dlls/cards/c2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/c2.bmp -------------------------------------------------------------------------------- /dlls/cards/c3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/c3.bmp -------------------------------------------------------------------------------- /dlls/cards/c4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/c4.bmp -------------------------------------------------------------------------------- /dlls/cards/c5.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/c5.bmp -------------------------------------------------------------------------------- /dlls/cards/c6.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/c6.bmp -------------------------------------------------------------------------------- /dlls/cards/c7.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/c7.bmp -------------------------------------------------------------------------------- /dlls/cards/c8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/c8.bmp -------------------------------------------------------------------------------- /dlls/cards/c9.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/c9.bmp -------------------------------------------------------------------------------- /dlls/cards/cards.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/cards.c -------------------------------------------------------------------------------- /dlls/cards/cards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/cards.h -------------------------------------------------------------------------------- /dlls/cards/cards.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/cards.rc -------------------------------------------------------------------------------- /dlls/cards/cj.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/cj.bmp -------------------------------------------------------------------------------- /dlls/cards/ck.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/ck.bmp -------------------------------------------------------------------------------- /dlls/cards/cq.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/cq.bmp -------------------------------------------------------------------------------- /dlls/cards/d1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/d1.bmp -------------------------------------------------------------------------------- /dlls/cards/d10.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/d10.bmp -------------------------------------------------------------------------------- /dlls/cards/d2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/d2.bmp -------------------------------------------------------------------------------- /dlls/cards/d3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/d3.bmp -------------------------------------------------------------------------------- /dlls/cards/d4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/d4.bmp -------------------------------------------------------------------------------- /dlls/cards/d5.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/d5.bmp -------------------------------------------------------------------------------- /dlls/cards/d6.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/d6.bmp -------------------------------------------------------------------------------- /dlls/cards/d7.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/d7.bmp -------------------------------------------------------------------------------- /dlls/cards/d8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/d8.bmp -------------------------------------------------------------------------------- /dlls/cards/d9.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/d9.bmp -------------------------------------------------------------------------------- /dlls/cards/dj.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/dj.bmp -------------------------------------------------------------------------------- /dlls/cards/dk.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/dk.bmp -------------------------------------------------------------------------------- /dlls/cards/dq.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/dq.bmp -------------------------------------------------------------------------------- /dlls/cards/free.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/free.bmp -------------------------------------------------------------------------------- /dlls/cards/h1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/h1.bmp -------------------------------------------------------------------------------- /dlls/cards/h10.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/h10.bmp -------------------------------------------------------------------------------- /dlls/cards/h2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/h2.bmp -------------------------------------------------------------------------------- /dlls/cards/h3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/h3.bmp -------------------------------------------------------------------------------- /dlls/cards/h4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/h4.bmp -------------------------------------------------------------------------------- /dlls/cards/h5.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/h5.bmp -------------------------------------------------------------------------------- /dlls/cards/h6.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/h6.bmp -------------------------------------------------------------------------------- /dlls/cards/h7.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/h7.bmp -------------------------------------------------------------------------------- /dlls/cards/h8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/h8.bmp -------------------------------------------------------------------------------- /dlls/cards/h9.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/h9.bmp -------------------------------------------------------------------------------- /dlls/cards/hj.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/hj.bmp -------------------------------------------------------------------------------- /dlls/cards/hk.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/hk.bmp -------------------------------------------------------------------------------- /dlls/cards/hq.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/hq.bmp -------------------------------------------------------------------------------- /dlls/cards/s1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/s1.bmp -------------------------------------------------------------------------------- /dlls/cards/s10.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/s10.bmp -------------------------------------------------------------------------------- /dlls/cards/s2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/s2.bmp -------------------------------------------------------------------------------- /dlls/cards/s3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/s3.bmp -------------------------------------------------------------------------------- /dlls/cards/s4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/s4.bmp -------------------------------------------------------------------------------- /dlls/cards/s5.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/s5.bmp -------------------------------------------------------------------------------- /dlls/cards/s6.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/s6.bmp -------------------------------------------------------------------------------- /dlls/cards/s7.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/s7.bmp -------------------------------------------------------------------------------- /dlls/cards/s8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/s8.bmp -------------------------------------------------------------------------------- /dlls/cards/s9.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/s9.bmp -------------------------------------------------------------------------------- /dlls/cards/sj.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/sj.bmp -------------------------------------------------------------------------------- /dlls/cards/sk.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/sk.bmp -------------------------------------------------------------------------------- /dlls/cards/sq.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/sq.bmp -------------------------------------------------------------------------------- /dlls/cards/theo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/theo.bmp -------------------------------------------------------------------------------- /dlls/cards/thex.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cards/thex.bmp -------------------------------------------------------------------------------- /dlls/cdosys/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cdosys/main.c -------------------------------------------------------------------------------- /dlls/cng.sys/Makefile.in: -------------------------------------------------------------------------------- 1 | MODULE = cng.sys 2 | -------------------------------------------------------------------------------- /dlls/combase/rpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/combase/rpc.c -------------------------------------------------------------------------------- /dlls/comctl32/dpa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/comctl32/dpa.c -------------------------------------------------------------------------------- /dlls/comctl32/dsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/comctl32/dsa.c -------------------------------------------------------------------------------- /dlls/comctl32/tab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/comctl32/tab.c -------------------------------------------------------------------------------- /dlls/comsvcs/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/comsvcs/main.c -------------------------------------------------------------------------------- /dlls/connect/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/connect/main.c -------------------------------------------------------------------------------- /dlls/crypt32/cert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/crypt32/cert.c -------------------------------------------------------------------------------- /dlls/crypt32/crl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/crypt32/crl.c -------------------------------------------------------------------------------- /dlls/crypt32/ctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/crypt32/ctl.c -------------------------------------------------------------------------------- /dlls/crypt32/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/crypt32/main.c -------------------------------------------------------------------------------- /dlls/crypt32/msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/crypt32/msg.c -------------------------------------------------------------------------------- /dlls/crypt32/oid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/crypt32/oid.c -------------------------------------------------------------------------------- /dlls/crypt32/pfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/crypt32/pfx.c -------------------------------------------------------------------------------- /dlls/crypt32/sip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/crypt32/sip.c -------------------------------------------------------------------------------- /dlls/crypt32/str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/crypt32/str.c -------------------------------------------------------------------------------- /dlls/cryptsp/Makefile.in: -------------------------------------------------------------------------------- 1 | MODULE = cryptsp.dll 2 | 3 | IMPORTS = advapi32 4 | -------------------------------------------------------------------------------- /dlls/cryptui/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/cryptui/main.c -------------------------------------------------------------------------------- /dlls/d2d1/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/d2d1/bitmap.c -------------------------------------------------------------------------------- /dlls/d2d1/brush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/d2d1/brush.c -------------------------------------------------------------------------------- /dlls/d2d1/d2d1.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/d2d1/d2d1.spec -------------------------------------------------------------------------------- /dlls/d2d1/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/d2d1/device.c -------------------------------------------------------------------------------- /dlls/d2d1/effect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/d2d1/effect.c -------------------------------------------------------------------------------- /dlls/d2d1/factory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/d2d1/factory.c -------------------------------------------------------------------------------- /dlls/d2d1/layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/d2d1/layer.c -------------------------------------------------------------------------------- /dlls/d2d1/mesh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/d2d1/mesh.c -------------------------------------------------------------------------------- /dlls/d2d1/stroke.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/d2d1/stroke.c -------------------------------------------------------------------------------- /dlls/d3d10/effect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/d3d10/effect.c -------------------------------------------------------------------------------- /dlls/d3d10/shader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/d3d10/shader.c -------------------------------------------------------------------------------- /dlls/d3d11/async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/d3d11/async.c -------------------------------------------------------------------------------- /dlls/d3d11/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/d3d11/buffer.c -------------------------------------------------------------------------------- /dlls/d3d11/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/d3d11/device.c -------------------------------------------------------------------------------- /dlls/d3d11/shader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/d3d11/shader.c -------------------------------------------------------------------------------- /dlls/d3d11/state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/d3d11/state.c -------------------------------------------------------------------------------- /dlls/d3d11/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/d3d11/utils.c -------------------------------------------------------------------------------- /dlls/d3d11/view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/d3d11/view.c -------------------------------------------------------------------------------- /dlls/d3d12core/Makefile.in: -------------------------------------------------------------------------------- 1 | MODULE = d3d12core.dll 2 | -------------------------------------------------------------------------------- /dlls/d3d8/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/d3d8/buffer.c -------------------------------------------------------------------------------- /dlls/d3d8/d3d8.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/d3d8/d3d8.spec -------------------------------------------------------------------------------- /dlls/d3d8/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/d3d8/device.c -------------------------------------------------------------------------------- /dlls/d3d8/directx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/d3d8/directx.c -------------------------------------------------------------------------------- /dlls/d3d8/shader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/d3d8/shader.c -------------------------------------------------------------------------------- /dlls/d3d8/surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/d3d8/surface.c -------------------------------------------------------------------------------- /dlls/d3d8/texture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/d3d8/texture.c -------------------------------------------------------------------------------- /dlls/d3d8/volume.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/d3d8/volume.c -------------------------------------------------------------------------------- /dlls/d3d9/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/d3d9/buffer.c -------------------------------------------------------------------------------- /dlls/d3d9/d3d9.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/d3d9/d3d9.spec -------------------------------------------------------------------------------- /dlls/d3d9/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/d3d9/device.c -------------------------------------------------------------------------------- /dlls/d3d9/directx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/d3d9/directx.c -------------------------------------------------------------------------------- /dlls/d3d9/query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/d3d9/query.c -------------------------------------------------------------------------------- /dlls/d3d9/shader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/d3d9/shader.c -------------------------------------------------------------------------------- /dlls/d3d9/surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/d3d9/surface.c -------------------------------------------------------------------------------- /dlls/d3d9/texture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/d3d9/texture.c -------------------------------------------------------------------------------- /dlls/d3d9/volume.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/d3d9/volume.c -------------------------------------------------------------------------------- /dlls/d3drm/d3drm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/d3drm/d3drm.c -------------------------------------------------------------------------------- /dlls/d3drm/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/d3drm/device.c -------------------------------------------------------------------------------- /dlls/d3drm/face.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/d3drm/face.c -------------------------------------------------------------------------------- /dlls/d3drm/frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/d3drm/frame.c -------------------------------------------------------------------------------- /dlls/d3drm/light.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/d3drm/light.c -------------------------------------------------------------------------------- /dlls/d3drm/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/d3drm/math.c -------------------------------------------------------------------------------- /dlls/d3dx9_36/tests/res.vsh: -------------------------------------------------------------------------------- 1 | #define REGISTER r0 2 | vs.1.1 3 | -------------------------------------------------------------------------------- /dlls/d3dxof/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/d3dxof/main.c -------------------------------------------------------------------------------- /dlls/d3dxof/mszip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/d3dxof/mszip.c -------------------------------------------------------------------------------- /dlls/d3dxof/mszip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/d3dxof/mszip.h -------------------------------------------------------------------------------- /dlls/davclnt/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/davclnt/main.c -------------------------------------------------------------------------------- /dlls/dbghelp/coff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/dbghelp/coff.c -------------------------------------------------------------------------------- /dlls/dbghelp/msc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/dbghelp/msc.c -------------------------------------------------------------------------------- /dlls/dbghelp/path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/dbghelp/path.c -------------------------------------------------------------------------------- /dlls/dbghelp/type.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/dbghelp/type.c -------------------------------------------------------------------------------- /dlls/dcomp/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/dcomp/device.c -------------------------------------------------------------------------------- /dlls/ddraw/ddraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/ddraw/ddraw.c -------------------------------------------------------------------------------- /dlls/ddraw/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/ddraw/device.c -------------------------------------------------------------------------------- /dlls/ddraw/light.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/ddraw/light.c -------------------------------------------------------------------------------- /dlls/ddraw/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/ddraw/main.c -------------------------------------------------------------------------------- /dlls/ddraw/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/ddraw/utils.c -------------------------------------------------------------------------------- /dlls/ddrawex/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/ddrawex/main.c -------------------------------------------------------------------------------- /dlls/difxapi/Makefile.in: -------------------------------------------------------------------------------- 1 | MODULE = difxapi.dll 2 | 3 | SOURCES = \ 4 | main.c 5 | -------------------------------------------------------------------------------- /dlls/difxapi/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/difxapi/main.c -------------------------------------------------------------------------------- /dlls/dinput/ansi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/dinput/ansi.c -------------------------------------------------------------------------------- /dlls/dinput/mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/dinput/mouse.c -------------------------------------------------------------------------------- /dlls/dmime/graph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/dmime/graph.c -------------------------------------------------------------------------------- /dlls/dmime/midi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/dmime/midi.c -------------------------------------------------------------------------------- /dlls/dmusic/band.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/dmusic/band.c -------------------------------------------------------------------------------- /dlls/dmusic/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/dmusic/clock.c -------------------------------------------------------------------------------- /dlls/dmusic/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/dmusic/port.c -------------------------------------------------------------------------------- /dlls/dmusic/wave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/dmusic/wave.c -------------------------------------------------------------------------------- /dlls/dnsapi/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/dnsapi/main.c -------------------------------------------------------------------------------- /dlls/dnsapi/name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/dnsapi/name.c -------------------------------------------------------------------------------- /dlls/dnsapi/query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/dnsapi/query.c -------------------------------------------------------------------------------- /dlls/dplayx/dplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/dplayx/dplay.c -------------------------------------------------------------------------------- /dlls/dpnet/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/dpnet/client.c -------------------------------------------------------------------------------- /dlls/dpnet/peer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/dpnet/peer.c -------------------------------------------------------------------------------- /dlls/dpnet/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/dpnet/server.c -------------------------------------------------------------------------------- /dlls/dpvoice/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/dpvoice/main.c -------------------------------------------------------------------------------- /dlls/dsdmo/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/dsdmo/main.c -------------------------------------------------------------------------------- /dlls/dsound/fir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/dsound/fir.h -------------------------------------------------------------------------------- /dlls/dsound/mixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/dsound/mixer.c -------------------------------------------------------------------------------- /dlls/dsquery/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/dsquery/main.c -------------------------------------------------------------------------------- /dlls/dssenh/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/dssenh/main.c -------------------------------------------------------------------------------- /dlls/dssenh/rsrc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/dssenh/rsrc.rc -------------------------------------------------------------------------------- /dlls/dwrite/bidi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/dwrite/bidi.c -------------------------------------------------------------------------------- /dlls/dwrite/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/dwrite/font.c -------------------------------------------------------------------------------- /dlls/dwrite/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/dwrite/main.c -------------------------------------------------------------------------------- /dlls/dwrite/shape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/dwrite/shape.c -------------------------------------------------------------------------------- /dlls/dx8vb/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/dx8vb/main.c -------------------------------------------------------------------------------- /dlls/dxcore/dxcore.spec: -------------------------------------------------------------------------------- 1 | @ stdcall DXCoreCreateAdapterFactory(ptr ptr) 2 | -------------------------------------------------------------------------------- /dlls/dxcore/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/dxcore/main.c -------------------------------------------------------------------------------- /dlls/dxgi/adapter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/dxgi/adapter.c -------------------------------------------------------------------------------- /dlls/dxgi/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/dxgi/device.c -------------------------------------------------------------------------------- /dlls/dxgi/dxgi.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/dxgi/dxgi.spec -------------------------------------------------------------------------------- /dlls/dxgi/factory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/dxgi/factory.c -------------------------------------------------------------------------------- /dlls/dxgi/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/dxgi/output.c -------------------------------------------------------------------------------- /dlls/dxgi/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/dxgi/utils.c -------------------------------------------------------------------------------- /dlls/dxtrans/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/dxtrans/main.c -------------------------------------------------------------------------------- /dlls/dxva2/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/dxva2/main.c -------------------------------------------------------------------------------- /dlls/esent/Makefile.in: -------------------------------------------------------------------------------- 1 | MODULE = esent.dll 2 | 3 | EXTRADLLFLAGS = -Wb,--prefer-native 4 | -------------------------------------------------------------------------------- /dlls/evr/evr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/evr/evr.c -------------------------------------------------------------------------------- /dlls/evr/evr.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/evr/evr.spec -------------------------------------------------------------------------------- /dlls/evr/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/evr/main.c -------------------------------------------------------------------------------- /dlls/evr/mixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/evr/mixer.c -------------------------------------------------------------------------------- /dlls/evr/sample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/evr/sample.c -------------------------------------------------------------------------------- /dlls/fltlib/rsrc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/fltlib/rsrc.rc -------------------------------------------------------------------------------- /dlls/fontsub/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/fontsub/main.c -------------------------------------------------------------------------------- /dlls/gameux/rsrc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/gameux/rsrc.rc -------------------------------------------------------------------------------- /dlls/gdi32/dc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/gdi32/dc.c -------------------------------------------------------------------------------- /dlls/gdi32/emfdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/gdi32/emfdc.c -------------------------------------------------------------------------------- /dlls/gdi32/gdi32.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/gdi32/gdi32.rc -------------------------------------------------------------------------------- /dlls/gdi32/icm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/gdi32/icm.c -------------------------------------------------------------------------------- /dlls/gdi32/metadc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/gdi32/metadc.c -------------------------------------------------------------------------------- /dlls/gdi32/opengl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/gdi32/opengl.c -------------------------------------------------------------------------------- /dlls/gdi32/text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/gdi32/text.c -------------------------------------------------------------------------------- /dlls/gdiplus/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/gdiplus/font.c -------------------------------------------------------------------------------- /dlls/gdiplus/pen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/gdiplus/pen.c -------------------------------------------------------------------------------- /dlls/glu32/geom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/glu32/geom.c -------------------------------------------------------------------------------- /dlls/glu32/glu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/glu32/glu.c -------------------------------------------------------------------------------- /dlls/glu32/mesh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/glu32/mesh.c -------------------------------------------------------------------------------- /dlls/glu32/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/glu32/mesh.h -------------------------------------------------------------------------------- /dlls/glu32/mipmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/glu32/mipmap.c -------------------------------------------------------------------------------- /dlls/glu32/quad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/glu32/quad.c -------------------------------------------------------------------------------- /dlls/glu32/render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/glu32/render.c -------------------------------------------------------------------------------- /dlls/glu32/sweep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/glu32/sweep.c -------------------------------------------------------------------------------- /dlls/glu32/tess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/glu32/tess.c -------------------------------------------------------------------------------- /dlls/glu32/tess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/glu32/tess.h -------------------------------------------------------------------------------- /dlls/hal/hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/hal/hal.c -------------------------------------------------------------------------------- /dlls/hal/hal.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/hal/hal.spec -------------------------------------------------------------------------------- /dlls/hal/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/hal/version.rc -------------------------------------------------------------------------------- /dlls/hid/hid.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/hid/hid.spec -------------------------------------------------------------------------------- /dlls/hid/hidd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/hid/hidd.c -------------------------------------------------------------------------------- /dlls/hid/hidp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/hid/hidp.c -------------------------------------------------------------------------------- /dlls/hid/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/hid/version.rc -------------------------------------------------------------------------------- /dlls/hidclass.sys/hidclass.sys.spec: -------------------------------------------------------------------------------- 1 | @ stdcall HidRegisterMinidriver(ptr) 2 | -------------------------------------------------------------------------------- /dlls/hlink/link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/hlink/link.c -------------------------------------------------------------------------------- /dlls/hnetcfg/apps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/hnetcfg/apps.c -------------------------------------------------------------------------------- /dlls/hnetcfg/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/hnetcfg/port.c -------------------------------------------------------------------------------- /dlls/hrtfapo/Makefile.in: -------------------------------------------------------------------------------- 1 | MODULE = hrtfapo.dll 2 | 3 | SOURCES = \ 4 | main.c 5 | -------------------------------------------------------------------------------- /dlls/hrtfapo/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/hrtfapo/main.c -------------------------------------------------------------------------------- /dlls/icmp/icmp.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/icmp/icmp.spec -------------------------------------------------------------------------------- /dlls/icmui/icmui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/icmui/icmui.c -------------------------------------------------------------------------------- /dlls/ieframe/ie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/ieframe/ie.c -------------------------------------------------------------------------------- /dlls/ieframe/view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/ieframe/view.c -------------------------------------------------------------------------------- /dlls/imm32/ime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/imm32/ime.c -------------------------------------------------------------------------------- /dlls/imm32/imm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/imm32/imm.c -------------------------------------------------------------------------------- /dlls/iprop/Makefile.in: -------------------------------------------------------------------------------- 1 | MODULE = iprop.dll 2 | -------------------------------------------------------------------------------- /dlls/ir50_32/ir50.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/ir50_32/ir50.c -------------------------------------------------------------------------------- /dlls/irprops.cpl/Makefile.in: -------------------------------------------------------------------------------- 1 | MODULE = irprops.cpl 2 | IMPORTS = bluetoothapis 3 | -------------------------------------------------------------------------------- /dlls/itss/chm_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/itss/chm_lib.c -------------------------------------------------------------------------------- /dlls/itss/chm_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/itss/chm_lib.h -------------------------------------------------------------------------------- /dlls/itss/itss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/itss/itss.c -------------------------------------------------------------------------------- /dlls/itss/itss.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/itss/itss.idl -------------------------------------------------------------------------------- /dlls/itss/itss.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/itss/itss.rgs -------------------------------------------------------------------------------- /dlls/itss/itss.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/itss/itss.spec -------------------------------------------------------------------------------- /dlls/itss/itsstor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/itss/itsstor.h -------------------------------------------------------------------------------- /dlls/itss/lzx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/itss/lzx.c -------------------------------------------------------------------------------- /dlls/itss/lzx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/itss/lzx.h -------------------------------------------------------------------------------- /dlls/itss/moniker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/itss/moniker.c -------------------------------------------------------------------------------- /dlls/itss/rsrc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/itss/rsrc.rc -------------------------------------------------------------------------------- /dlls/itss/storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/itss/storage.c -------------------------------------------------------------------------------- /dlls/joy.cpl/joy.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/joy.cpl/joy.rc -------------------------------------------------------------------------------- /dlls/joy.cpl/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/joy.cpl/main.c -------------------------------------------------------------------------------- /dlls/jscript/bool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/jscript/bool.c -------------------------------------------------------------------------------- /dlls/jscript/date.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/jscript/date.c -------------------------------------------------------------------------------- /dlls/jscript/json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/jscript/json.c -------------------------------------------------------------------------------- /dlls/jscript/lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/jscript/lex.c -------------------------------------------------------------------------------- /dlls/jscript/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/jscript/math.c -------------------------------------------------------------------------------- /dlls/jscript/set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/jscript/set.c -------------------------------------------------------------------------------- /dlls/jsproxy/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/jsproxy/main.c -------------------------------------------------------------------------------- /dlls/jsproxy/pac.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/jsproxy/pac.js -------------------------------------------------------------------------------- /dlls/kernel32/tests/dummy.spec: -------------------------------------------------------------------------------- 1 | @ stdcall get_path(ptr long) 2 | -------------------------------------------------------------------------------- /dlls/localui/localui.spec: -------------------------------------------------------------------------------- 1 | @ stdcall InitializePrintMonitorUI() 2 | -------------------------------------------------------------------------------- /dlls/lz32/lz32.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/lz32/lz32.spec -------------------------------------------------------------------------------- /dlls/mapi32/prop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/mapi32/prop.c -------------------------------------------------------------------------------- /dlls/mapi32/res.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/mapi32/res.h -------------------------------------------------------------------------------- /dlls/mapi32/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/mapi32/util.c -------------------------------------------------------------------------------- /dlls/mapi32/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/mapi32/util.h -------------------------------------------------------------------------------- /dlls/mciavi32/wnd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/mciavi32/wnd.c -------------------------------------------------------------------------------- /dlls/mf/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/mf/Makefile.in -------------------------------------------------------------------------------- /dlls/mf/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/mf/clock.c -------------------------------------------------------------------------------- /dlls/mf/copier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/mf/copier.c -------------------------------------------------------------------------------- /dlls/mf/evr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/mf/evr.c -------------------------------------------------------------------------------- /dlls/mf/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/mf/main.c -------------------------------------------------------------------------------- /dlls/mf/mf.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/mf/mf.idl -------------------------------------------------------------------------------- /dlls/mf/mf.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/mf/mf.rc -------------------------------------------------------------------------------- /dlls/mf/mf.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/mf/mf.rgs -------------------------------------------------------------------------------- /dlls/mf/mf.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/mf/mf.spec -------------------------------------------------------------------------------- /dlls/mf/quality.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/mf/quality.c -------------------------------------------------------------------------------- /dlls/mf/sac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/mf/sac.c -------------------------------------------------------------------------------- /dlls/mf/sar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/mf/sar.c -------------------------------------------------------------------------------- /dlls/mf/session.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/mf/session.c -------------------------------------------------------------------------------- /dlls/mf/tests/mf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/mf/tests/mf.c -------------------------------------------------------------------------------- /dlls/mf/topology.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/mf/topology.c -------------------------------------------------------------------------------- /dlls/mf3216/Makefile.in: -------------------------------------------------------------------------------- 1 | MODULE = mf3216.dll 2 | -------------------------------------------------------------------------------- /dlls/mfplat/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/mfplat/main.c -------------------------------------------------------------------------------- /dlls/mfplat/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/mfplat/queue.c -------------------------------------------------------------------------------- /dlls/mlang/mlang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/mlang/mlang.c -------------------------------------------------------------------------------- /dlls/mlang/mlang.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/mlang/mlang.rc -------------------------------------------------------------------------------- /dlls/mouhid.sys/mouhid.sys.spec: -------------------------------------------------------------------------------- 1 | # nothing to export 2 | -------------------------------------------------------------------------------- /dlls/mpr/auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/mpr/auth.c -------------------------------------------------------------------------------- /dlls/mpr/mpr.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/mpr/mpr.rc -------------------------------------------------------------------------------- /dlls/mpr/mpr.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/mpr/mpr.spec -------------------------------------------------------------------------------- /dlls/mpr/mpr_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/mpr/mpr_main.c -------------------------------------------------------------------------------- /dlls/mpr/mprres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/mpr/mprres.h -------------------------------------------------------------------------------- /dlls/mpr/multinet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/mpr/multinet.c -------------------------------------------------------------------------------- /dlls/mpr/netspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/mpr/netspi.h -------------------------------------------------------------------------------- /dlls/mpr/nps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/mpr/nps.c -------------------------------------------------------------------------------- /dlls/mpr/pwcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/mpr/pwcache.c -------------------------------------------------------------------------------- /dlls/mpr/wnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/mpr/wnet.c -------------------------------------------------------------------------------- /dlls/mpr/wnetpriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/mpr/wnetpriv.h -------------------------------------------------------------------------------- /dlls/msado15/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msado15/main.c -------------------------------------------------------------------------------- /dlls/msasn1/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msasn1/main.c -------------------------------------------------------------------------------- /dlls/mscms/handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/mscms/handle.c -------------------------------------------------------------------------------- /dlls/mscms/icc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/mscms/icc.c -------------------------------------------------------------------------------- /dlls/mscms/stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/mscms/stub.c -------------------------------------------------------------------------------- /dlls/msctf/msctf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msctf/msctf.c -------------------------------------------------------------------------------- /dlls/msctf/range.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msctf/range.c -------------------------------------------------------------------------------- /dlls/msdaps/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msdaps/main.c -------------------------------------------------------------------------------- /dlls/msdmo/dmoreg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msdmo/dmoreg.c -------------------------------------------------------------------------------- /dlls/msdmo/dmort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msdmo/dmort.c -------------------------------------------------------------------------------- /dlls/msdmo/rsrc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msdmo/rsrc.rc -------------------------------------------------------------------------------- /dlls/msdrm/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msdrm/main.c -------------------------------------------------------------------------------- /dlls/mshtml/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/mshtml/main.c -------------------------------------------------------------------------------- /dlls/mshtml/nsio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/mshtml/nsio.c -------------------------------------------------------------------------------- /dlls/mshtml/range.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/mshtml/range.c -------------------------------------------------------------------------------- /dlls/mshtml/svg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/mshtml/svg.c -------------------------------------------------------------------------------- /dlls/mshtml/task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/mshtml/task.c -------------------------------------------------------------------------------- /dlls/mshtml/view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/mshtml/view.c -------------------------------------------------------------------------------- /dlls/msi/action.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msi/action.c -------------------------------------------------------------------------------- /dlls/msi/alter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msi/alter.c -------------------------------------------------------------------------------- /dlls/msi/assembly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msi/assembly.c -------------------------------------------------------------------------------- /dlls/msi/classes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msi/classes.c -------------------------------------------------------------------------------- /dlls/msi/cond.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msi/cond.y -------------------------------------------------------------------------------- /dlls/msi/create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msi/create.c -------------------------------------------------------------------------------- /dlls/msi/custom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msi/custom.c -------------------------------------------------------------------------------- /dlls/msi/database.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msi/database.c -------------------------------------------------------------------------------- /dlls/msi/delete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msi/delete.c -------------------------------------------------------------------------------- /dlls/msi/dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msi/dialog.c -------------------------------------------------------------------------------- /dlls/msi/distinct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msi/distinct.c -------------------------------------------------------------------------------- /dlls/msi/drop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msi/drop.c -------------------------------------------------------------------------------- /dlls/msi/files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msi/files.c -------------------------------------------------------------------------------- /dlls/msi/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msi/font.c -------------------------------------------------------------------------------- /dlls/msi/format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msi/format.c -------------------------------------------------------------------------------- /dlls/msi/handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msi/handle.c -------------------------------------------------------------------------------- /dlls/msi/insert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msi/insert.c -------------------------------------------------------------------------------- /dlls/msi/install.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msi/install.c -------------------------------------------------------------------------------- /dlls/msi/media.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msi/media.c -------------------------------------------------------------------------------- /dlls/msi/msi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msi/msi.c -------------------------------------------------------------------------------- /dlls/msi/msi.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msi/msi.rc -------------------------------------------------------------------------------- /dlls/msi/msi.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msi/msi.spec -------------------------------------------------------------------------------- /dlls/msi/msi_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msi/msi_main.c -------------------------------------------------------------------------------- /dlls/msi/msipriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msi/msipriv.h -------------------------------------------------------------------------------- /dlls/msi/msiquery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msi/msiquery.c -------------------------------------------------------------------------------- /dlls/msi/package.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msi/package.c -------------------------------------------------------------------------------- /dlls/msi/patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msi/patch.c -------------------------------------------------------------------------------- /dlls/msi/query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msi/query.h -------------------------------------------------------------------------------- /dlls/msi/record.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msi/record.c -------------------------------------------------------------------------------- /dlls/msi/registry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msi/registry.c -------------------------------------------------------------------------------- /dlls/msi/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msi/resource.h -------------------------------------------------------------------------------- /dlls/msi/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msi/script.c -------------------------------------------------------------------------------- /dlls/msi/select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msi/select.c -------------------------------------------------------------------------------- /dlls/msi/source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msi/source.c -------------------------------------------------------------------------------- /dlls/msi/sql.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msi/sql.y -------------------------------------------------------------------------------- /dlls/msi/storages.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msi/storages.c -------------------------------------------------------------------------------- /dlls/msi/streams.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msi/streams.c -------------------------------------------------------------------------------- /dlls/msi/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msi/string.c -------------------------------------------------------------------------------- /dlls/msi/suminfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msi/suminfo.c -------------------------------------------------------------------------------- /dlls/msi/table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msi/table.c -------------------------------------------------------------------------------- /dlls/msi/tests/db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msi/tests/db.c -------------------------------------------------------------------------------- /dlls/msi/tokenize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msi/tokenize.c -------------------------------------------------------------------------------- /dlls/msi/update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msi/update.c -------------------------------------------------------------------------------- /dlls/msi/upgrade.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msi/upgrade.c -------------------------------------------------------------------------------- /dlls/msi/where.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msi/where.c -------------------------------------------------------------------------------- /dlls/msimtf/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msimtf/main.c -------------------------------------------------------------------------------- /dlls/msisip/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msisip/main.c -------------------------------------------------------------------------------- /dlls/mstask/task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/mstask/task.c -------------------------------------------------------------------------------- /dlls/msv1_0/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msv1_0/main.c -------------------------------------------------------------------------------- /dlls/msvcp120_app/Makefile.in: -------------------------------------------------------------------------------- 1 | MODULE = msvcp120_app.dll 2 | -------------------------------------------------------------------------------- /dlls/msvcp60/ios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msvcp60/ios.c -------------------------------------------------------------------------------- /dlls/msvcp60/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msvcp60/main.c -------------------------------------------------------------------------------- /dlls/msvcp90/cxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msvcp90/cxx.h -------------------------------------------------------------------------------- /dlls/msvcp90/ios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msvcp90/ios.c -------------------------------------------------------------------------------- /dlls/msvcp90/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msvcp90/math.c -------------------------------------------------------------------------------- /dlls/msvcp90/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msvcp90/misc.c -------------------------------------------------------------------------------- /dlls/msvcp_win/Makefile.in: -------------------------------------------------------------------------------- 1 | MODULE = msvcp_win.dll 2 | -------------------------------------------------------------------------------- /dlls/msvcr120_app/Makefile.in: -------------------------------------------------------------------------------- 1 | MODULE = msvcr120_app.dll 2 | -------------------------------------------------------------------------------- /dlls/msvcrt/bnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msvcrt/bnum.h -------------------------------------------------------------------------------- /dlls/msvcrt/cpp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msvcrt/cpp.c -------------------------------------------------------------------------------- /dlls/msvcrt/ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msvcrt/ctype.c -------------------------------------------------------------------------------- /dlls/msvcrt/cxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msvcrt/cxx.h -------------------------------------------------------------------------------- /dlls/msvcrt/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msvcrt/data.c -------------------------------------------------------------------------------- /dlls/msvcrt/dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msvcrt/dir.c -------------------------------------------------------------------------------- /dlls/msvcrt/errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msvcrt/errno.c -------------------------------------------------------------------------------- /dlls/msvcrt/exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msvcrt/exit.c -------------------------------------------------------------------------------- /dlls/msvcrt/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msvcrt/file.c -------------------------------------------------------------------------------- /dlls/msvcrt/heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msvcrt/heap.c -------------------------------------------------------------------------------- /dlls/msvcrt/iob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msvcrt/iob.c -------------------------------------------------------------------------------- /dlls/msvcrt/lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msvcrt/lock.c -------------------------------------------------------------------------------- /dlls/msvcrt/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msvcrt/main.c -------------------------------------------------------------------------------- /dlls/msvcrt/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msvcrt/math.c -------------------------------------------------------------------------------- /dlls/msvcrt/mathf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msvcrt/mathf.c -------------------------------------------------------------------------------- /dlls/msvcrt/mbcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msvcrt/mbcs.c -------------------------------------------------------------------------------- /dlls/msvcrt/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msvcrt/misc.c -------------------------------------------------------------------------------- /dlls/msvcrt/mtdll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msvcrt/mtdll.h -------------------------------------------------------------------------------- /dlls/msvcrt/rsrc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msvcrt/rsrc.rc -------------------------------------------------------------------------------- /dlls/msvcrt/scanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msvcrt/scanf.c -------------------------------------------------------------------------------- /dlls/msvcrt/scanf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msvcrt/scanf.h -------------------------------------------------------------------------------- /dlls/msvcrt/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msvcrt/time.c -------------------------------------------------------------------------------- /dlls/msvcrt/wcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msvcrt/wcs.c -------------------------------------------------------------------------------- /dlls/msvcrt40/Makefile.in: -------------------------------------------------------------------------------- 1 | MODULE = msvcrt40.dll 2 | -------------------------------------------------------------------------------- /dlls/msvcrtd/tests/Makefile.in: -------------------------------------------------------------------------------- 1 | TESTDLL = msvcrtd.dll 2 | 3 | SOURCES = \ 4 | debug.c 5 | -------------------------------------------------------------------------------- /dlls/msxml/rsrc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msxml/rsrc.rc -------------------------------------------------------------------------------- /dlls/msxml3/bsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msxml3/bsc.c -------------------------------------------------------------------------------- /dlls/msxml3/cdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msxml3/cdata.c -------------------------------------------------------------------------------- /dlls/msxml3/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msxml3/main.c -------------------------------------------------------------------------------- /dlls/msxml3/node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msxml3/node.c -------------------------------------------------------------------------------- /dlls/msxml3/pi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msxml3/pi.c -------------------------------------------------------------------------------- /dlls/msxml3/text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msxml3/text.c -------------------------------------------------------------------------------- /dlls/msxml3/uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msxml3/uuid.c -------------------------------------------------------------------------------- /dlls/msxml3/xdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msxml3/xdr.c -------------------------------------------------------------------------------- /dlls/msxml4/rsrc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msxml4/rsrc.rc -------------------------------------------------------------------------------- /dlls/msxml6/rsrc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/msxml6/rsrc.rc -------------------------------------------------------------------------------- /dlls/mtxdm/mtxdm.spec: -------------------------------------------------------------------------------- 1 | @ cdecl GetDispenserManager(ptr) 2 | -------------------------------------------------------------------------------- /dlls/ncrypt/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/ncrypt/main.c -------------------------------------------------------------------------------- /dlls/netapi32/nbt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/netapi32/nbt.c -------------------------------------------------------------------------------- /dlls/netcfgx/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/netcfgx/main.c -------------------------------------------------------------------------------- /dlls/newdev/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/newdev/main.c -------------------------------------------------------------------------------- /dlls/ninput/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/ninput/main.c -------------------------------------------------------------------------------- /dlls/nsi/nsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/nsi/nsi.c -------------------------------------------------------------------------------- /dlls/nsi/nsi.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/nsi/nsi.spec -------------------------------------------------------------------------------- /dlls/ntdll/actctx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/ntdll/actctx.c -------------------------------------------------------------------------------- /dlls/ntdll/atom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/ntdll/atom.c -------------------------------------------------------------------------------- /dlls/ntdll/crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/ntdll/crypt.c -------------------------------------------------------------------------------- /dlls/ntdll/env.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/ntdll/env.c -------------------------------------------------------------------------------- /dlls/ntdll/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/ntdll/error.c -------------------------------------------------------------------------------- /dlls/ntdll/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/ntdll/error.h -------------------------------------------------------------------------------- /dlls/ntdll/heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/ntdll/heap.c -------------------------------------------------------------------------------- /dlls/ntdll/loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/ntdll/loader.c -------------------------------------------------------------------------------- /dlls/ntdll/locale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/ntdll/locale.c -------------------------------------------------------------------------------- /dlls/ntdll/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/ntdll/math.c -------------------------------------------------------------------------------- /dlls/ntdll/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/ntdll/misc.c -------------------------------------------------------------------------------- /dlls/ntdll/path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/ntdll/path.c -------------------------------------------------------------------------------- /dlls/ntdll/printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/ntdll/printf.c -------------------------------------------------------------------------------- /dlls/ntdll/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/ntdll/printf.h -------------------------------------------------------------------------------- /dlls/ntdll/reg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/ntdll/reg.c -------------------------------------------------------------------------------- /dlls/ntdll/relay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/ntdll/relay.c -------------------------------------------------------------------------------- /dlls/ntdll/rtl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/ntdll/rtl.c -------------------------------------------------------------------------------- /dlls/ntdll/rtlstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/ntdll/rtlstr.c -------------------------------------------------------------------------------- /dlls/ntdll/sec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/ntdll/sec.c -------------------------------------------------------------------------------- /dlls/ntdll/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/ntdll/string.c -------------------------------------------------------------------------------- /dlls/ntdll/sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/ntdll/sync.c -------------------------------------------------------------------------------- /dlls/ntdll/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/ntdll/thread.c -------------------------------------------------------------------------------- /dlls/ntdll/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/ntdll/time.c -------------------------------------------------------------------------------- /dlls/ntdll/unwind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/ntdll/unwind.c -------------------------------------------------------------------------------- /dlls/ntdll/unwind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/ntdll/unwind.h -------------------------------------------------------------------------------- /dlls/ntoskrnl.exe/plugplay.idl: -------------------------------------------------------------------------------- 1 | #pragma makedep client 2 | #include "wine/plugplay.idl" 3 | -------------------------------------------------------------------------------- /dlls/odbc32/rsrc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/odbc32/rsrc.rc -------------------------------------------------------------------------------- /dlls/ole32/comcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/ole32/comcat.c -------------------------------------------------------------------------------- /dlls/ole32/git.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/ole32/git.c -------------------------------------------------------------------------------- /dlls/oledb32/convert.idl: -------------------------------------------------------------------------------- 1 | #pragma makedep ident 2 | 3 | #include "msdadc.idl" 4 | -------------------------------------------------------------------------------- /dlls/oledb32/tests/convert.idl: -------------------------------------------------------------------------------- 1 | #pragma makedep ident 2 | 3 | #include "msdadc.idl" 4 | -------------------------------------------------------------------------------- /dlls/qcap/v4l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/qcap/v4l.c -------------------------------------------------------------------------------- /dlls/qmgr/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/qmgr/file.c -------------------------------------------------------------------------------- /dlls/qmgr/job.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/qmgr/job.c -------------------------------------------------------------------------------- /dlls/qmgr/qmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/qmgr/qmgr.c -------------------------------------------------------------------------------- /dlls/qmgr/qmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/qmgr/qmgr.h -------------------------------------------------------------------------------- /dlls/riched32/riched32.spec: -------------------------------------------------------------------------------- 1 | 2 stdcall -private DllGetVersion (ptr) 2 | -------------------------------------------------------------------------------- /dlls/sapi/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/sapi/main.c -------------------------------------------------------------------------------- /dlls/sapi/tts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/sapi/tts.c -------------------------------------------------------------------------------- /dlls/sas/sas.spec: -------------------------------------------------------------------------------- 1 | @ stub SendSAS 2 | -------------------------------------------------------------------------------- /dlls/schedsvc/schedsvc.spec: -------------------------------------------------------------------------------- 1 | @ stdcall -private ServiceMain(long ptr) 2 | -------------------------------------------------------------------------------- /dlls/schedsvc/schrpc.idl: -------------------------------------------------------------------------------- 1 | #pragma makedep server 2 | 3 | #include "wine/schrpc.idl" 4 | -------------------------------------------------------------------------------- /dlls/sechost/plugplay.idl: -------------------------------------------------------------------------------- 1 | #pragma makedep client 2 | #include "wine/plugplay.idl" 3 | -------------------------------------------------------------------------------- /dlls/sechost/svcctl.idl: -------------------------------------------------------------------------------- 1 | #pragma makedep client 2 | 3 | #include "wine/svcctl.idl" 4 | -------------------------------------------------------------------------------- /dlls/slc/slc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/slc/slc.c -------------------------------------------------------------------------------- /dlls/sppc/sppc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/sppc/sppc.c -------------------------------------------------------------------------------- /dlls/srvsvc/srvsvc.spec: -------------------------------------------------------------------------------- 1 | @ stdcall -private ServiceMain(long ptr) 2 | -------------------------------------------------------------------------------- /dlls/sti/sti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/sti/sti.c -------------------------------------------------------------------------------- /dlls/sxs/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/sxs/cache.c -------------------------------------------------------------------------------- /dlls/sxs/name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/sxs/name.c -------------------------------------------------------------------------------- /dlls/sxs/sxs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/sxs/sxs.c -------------------------------------------------------------------------------- /dlls/taskschd/schrpc.idl: -------------------------------------------------------------------------------- 1 | #pragma makedep client 2 | 3 | #include "wine/schrpc.idl" 4 | -------------------------------------------------------------------------------- /dlls/tbs/tbs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/tbs/tbs.c -------------------------------------------------------------------------------- /dlls/urlmon/mk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/urlmon/mk.c -------------------------------------------------------------------------------- /dlls/vcomp90/Makefile.in: -------------------------------------------------------------------------------- 1 | MODULE = vcomp90.dll 2 | -------------------------------------------------------------------------------- /dlls/vga/vga.spec: -------------------------------------------------------------------------------- 1 | # nothing 2 | -------------------------------------------------------------------------------- /dlls/wer/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/wer/main.c -------------------------------------------------------------------------------- /dlls/wevtsvc/wevtsvc.spec: -------------------------------------------------------------------------------- 1 | @ stdcall -private ServiceMain(long ptr) 2 | -------------------------------------------------------------------------------- /dlls/win32u/dc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/win32u/dc.c -------------------------------------------------------------------------------- /dlls/wineandroid.drv/wineandroid.drv.spec: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dlls/winemac.drv/winemac.drv.spec: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dlls/winewayland.drv/winewayland.drv.spec: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dlls/winmm/mci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/winmm/mci.c -------------------------------------------------------------------------------- /dlls/wldp/wldp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/wldp/wldp.c -------------------------------------------------------------------------------- /dlls/wmp/rsrc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/wmp/rsrc.rc -------------------------------------------------------------------------------- /dlls/wmp/wmp.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/wmp/wmp.rgs -------------------------------------------------------------------------------- /dlls/wpc/wpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/dlls/wpc/wpc.c -------------------------------------------------------------------------------- /dlls/ws2_32/hosts: -------------------------------------------------------------------------------- 1 | # 127.0.0.1 localhost 2 | -------------------------------------------------------------------------------- /dlls/ws2_32/networks: -------------------------------------------------------------------------------- 1 | # loopback 127 2 | -------------------------------------------------------------------------------- /dlls/xapofx1_1/xapofx1_1.spec: -------------------------------------------------------------------------------- 1 | @ cdecl CreateFX(ptr ptr) 2 | -------------------------------------------------------------------------------- /dlls/xapofx1_2/xapofx1_2.spec: -------------------------------------------------------------------------------- 1 | @ cdecl CreateFX(ptr ptr) 2 | -------------------------------------------------------------------------------- /dlls/xapofx1_3/xapofx1_3.spec: -------------------------------------------------------------------------------- 1 | @ cdecl CreateFX(ptr ptr) 2 | -------------------------------------------------------------------------------- /dlls/xapofx1_4/xapofx1_4.spec: -------------------------------------------------------------------------------- 1 | @ cdecl CreateFX(ptr ptr) 2 | -------------------------------------------------------------------------------- /dlls/xapofx1_5/xapofx1_5.spec: -------------------------------------------------------------------------------- 1 | @ cdecl CreateFX(ptr ptr) 2 | -------------------------------------------------------------------------------- /fonts/genttf.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/fonts/genttf.ff -------------------------------------------------------------------------------- /fonts/symbol.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/fonts/symbol.sfd -------------------------------------------------------------------------------- /fonts/symbol.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/fonts/symbol.ttf -------------------------------------------------------------------------------- /fonts/system.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/fonts/system.sfd -------------------------------------------------------------------------------- /fonts/system.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/fonts/system.ttf -------------------------------------------------------------------------------- /fonts/tahoma.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/fonts/tahoma.sfd -------------------------------------------------------------------------------- /fonts/tahoma.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/fonts/tahoma.ttf -------------------------------------------------------------------------------- /include/aclapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/aclapi.h -------------------------------------------------------------------------------- /include/aclui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/aclui.h -------------------------------------------------------------------------------- /include/adserr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/adserr.h -------------------------------------------------------------------------------- /include/adshlp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/adshlp.h -------------------------------------------------------------------------------- /include/advpub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/advpub.h -------------------------------------------------------------------------------- /include/amsi.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/amsi.idl -------------------------------------------------------------------------------- /include/amva.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/amva.h -------------------------------------------------------------------------------- /include/asferr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/asferr.h -------------------------------------------------------------------------------- /include/atlcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/atlcom.h -------------------------------------------------------------------------------- /include/atldef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/atldef.h -------------------------------------------------------------------------------- /include/atlwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/atlwin.h -------------------------------------------------------------------------------- /include/authz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/authz.h -------------------------------------------------------------------------------- /include/avrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/avrt.h -------------------------------------------------------------------------------- /include/bcrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/bcrypt.h -------------------------------------------------------------------------------- /include/bits.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/bits.idl -------------------------------------------------------------------------------- /include/bthdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/bthdef.h -------------------------------------------------------------------------------- /include/cderr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/cderr.h -------------------------------------------------------------------------------- /include/cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/cfg.h -------------------------------------------------------------------------------- /include/cguid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/cguid.h -------------------------------------------------------------------------------- /include/cor.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/cor.idl -------------------------------------------------------------------------------- /include/corhdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/corhdr.h -------------------------------------------------------------------------------- /include/cpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/cpl.h -------------------------------------------------------------------------------- /include/d2d1.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/d2d1.idl -------------------------------------------------------------------------------- /include/d2derr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/d2derr.h -------------------------------------------------------------------------------- /include/d3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/d3d.h -------------------------------------------------------------------------------- /include/d3d8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/d3d8.h -------------------------------------------------------------------------------- /include/d3d9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/d3d9.h -------------------------------------------------------------------------------- /include/d3dhal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/d3dhal.h -------------------------------------------------------------------------------- /include/d3drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/d3drm.h -------------------------------------------------------------------------------- /include/d3dx10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/d3dx10.h -------------------------------------------------------------------------------- /include/d3dx11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/d3dx11.h -------------------------------------------------------------------------------- /include/d3dx9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/d3dx9.h -------------------------------------------------------------------------------- /include/dbgeng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/dbgeng.h -------------------------------------------------------------------------------- /include/dbs.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/dbs.idl -------------------------------------------------------------------------------- /include/dbt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/dbt.h -------------------------------------------------------------------------------- /include/dciddi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/dciddi.h -------------------------------------------------------------------------------- /include/dciman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/dciman.h -------------------------------------------------------------------------------- /include/dde.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/dde.h -------------------------------------------------------------------------------- /include/dde.rh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/dde.rh -------------------------------------------------------------------------------- /include/ddeml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/ddeml.h -------------------------------------------------------------------------------- /include/ddraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/ddraw.h -------------------------------------------------------------------------------- /include/ddrawi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/ddrawi.h -------------------------------------------------------------------------------- /include/dimm.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/dimm.idl -------------------------------------------------------------------------------- /include/dinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/dinput.h -------------------------------------------------------------------------------- /include/dlgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/dlgs.h -------------------------------------------------------------------------------- /include/dls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/dls1.h -------------------------------------------------------------------------------- /include/dls2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/dls2.h -------------------------------------------------------------------------------- /include/dmdls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/dmdls.h -------------------------------------------------------------------------------- /include/dmo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/dmo.h -------------------------------------------------------------------------------- /include/dmoreg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/dmoreg.h -------------------------------------------------------------------------------- /include/dmort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/dmort.h -------------------------------------------------------------------------------- /include/dpaddr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/dpaddr.h -------------------------------------------------------------------------------- /include/dplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/dplay.h -------------------------------------------------------------------------------- /include/dplay8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/dplay8.h -------------------------------------------------------------------------------- /include/dsconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/dsconf.h -------------------------------------------------------------------------------- /include/dshow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/dshow.h -------------------------------------------------------------------------------- /include/dsound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/dsound.h -------------------------------------------------------------------------------- /include/dsrole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/dsrole.h -------------------------------------------------------------------------------- /include/dvoice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/dvoice.h -------------------------------------------------------------------------------- /include/dwmapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/dwmapi.h -------------------------------------------------------------------------------- /include/dxcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/dxcore.h -------------------------------------------------------------------------------- /include/dxdiag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/dxdiag.h -------------------------------------------------------------------------------- /include/dxerr8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/dxerr8.h -------------------------------------------------------------------------------- /include/dxerr9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/dxerr9.h -------------------------------------------------------------------------------- /include/dxfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/dxfile.h -------------------------------------------------------------------------------- /include/dxgi.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/dxgi.idl -------------------------------------------------------------------------------- /include/dxva.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/dxva.h -------------------------------------------------------------------------------- /include/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/errors.h -------------------------------------------------------------------------------- /include/evcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/evcode.h -------------------------------------------------------------------------------- /include/evr.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/evr.idl -------------------------------------------------------------------------------- /include/evr9.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/evr9.idl -------------------------------------------------------------------------------- /include/excpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/excpt.h -------------------------------------------------------------------------------- /include/fci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/fci.h -------------------------------------------------------------------------------- /include/fdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/fdi.h -------------------------------------------------------------------------------- /include/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/http.h -------------------------------------------------------------------------------- /include/iads.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/iads.idl -------------------------------------------------------------------------------- /include/icm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/icm.h -------------------------------------------------------------------------------- /include/ifdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/ifdef.h -------------------------------------------------------------------------------- /include/ifmib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/ifmib.h -------------------------------------------------------------------------------- /include/ime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/ime.h -------------------------------------------------------------------------------- /include/imm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/imm.h -------------------------------------------------------------------------------- /include/immdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/immdev.h -------------------------------------------------------------------------------- /include/inaddr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/inaddr.h -------------------------------------------------------------------------------- /include/ipmib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/ipmib.h -------------------------------------------------------------------------------- /include/kbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/kbd.h -------------------------------------------------------------------------------- /include/ks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/ks.h -------------------------------------------------------------------------------- /include/ksguid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/ksguid.h -------------------------------------------------------------------------------- /include/lm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/lm.h -------------------------------------------------------------------------------- /include/lmat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/lmat.h -------------------------------------------------------------------------------- /include/lmcons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/lmcons.h -------------------------------------------------------------------------------- /include/lmerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/lmerr.h -------------------------------------------------------------------------------- /include/lmjoin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/lmjoin.h -------------------------------------------------------------------------------- /include/lmmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/lmmsg.h -------------------------------------------------------------------------------- /include/lmuse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/lmuse.h -------------------------------------------------------------------------------- /include/mapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/mapi.h -------------------------------------------------------------------------------- /include/mapix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/mapix.h -------------------------------------------------------------------------------- /include/mciavi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/mciavi.h -------------------------------------------------------------------------------- /include/mcx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/mcx.h -------------------------------------------------------------------------------- /include/mfapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/mfapi.h -------------------------------------------------------------------------------- /include/midles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/midles.h -------------------------------------------------------------------------------- /include/minmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/minmax.h -------------------------------------------------------------------------------- /include/mmc.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/mmc.idl -------------------------------------------------------------------------------- /include/mmddk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/mmddk.h -------------------------------------------------------------------------------- /include/mmreg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/mmreg.h -------------------------------------------------------------------------------- /include/mprapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/mprapi.h -------------------------------------------------------------------------------- /include/msacm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/msacm.h -------------------------------------------------------------------------------- /include/msasn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/msasn1.h -------------------------------------------------------------------------------- /include/mscat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/mscat.h -------------------------------------------------------------------------------- /include/msi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/msi.h -------------------------------------------------------------------------------- /include/mssip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/mssip.h -------------------------------------------------------------------------------- /include/msvcrt/dirent.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/msvcrt/sys/unistd.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/mtxdm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/mtxdm.h -------------------------------------------------------------------------------- /include/nb30.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/nb30.h -------------------------------------------------------------------------------- /include/ncrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/ncrypt.h -------------------------------------------------------------------------------- /include/newdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/newdev.h -------------------------------------------------------------------------------- /include/nldef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/nldef.h -------------------------------------------------------------------------------- /include/npapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/npapi.h -------------------------------------------------------------------------------- /include/nspapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/nspapi.h -------------------------------------------------------------------------------- /include/ntdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/ntdef.h -------------------------------------------------------------------------------- /include/ntgdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/ntgdi.h -------------------------------------------------------------------------------- /include/ntlsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/ntlsa.h -------------------------------------------------------------------------------- /include/ntuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/ntuser.h -------------------------------------------------------------------------------- /include/objsel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/objsel.h -------------------------------------------------------------------------------- /include/ocmm.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/ocmm.idl -------------------------------------------------------------------------------- /include/ole2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/ole2.h -------------------------------------------------------------------------------- /include/olectl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/olectl.h -------------------------------------------------------------------------------- /include/oledlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/oledlg.h -------------------------------------------------------------------------------- /include/pdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/pdh.h -------------------------------------------------------------------------------- /include/pdhmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/pdhmsg.h -------------------------------------------------------------------------------- /include/pktdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/pktdef.h -------------------------------------------------------------------------------- /include/prsht.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/prsht.h -------------------------------------------------------------------------------- /include/psapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/psapi.h -------------------------------------------------------------------------------- /include/qos2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/qos2.h -------------------------------------------------------------------------------- /include/ras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/ras.h -------------------------------------------------------------------------------- /include/rasdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/rasdlg.h -------------------------------------------------------------------------------- /include/reason.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/reason.h -------------------------------------------------------------------------------- /include/regstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/regstr.h -------------------------------------------------------------------------------- /include/roapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/roapi.h -------------------------------------------------------------------------------- /include/row.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/row.idl -------------------------------------------------------------------------------- /include/rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/rpc.h -------------------------------------------------------------------------------- /include/rpcdce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/rpcdce.h -------------------------------------------------------------------------------- /include/rpcndr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/rpcndr.h -------------------------------------------------------------------------------- /include/rpcsal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/rpcsal.h -------------------------------------------------------------------------------- /include/sal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/sal.h -------------------------------------------------------------------------------- /include/sapi.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/sapi.idl -------------------------------------------------------------------------------- /include/sddl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/sddl.h -------------------------------------------------------------------------------- /include/secext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/secext.h -------------------------------------------------------------------------------- /include/sfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/sfc.h -------------------------------------------------------------------------------- /include/shcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/shcore.h -------------------------------------------------------------------------------- /include/shlobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/shlobj.h -------------------------------------------------------------------------------- /include/snmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/snmp.h -------------------------------------------------------------------------------- /include/sql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/sql.h -------------------------------------------------------------------------------- /include/sqlext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/sqlext.h -------------------------------------------------------------------------------- /include/sspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/sspi.h -------------------------------------------------------------------------------- /include/stamp-h.in: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /include/sti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/sti.h -------------------------------------------------------------------------------- /include/svrapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/svrapi.h -------------------------------------------------------------------------------- /include/tapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/tapi.h -------------------------------------------------------------------------------- /include/tbs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/tbs.h -------------------------------------------------------------------------------- /include/tchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/tchar.h -------------------------------------------------------------------------------- /include/tcpmib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/tcpmib.h -------------------------------------------------------------------------------- /include/tom.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/tom.idl -------------------------------------------------------------------------------- /include/twain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/twain.h -------------------------------------------------------------------------------- /include/udpmib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/udpmib.h -------------------------------------------------------------------------------- /include/usp10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/usp10.h -------------------------------------------------------------------------------- /include/uuids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/uuids.h -------------------------------------------------------------------------------- /include/vdmdbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/vdmdbg.h -------------------------------------------------------------------------------- /include/ver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/ver.h -------------------------------------------------------------------------------- /include/vfw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/vfw.h -------------------------------------------------------------------------------- /include/vmr9.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/vmr9.idl -------------------------------------------------------------------------------- /include/vss.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/vss.idl -------------------------------------------------------------------------------- /include/wct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/wct.h -------------------------------------------------------------------------------- /include/werapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/werapi.h -------------------------------------------------------------------------------- /include/wfext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/wfext.h -------------------------------------------------------------------------------- /include/wia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/wia.h -------------------------------------------------------------------------------- /include/wiadef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/wiadef.h -------------------------------------------------------------------------------- /include/winber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/winber.h -------------------------------------------------------------------------------- /include/wincon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/wincon.h -------------------------------------------------------------------------------- /include/windef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/windef.h -------------------------------------------------------------------------------- /include/windns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/windns.h -------------------------------------------------------------------------------- /include/winevt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/winevt.h -------------------------------------------------------------------------------- /include/wingdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/wingdi.h -------------------------------------------------------------------------------- /include/winnls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/winnls.h -------------------------------------------------------------------------------- /include/winnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/winnt.h -------------------------------------------------------------------------------- /include/winnt.rh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/winnt.rh -------------------------------------------------------------------------------- /include/winppi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/winppi.h -------------------------------------------------------------------------------- /include/winreg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/winreg.h -------------------------------------------------------------------------------- /include/winsvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/winsvc.h -------------------------------------------------------------------------------- /include/wintab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/wintab.h -------------------------------------------------------------------------------- /include/winusb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/winusb.h -------------------------------------------------------------------------------- /include/winver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/winver.h -------------------------------------------------------------------------------- /include/wldp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/wldp.h -------------------------------------------------------------------------------- /include/wmistr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/wmistr.h -------------------------------------------------------------------------------- /include/wmium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/wmium.h -------------------------------------------------------------------------------- /include/wmp.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/wmp.idl -------------------------------------------------------------------------------- /include/wmpids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/wmpids.h -------------------------------------------------------------------------------- /include/wmsdk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/wmsdk.h -------------------------------------------------------------------------------- /include/wofapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/wofapi.h -------------------------------------------------------------------------------- /include/ws2def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/ws2def.h -------------------------------------------------------------------------------- /include/ws2spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/ws2spi.h -------------------------------------------------------------------------------- /include/wsdapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/wsdapi.h -------------------------------------------------------------------------------- /include/wsipx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/wsipx.h -------------------------------------------------------------------------------- /include/xact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/xact.h -------------------------------------------------------------------------------- /include/xact3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/xact3.h -------------------------------------------------------------------------------- /include/xapo.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/xapo.idl -------------------------------------------------------------------------------- /include/xapofx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/xapofx.h -------------------------------------------------------------------------------- /include/xcmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/xcmc.h -------------------------------------------------------------------------------- /include/xinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/xinput.h -------------------------------------------------------------------------------- /include/xmldom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/xmldom.h -------------------------------------------------------------------------------- /include/zmouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/include/zmouse.h -------------------------------------------------------------------------------- /libs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/libs/.DS_Store -------------------------------------------------------------------------------- /libs/jpeg/jdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/libs/jpeg/jdct.h -------------------------------------------------------------------------------- /libs/jxr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/libs/jxr/LICENSE -------------------------------------------------------------------------------- /libs/musl/VERSION: -------------------------------------------------------------------------------- 1 | 1.2.3 2 | -------------------------------------------------------------------------------- /libs/png/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/libs/png/AUTHORS -------------------------------------------------------------------------------- /libs/png/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/libs/png/LICENSE -------------------------------------------------------------------------------- /libs/png/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/libs/png/png.c -------------------------------------------------------------------------------- /libs/png/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/libs/png/png.h -------------------------------------------------------------------------------- /libs/uuid/d2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/libs/uuid/d2d.c -------------------------------------------------------------------------------- /libs/uuid/uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/libs/uuid/uuid.c -------------------------------------------------------------------------------- /libs/vkd3d/include/private/vkd3d_version.h: -------------------------------------------------------------------------------- 1 | #define VKD3D_VCS_ID " (Wine bundled)" 2 | -------------------------------------------------------------------------------- /libs/xml2/SAX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/libs/xml2/SAX.c -------------------------------------------------------------------------------- /libs/xml2/SAX2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/libs/xml2/SAX2.c -------------------------------------------------------------------------------- /libs/xml2/buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/libs/xml2/buf.c -------------------------------------------------------------------------------- /libs/xml2/dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/libs/xml2/dict.c -------------------------------------------------------------------------------- /libs/xml2/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/libs/xml2/hash.c -------------------------------------------------------------------------------- /libs/xml2/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/libs/xml2/list.c -------------------------------------------------------------------------------- /libs/xml2/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/libs/xml2/tree.c -------------------------------------------------------------------------------- /libs/xml2/uri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/libs/xml2/uri.c -------------------------------------------------------------------------------- /libs/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/libs/zlib/zlib.h -------------------------------------------------------------------------------- /loader/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/loader/main.c -------------------------------------------------------------------------------- /loader/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/loader/main.h -------------------------------------------------------------------------------- /nls/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/Makefile.in -------------------------------------------------------------------------------- /nls/c_037.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_037.nls -------------------------------------------------------------------------------- /nls/c_10000.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_10000.nls -------------------------------------------------------------------------------- /nls/c_10001.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_10001.nls -------------------------------------------------------------------------------- /nls/c_10002.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_10002.nls -------------------------------------------------------------------------------- /nls/c_10003.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_10003.nls -------------------------------------------------------------------------------- /nls/c_10004.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_10004.nls -------------------------------------------------------------------------------- /nls/c_10005.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_10005.nls -------------------------------------------------------------------------------- /nls/c_10006.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_10006.nls -------------------------------------------------------------------------------- /nls/c_10007.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_10007.nls -------------------------------------------------------------------------------- /nls/c_10008.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_10008.nls -------------------------------------------------------------------------------- /nls/c_10010.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_10010.nls -------------------------------------------------------------------------------- /nls/c_10017.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_10017.nls -------------------------------------------------------------------------------- /nls/c_10021.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_10021.nls -------------------------------------------------------------------------------- /nls/c_10029.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_10029.nls -------------------------------------------------------------------------------- /nls/c_10079.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_10079.nls -------------------------------------------------------------------------------- /nls/c_10081.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_10081.nls -------------------------------------------------------------------------------- /nls/c_10082.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_10082.nls -------------------------------------------------------------------------------- /nls/c_1026.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_1026.nls -------------------------------------------------------------------------------- /nls/c_1250.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_1250.nls -------------------------------------------------------------------------------- /nls/c_1251.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_1251.nls -------------------------------------------------------------------------------- /nls/c_1252.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_1252.nls -------------------------------------------------------------------------------- /nls/c_1253.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_1253.nls -------------------------------------------------------------------------------- /nls/c_1254.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_1254.nls -------------------------------------------------------------------------------- /nls/c_1255.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_1255.nls -------------------------------------------------------------------------------- /nls/c_1256.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_1256.nls -------------------------------------------------------------------------------- /nls/c_1257.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_1257.nls -------------------------------------------------------------------------------- /nls/c_1258.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_1258.nls -------------------------------------------------------------------------------- /nls/c_1361.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_1361.nls -------------------------------------------------------------------------------- /nls/c_20127.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_20127.nls -------------------------------------------------------------------------------- /nls/c_20866.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_20866.nls -------------------------------------------------------------------------------- /nls/c_20932.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_20932.nls -------------------------------------------------------------------------------- /nls/c_20949.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_20949.nls -------------------------------------------------------------------------------- /nls/c_21866.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_21866.nls -------------------------------------------------------------------------------- /nls/c_28591.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_28591.nls -------------------------------------------------------------------------------- /nls/c_28592.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_28592.nls -------------------------------------------------------------------------------- /nls/c_28593.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_28593.nls -------------------------------------------------------------------------------- /nls/c_28594.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_28594.nls -------------------------------------------------------------------------------- /nls/c_28595.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_28595.nls -------------------------------------------------------------------------------- /nls/c_28596.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_28596.nls -------------------------------------------------------------------------------- /nls/c_28597.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_28597.nls -------------------------------------------------------------------------------- /nls/c_28598.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_28598.nls -------------------------------------------------------------------------------- /nls/c_28599.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_28599.nls -------------------------------------------------------------------------------- /nls/c_28603.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_28603.nls -------------------------------------------------------------------------------- /nls/c_28605.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_28605.nls -------------------------------------------------------------------------------- /nls/c_437.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_437.nls -------------------------------------------------------------------------------- /nls/c_500.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_500.nls -------------------------------------------------------------------------------- /nls/c_708.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_708.nls -------------------------------------------------------------------------------- /nls/c_720.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_720.nls -------------------------------------------------------------------------------- /nls/c_737.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_737.nls -------------------------------------------------------------------------------- /nls/c_775.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_775.nls -------------------------------------------------------------------------------- /nls/c_850.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_850.nls -------------------------------------------------------------------------------- /nls/c_852.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_852.nls -------------------------------------------------------------------------------- /nls/c_855.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_855.nls -------------------------------------------------------------------------------- /nls/c_857.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_857.nls -------------------------------------------------------------------------------- /nls/c_860.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_860.nls -------------------------------------------------------------------------------- /nls/c_861.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_861.nls -------------------------------------------------------------------------------- /nls/c_862.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_862.nls -------------------------------------------------------------------------------- /nls/c_863.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_863.nls -------------------------------------------------------------------------------- /nls/c_864.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_864.nls -------------------------------------------------------------------------------- /nls/c_865.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_865.nls -------------------------------------------------------------------------------- /nls/c_866.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_866.nls -------------------------------------------------------------------------------- /nls/c_869.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_869.nls -------------------------------------------------------------------------------- /nls/c_874.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_874.nls -------------------------------------------------------------------------------- /nls/c_875.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_875.nls -------------------------------------------------------------------------------- /nls/c_932.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_932.nls -------------------------------------------------------------------------------- /nls/c_936.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_936.nls -------------------------------------------------------------------------------- /nls/c_949.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_949.nls -------------------------------------------------------------------------------- /nls/c_950.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/c_950.nls -------------------------------------------------------------------------------- /nls/l_intl.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/l_intl.nls -------------------------------------------------------------------------------- /nls/locale.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/locale.nls -------------------------------------------------------------------------------- /nls/normidna.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/normidna.nls -------------------------------------------------------------------------------- /nls/normnfc.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/normnfc.nls -------------------------------------------------------------------------------- /nls/normnfd.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/normnfd.nls -------------------------------------------------------------------------------- /nls/normnfkc.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/normnfkc.nls -------------------------------------------------------------------------------- /nls/normnfkd.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/nls/normnfkd.nls -------------------------------------------------------------------------------- /po/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/po/Makefile.in -------------------------------------------------------------------------------- /po/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/po/ar.po -------------------------------------------------------------------------------- /po/ast.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/po/ast.po -------------------------------------------------------------------------------- /po/bg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/po/bg.po -------------------------------------------------------------------------------- /po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/po/ca.po -------------------------------------------------------------------------------- /po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/po/cs.po -------------------------------------------------------------------------------- /po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/po/da.po -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/po/de.po -------------------------------------------------------------------------------- /po/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/po/el.po -------------------------------------------------------------------------------- /po/en.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/po/en.po -------------------------------------------------------------------------------- /po/en_US.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/po/en_US.po -------------------------------------------------------------------------------- /po/eo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/po/eo.po -------------------------------------------------------------------------------- /po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/po/es.po -------------------------------------------------------------------------------- /po/fa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/po/fa.po -------------------------------------------------------------------------------- /po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/po/fi.po -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/po/fr.po -------------------------------------------------------------------------------- /po/he.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/po/he.po -------------------------------------------------------------------------------- /po/hi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/po/hi.po -------------------------------------------------------------------------------- /po/hr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/po/hr.po -------------------------------------------------------------------------------- /po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/po/hu.po -------------------------------------------------------------------------------- /po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/po/it.po -------------------------------------------------------------------------------- /po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/po/ja.po -------------------------------------------------------------------------------- /po/ka.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/po/ka.po -------------------------------------------------------------------------------- /po/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/po/ko.po -------------------------------------------------------------------------------- /po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/po/lt.po -------------------------------------------------------------------------------- /po/ml.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/po/ml.po -------------------------------------------------------------------------------- /po/nb_NO.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/po/nb_NO.po -------------------------------------------------------------------------------- /po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/po/nl.po -------------------------------------------------------------------------------- /po/or.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/po/or.po -------------------------------------------------------------------------------- /po/pa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/po/pa.po -------------------------------------------------------------------------------- /po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/po/pl.po -------------------------------------------------------------------------------- /po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/po/pt_BR.po -------------------------------------------------------------------------------- /po/pt_PT.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/po/pt_PT.po -------------------------------------------------------------------------------- /po/rm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/po/rm.po -------------------------------------------------------------------------------- /po/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/po/ro.po -------------------------------------------------------------------------------- /po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/po/ru.po -------------------------------------------------------------------------------- /po/si.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/po/si.po -------------------------------------------------------------------------------- /po/sk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/po/sk.po -------------------------------------------------------------------------------- /po/sl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/po/sl.po -------------------------------------------------------------------------------- /po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/po/sv.po -------------------------------------------------------------------------------- /po/ta.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/po/ta.po -------------------------------------------------------------------------------- /po/te.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/po/te.po -------------------------------------------------------------------------------- /po/th.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/po/th.po -------------------------------------------------------------------------------- /po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/po/tr.po -------------------------------------------------------------------------------- /po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/po/uk.po -------------------------------------------------------------------------------- /po/wa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/po/wa.po -------------------------------------------------------------------------------- /po/wine.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/po/wine.pot -------------------------------------------------------------------------------- /po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/po/zh_CN.po -------------------------------------------------------------------------------- /po/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/po/zh_TW.po -------------------------------------------------------------------------------- /programs/fc/fc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/programs/fc/fc.c -------------------------------------------------------------------------------- /programs/sc/sc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/programs/sc/sc.c -------------------------------------------------------------------------------- /server/async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/server/async.c -------------------------------------------------------------------------------- /server/atom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/server/atom.c -------------------------------------------------------------------------------- /server/change.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/server/change.c -------------------------------------------------------------------------------- /server/class.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/server/class.c -------------------------------------------------------------------------------- /server/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/server/console.c -------------------------------------------------------------------------------- /server/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/server/device.c -------------------------------------------------------------------------------- /server/esync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/server/esync.c -------------------------------------------------------------------------------- /server/esync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/server/esync.h -------------------------------------------------------------------------------- /server/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/server/event.c -------------------------------------------------------------------------------- /server/fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/server/fd.c -------------------------------------------------------------------------------- /server/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/server/file.c -------------------------------------------------------------------------------- /server/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/server/file.h -------------------------------------------------------------------------------- /server/handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/server/handle.c -------------------------------------------------------------------------------- /server/handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/server/handle.h -------------------------------------------------------------------------------- /server/hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/server/hook.c -------------------------------------------------------------------------------- /server/mach.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/server/mach.c -------------------------------------------------------------------------------- /server/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/server/main.c -------------------------------------------------------------------------------- /server/mapping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/server/mapping.c -------------------------------------------------------------------------------- /server/msync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/server/msync.c -------------------------------------------------------------------------------- /server/msync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/server/msync.h -------------------------------------------------------------------------------- /server/mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/server/mutex.c -------------------------------------------------------------------------------- /server/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/server/object.c -------------------------------------------------------------------------------- /server/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/server/object.h -------------------------------------------------------------------------------- /server/process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/server/process.c -------------------------------------------------------------------------------- /server/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/server/process.h -------------------------------------------------------------------------------- /server/procfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/server/procfs.c -------------------------------------------------------------------------------- /server/ptrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/server/ptrace.c -------------------------------------------------------------------------------- /server/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/server/queue.c -------------------------------------------------------------------------------- /server/region.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/server/region.c -------------------------------------------------------------------------------- /server/request.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/server/request.c -------------------------------------------------------------------------------- /server/request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/server/request.h -------------------------------------------------------------------------------- /server/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/server/serial.c -------------------------------------------------------------------------------- /server/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/server/signal.c -------------------------------------------------------------------------------- /server/sock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/server/sock.c -------------------------------------------------------------------------------- /server/symlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/server/symlink.c -------------------------------------------------------------------------------- /server/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/server/thread.c -------------------------------------------------------------------------------- /server/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/server/thread.h -------------------------------------------------------------------------------- /server/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/server/timer.c -------------------------------------------------------------------------------- /server/token.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/server/token.c -------------------------------------------------------------------------------- /server/trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/server/trace.c -------------------------------------------------------------------------------- /server/unicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/server/unicode.c -------------------------------------------------------------------------------- /server/unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/server/unicode.h -------------------------------------------------------------------------------- /server/user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/server/user.c -------------------------------------------------------------------------------- /server/user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/server/user.h -------------------------------------------------------------------------------- /server/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/server/window.c -------------------------------------------------------------------------------- /tools/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/tools/.DS_Store -------------------------------------------------------------------------------- /tools/buildimage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/tools/buildimage -------------------------------------------------------------------------------- /tools/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/tools/config.sub -------------------------------------------------------------------------------- /tools/findfunc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/tools/findfunc -------------------------------------------------------------------------------- /tools/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/tools/install-sh -------------------------------------------------------------------------------- /tools/makedep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/tools/makedep.c -------------------------------------------------------------------------------- /tools/runtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/tools/runtest -------------------------------------------------------------------------------- /tools/tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/tools/tools.h -------------------------------------------------------------------------------- /tools/wmc/lang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/tools/wmc/lang.c -------------------------------------------------------------------------------- /tools/wmc/lang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/tools/wmc/lang.h -------------------------------------------------------------------------------- /tools/wmc/mcl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/tools/wmc/mcl.c -------------------------------------------------------------------------------- /tools/wmc/mcy.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/tools/wmc/mcy.y -------------------------------------------------------------------------------- /tools/wmc/po.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/tools/wmc/po.c -------------------------------------------------------------------------------- /tools/wmc/wmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/tools/wmc/wmc.c -------------------------------------------------------------------------------- /tools/wmc/wmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/tools/wmc/wmc.h -------------------------------------------------------------------------------- /tools/wrc/po.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/tools/wrc/po.c -------------------------------------------------------------------------------- /tools/wrc/ppl.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/tools/wrc/ppl.l -------------------------------------------------------------------------------- /tools/wrc/ppy.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/tools/wrc/ppy.y -------------------------------------------------------------------------------- /tools/wrc/wpp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/tools/wrc/wpp.c -------------------------------------------------------------------------------- /tools/wrc/wrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/tools/wrc/wrc.c -------------------------------------------------------------------------------- /tools/wrc/wrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhoenicisOrg/winecx/HEAD/tools/wrc/wrc.h --------------------------------------------------------------------------------