├── .editorconfig ├── .github └── ISSUE_TEMPLATE │ └── eac-load-failure-bug-report-.md ├── .mailmap ├── ANNOUNCE ├── AUTHORS ├── COPYING.LIB ├── COPYING.arial ├── COPYING.cour ├── COPYING.msyh ├── COPYING.times ├── LICENSE ├── LICENSE.OLD ├── MAINTAINERS ├── Makefile.in ├── README ├── README.esync ├── VERSION ├── aclocal.m4 ├── configure ├── configure.ac ├── dlls ├── 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.spec │ └── 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_objsafe.idl │ ├── actxprxy_ocmm.idl │ ├── actxprxy_servprov.idl │ ├── actxprxy_shldisp.idl │ ├── actxprxy_shobjidl.idl │ ├── actxprxy_urlhist.idl │ └── usrmarshal.c ├── adsiid │ ├── Makefile.in │ └── adsiid.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 │ └── main.c ├── 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 │ ├── svcctl.idl │ ├── tests │ │ ├── Makefile.in │ │ ├── cred.c │ │ ├── crypt.c │ │ ├── crypt_lmhash.c │ │ ├── crypt_md4.c │ │ ├── crypt_md5.c │ │ ├── crypt_sha.c │ │ ├── eventlog.c │ │ ├── lsa.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 │ └── version.rc ├── api-ms-win-appmodel-identity-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-appmodel-identity-l1-1-0.spec ├── api-ms-win-appmodel-runtime-l1-1-1 │ ├── Makefile.in │ └── api-ms-win-appmodel-runtime-l1-1-1.spec ├── api-ms-win-appmodel-runtime-l1-1-2 │ ├── Makefile.in │ └── api-ms-win-appmodel-runtime-l1-1-2.spec ├── api-ms-win-core-apiquery-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-apiquery-l1-1-0.spec ├── api-ms-win-core-appcompat-l1-1-1 │ ├── Makefile.in │ └── api-ms-win-core-appcompat-l1-1-1.spec ├── api-ms-win-core-appinit-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-appinit-l1-1-0.spec ├── api-ms-win-core-atoms-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-atoms-l1-1-0.spec ├── api-ms-win-core-bem-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-bem-l1-1-0.spec ├── api-ms-win-core-com-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-com-l1-1-0.spec ├── api-ms-win-core-com-l1-1-1 │ ├── Makefile.in │ └── api-ms-win-core-com-l1-1-1.spec ├── api-ms-win-core-com-private-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-com-private-l1-1-0.spec ├── api-ms-win-core-comm-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-comm-l1-1-0.spec ├── api-ms-win-core-console-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-console-l1-1-0.spec ├── api-ms-win-core-console-l2-1-0 │ ├── Makefile.in │ └── api-ms-win-core-console-l2-1-0.spec ├── api-ms-win-core-crt-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-crt-l1-1-0.spec ├── api-ms-win-core-crt-l2-1-0 │ ├── Makefile.in │ └── api-ms-win-core-crt-l2-1-0.spec ├── api-ms-win-core-datetime-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-datetime-l1-1-0.spec ├── api-ms-win-core-datetime-l1-1-1 │ ├── Makefile.in │ └── api-ms-win-core-datetime-l1-1-1.spec ├── api-ms-win-core-debug-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-debug-l1-1-0.spec ├── api-ms-win-core-debug-l1-1-1 │ ├── Makefile.in │ └── api-ms-win-core-debug-l1-1-1.spec ├── api-ms-win-core-delayload-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-delayload-l1-1-0.spec ├── api-ms-win-core-delayload-l1-1-1 │ ├── Makefile.in │ └── api-ms-win-core-delayload-l1-1-1.spec ├── api-ms-win-core-errorhandling-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-errorhandling-l1-1-0.spec ├── api-ms-win-core-errorhandling-l1-1-1 │ ├── Makefile.in │ └── api-ms-win-core-errorhandling-l1-1-1.spec ├── api-ms-win-core-errorhandling-l1-1-2 │ ├── Makefile.in │ └── api-ms-win-core-errorhandling-l1-1-2.spec ├── api-ms-win-core-errorhandling-l1-1-3 │ ├── Makefile.in │ └── api-ms-win-core-errorhandling-l1-1-3.spec ├── api-ms-win-core-fibers-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-fibers-l1-1-0.spec ├── api-ms-win-core-fibers-l1-1-1 │ ├── Makefile.in │ └── api-ms-win-core-fibers-l1-1-1.spec ├── api-ms-win-core-file-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-file-l1-1-0.spec ├── api-ms-win-core-file-l1-2-0 │ ├── Makefile.in │ └── api-ms-win-core-file-l1-2-0.spec ├── api-ms-win-core-file-l1-2-1 │ ├── Makefile.in │ └── api-ms-win-core-file-l1-2-1.spec ├── api-ms-win-core-file-l1-2-2 │ ├── Makefile.in │ └── api-ms-win-core-file-l1-2-2.spec ├── api-ms-win-core-file-l2-1-0 │ ├── Makefile.in │ └── api-ms-win-core-file-l2-1-0.spec ├── api-ms-win-core-file-l2-1-1 │ ├── Makefile.in │ └── api-ms-win-core-file-l2-1-1.spec ├── api-ms-win-core-file-l2-1-2 │ ├── Makefile.in │ └── api-ms-win-core-file-l2-1-2.spec ├── api-ms-win-core-handle-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-handle-l1-1-0.spec ├── api-ms-win-core-heap-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-heap-l1-1-0.spec ├── api-ms-win-core-heap-l1-2-0 │ ├── Makefile.in │ └── api-ms-win-core-heap-l1-2-0.spec ├── api-ms-win-core-heap-l2-1-0 │ ├── Makefile.in │ └── api-ms-win-core-heap-l2-1-0.spec ├── api-ms-win-core-heap-obsolete-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-heap-obsolete-l1-1-0.spec ├── api-ms-win-core-interlocked-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-interlocked-l1-1-0.spec ├── api-ms-win-core-interlocked-l1-2-0 │ ├── Makefile.in │ └── api-ms-win-core-interlocked-l1-2-0.spec ├── api-ms-win-core-io-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-io-l1-1-0.spec ├── api-ms-win-core-io-l1-1-1 │ ├── Makefile.in │ └── api-ms-win-core-io-l1-1-1.spec ├── api-ms-win-core-job-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-job-l1-1-0.spec ├── api-ms-win-core-job-l2-1-0 │ ├── Makefile.in │ └── api-ms-win-core-job-l2-1-0.spec ├── api-ms-win-core-kernel32-legacy-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-kernel32-legacy-l1-1-0.spec ├── api-ms-win-core-kernel32-legacy-l1-1-1 │ ├── Makefile.in │ └── api-ms-win-core-kernel32-legacy-l1-1-1.spec ├── api-ms-win-core-kernel32-private-l1-1-1 │ ├── Makefile.in │ └── api-ms-win-core-kernel32-private-l1-1-1.spec ├── api-ms-win-core-largeinteger-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-largeinteger-l1-1-0.spec ├── api-ms-win-core-libraryloader-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-libraryloader-l1-1-0.spec ├── api-ms-win-core-libraryloader-l1-1-1 │ ├── Makefile.in │ └── api-ms-win-core-libraryloader-l1-1-1.spec ├── api-ms-win-core-libraryloader-l1-2-0 │ ├── Makefile.in │ └── api-ms-win-core-libraryloader-l1-2-0.spec ├── api-ms-win-core-libraryloader-l1-2-1 │ ├── Makefile.in │ └── api-ms-win-core-libraryloader-l1-2-1.spec ├── api-ms-win-core-libraryloader-l1-2-2 │ ├── Makefile.in │ └── api-ms-win-core-libraryloader-l1-2-2.spec ├── api-ms-win-core-localization-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-localization-l1-1-0.spec ├── api-ms-win-core-localization-l1-2-0 │ ├── Makefile.in │ └── api-ms-win-core-localization-l1-2-0.spec ├── api-ms-win-core-localization-l1-2-1 │ ├── Makefile.in │ └── api-ms-win-core-localization-l1-2-1.spec ├── api-ms-win-core-localization-l2-1-0 │ ├── Makefile.in │ └── api-ms-win-core-localization-l2-1-0.spec ├── api-ms-win-core-localization-obsolete-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-localization-obsolete-l1-1-0.spec ├── api-ms-win-core-localization-obsolete-l1-2-0 │ ├── Makefile.in │ └── api-ms-win-core-localization-obsolete-l1-2-0.spec ├── api-ms-win-core-localization-obsolete-l1-3-0 │ ├── Makefile.in │ └── api-ms-win-core-localization-obsolete-l1-3-0.spec ├── api-ms-win-core-localization-private-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-localization-private-l1-1-0.spec ├── api-ms-win-core-localregistry-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-localregistry-l1-1-0.spec ├── api-ms-win-core-memory-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-memory-l1-1-0.spec ├── api-ms-win-core-memory-l1-1-1 │ ├── Makefile.in │ └── api-ms-win-core-memory-l1-1-1.spec ├── api-ms-win-core-memory-l1-1-2 │ ├── Makefile.in │ └── api-ms-win-core-memory-l1-1-2.spec ├── api-ms-win-core-misc-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-misc-l1-1-0.spec ├── api-ms-win-core-namedpipe-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-namedpipe-l1-1-0.spec ├── api-ms-win-core-namedpipe-l1-2-0 │ ├── Makefile.in │ └── api-ms-win-core-namedpipe-l1-2-0.spec ├── api-ms-win-core-namespace-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-namespace-l1-1-0.spec ├── api-ms-win-core-normalization-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-normalization-l1-1-0.spec ├── api-ms-win-core-path-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-path-l1-1-0.spec ├── api-ms-win-core-privateprofile-l1-1-1 │ ├── Makefile.in │ └── api-ms-win-core-privateprofile-l1-1-1.spec ├── api-ms-win-core-processenvironment-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-processenvironment-l1-1-0.spec ├── api-ms-win-core-processenvironment-l1-2-0 │ ├── Makefile.in │ └── api-ms-win-core-processenvironment-l1-2-0.spec ├── api-ms-win-core-processthreads-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-processthreads-l1-1-0.spec ├── api-ms-win-core-processthreads-l1-1-1 │ ├── Makefile.in │ └── api-ms-win-core-processthreads-l1-1-1.spec ├── api-ms-win-core-processthreads-l1-1-2 │ ├── Makefile.in │ └── api-ms-win-core-processthreads-l1-1-2.spec ├── api-ms-win-core-processthreads-l1-1-3 │ ├── Makefile.in │ └── api-ms-win-core-processthreads-l1-1-3.spec ├── api-ms-win-core-processtopology-obsolete-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-processtopology-obsolete-l1-1-0.spec ├── api-ms-win-core-profile-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-profile-l1-1-0.spec ├── api-ms-win-core-psapi-ansi-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-psapi-ansi-l1-1-0.spec ├── api-ms-win-core-psapi-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-psapi-l1-1-0.spec ├── api-ms-win-core-psapi-obsolete-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-psapi-obsolete-l1-1-0.spec ├── api-ms-win-core-quirks-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-quirks-l1-1-0.spec ├── api-ms-win-core-realtime-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-realtime-l1-1-0.spec ├── api-ms-win-core-registry-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-registry-l1-1-0.spec ├── api-ms-win-core-registry-l2-1-0 │ ├── Makefile.in │ └── api-ms-win-core-registry-l2-1-0.spec ├── api-ms-win-core-registry-l2-2-0 │ ├── Makefile.in │ └── api-ms-win-core-registry-l2-2-0.spec ├── api-ms-win-core-registryuserspecific-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-registryuserspecific-l1-1-0.spec ├── api-ms-win-core-rtlsupport-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-rtlsupport-l1-1-0.spec ├── api-ms-win-core-rtlsupport-l1-2-0 │ ├── Makefile.in │ └── api-ms-win-core-rtlsupport-l1-2-0.spec ├── api-ms-win-core-shlwapi-legacy-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-shlwapi-legacy-l1-1-0.spec ├── api-ms-win-core-shlwapi-obsolete-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-shlwapi-obsolete-l1-1-0.spec ├── api-ms-win-core-shlwapi-obsolete-l1-2-0 │ ├── Makefile.in │ └── api-ms-win-core-shlwapi-obsolete-l1-2-0.spec ├── api-ms-win-core-shutdown-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-shutdown-l1-1-0.spec ├── api-ms-win-core-sidebyside-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-sidebyside-l1-1-0.spec ├── api-ms-win-core-string-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-string-l1-1-0.spec ├── api-ms-win-core-string-l2-1-0 │ ├── Makefile.in │ └── api-ms-win-core-string-l2-1-0.spec ├── api-ms-win-core-string-obsolete-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-string-obsolete-l1-1-0.spec ├── api-ms-win-core-stringansi-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-stringansi-l1-1-0.spec ├── api-ms-win-core-stringloader-l1-1-1 │ ├── Makefile.in │ └── api-ms-win-core-stringloader-l1-1-1.spec ├── api-ms-win-core-synch-ansi-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-synch-ansi-l1-1-0.spec ├── api-ms-win-core-synch-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-synch-l1-1-0.spec ├── api-ms-win-core-synch-l1-2-0 │ ├── Makefile.in │ └── api-ms-win-core-synch-l1-2-0.spec ├── api-ms-win-core-synch-l1-2-1 │ ├── Makefile.in │ └── api-ms-win-core-synch-l1-2-1.spec ├── api-ms-win-core-sysinfo-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-sysinfo-l1-1-0.spec ├── api-ms-win-core-sysinfo-l1-2-0 │ ├── Makefile.in │ └── api-ms-win-core-sysinfo-l1-2-0.spec ├── api-ms-win-core-sysinfo-l1-2-1 │ ├── Makefile.in │ └── api-ms-win-core-sysinfo-l1-2-1.spec ├── api-ms-win-core-threadpool-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-threadpool-l1-1-0.spec ├── api-ms-win-core-threadpool-l1-2-0 │ ├── Makefile.in │ └── api-ms-win-core-threadpool-l1-2-0.spec ├── api-ms-win-core-threadpool-legacy-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-threadpool-legacy-l1-1-0.spec ├── api-ms-win-core-threadpool-private-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-threadpool-private-l1-1-0.spec ├── api-ms-win-core-timezone-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-timezone-l1-1-0.spec ├── api-ms-win-core-toolhelp-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-toolhelp-l1-1-0.spec ├── api-ms-win-core-url-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-url-l1-1-0.spec ├── api-ms-win-core-util-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-util-l1-1-0.spec ├── api-ms-win-core-version-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-version-l1-1-0.spec ├── api-ms-win-core-version-l1-1-1 │ ├── Makefile.in │ └── api-ms-win-core-version-l1-1-1.spec ├── api-ms-win-core-version-private-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-version-private-l1-1-0.spec ├── api-ms-win-core-versionansi-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-versionansi-l1-1-0.spec ├── api-ms-win-core-windowserrorreporting-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-windowserrorreporting-l1-1-0.spec ├── api-ms-win-core-winrt-error-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-winrt-error-l1-1-0.spec ├── api-ms-win-core-winrt-error-l1-1-1 │ ├── Makefile.in │ └── api-ms-win-core-winrt-error-l1-1-1.spec ├── api-ms-win-core-winrt-errorprivate-l1-1-1 │ ├── Makefile.in │ └── api-ms-win-core-winrt-errorprivate-l1-1-1.spec ├── api-ms-win-core-winrt-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-winrt-l1-1-0.spec ├── api-ms-win-core-winrt-registration-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-winrt-registration-l1-1-0.spec ├── api-ms-win-core-winrt-roparameterizediid-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-winrt-roparameterizediid-l1-1-0.spec ├── api-ms-win-core-winrt-string-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-winrt-string-l1-1-0.spec ├── api-ms-win-core-winrt-string-l1-1-1 │ ├── Makefile.in │ └── api-ms-win-core-winrt-string-l1-1-1.spec ├── api-ms-win-core-wow64-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-wow64-l1-1-0.spec ├── api-ms-win-core-wow64-l1-1-1 │ ├── Makefile.in │ └── api-ms-win-core-wow64-l1-1-1.spec ├── api-ms-win-core-xstate-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-core-xstate-l1-1-0.spec ├── api-ms-win-core-xstate-l2-1-0 │ ├── Makefile.in │ └── api-ms-win-core-xstate-l2-1-0.spec ├── api-ms-win-crt-conio-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-crt-conio-l1-1-0.spec ├── api-ms-win-crt-convert-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-crt-convert-l1-1-0.spec ├── api-ms-win-crt-environment-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-crt-environment-l1-1-0.spec ├── api-ms-win-crt-filesystem-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-crt-filesystem-l1-1-0.spec ├── api-ms-win-crt-heap-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-crt-heap-l1-1-0.spec ├── api-ms-win-crt-locale-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-crt-locale-l1-1-0.spec ├── api-ms-win-crt-math-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-crt-math-l1-1-0.spec ├── api-ms-win-crt-multibyte-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-crt-multibyte-l1-1-0.spec ├── api-ms-win-crt-private-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-crt-private-l1-1-0.spec ├── api-ms-win-crt-process-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-crt-process-l1-1-0.spec ├── api-ms-win-crt-runtime-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-crt-runtime-l1-1-0.spec ├── api-ms-win-crt-stdio-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-crt-stdio-l1-1-0.spec ├── api-ms-win-crt-string-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-crt-string-l1-1-0.spec ├── api-ms-win-crt-time-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-crt-time-l1-1-0.spec ├── api-ms-win-crt-utility-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-crt-utility-l1-1-0.spec ├── api-ms-win-devices-config-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-devices-config-l1-1-0.spec ├── api-ms-win-devices-config-l1-1-1 │ ├── Makefile.in │ └── api-ms-win-devices-config-l1-1-1.spec ├── api-ms-win-devices-query-l1-1-1 │ ├── Makefile.in │ └── api-ms-win-devices-query-l1-1-1.spec ├── api-ms-win-downlevel-advapi32-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-downlevel-advapi32-l1-1-0.spec ├── api-ms-win-downlevel-advapi32-l2-1-0 │ ├── Makefile.in │ └── api-ms-win-downlevel-advapi32-l2-1-0.spec ├── api-ms-win-downlevel-normaliz-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-downlevel-normaliz-l1-1-0.spec ├── api-ms-win-downlevel-ole32-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-downlevel-ole32-l1-1-0.spec ├── api-ms-win-downlevel-shell32-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-downlevel-shell32-l1-1-0.spec ├── api-ms-win-downlevel-shlwapi-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-downlevel-shlwapi-l1-1-0.spec ├── api-ms-win-downlevel-shlwapi-l2-1-0 │ ├── Makefile.in │ └── api-ms-win-downlevel-shlwapi-l2-1-0.spec ├── api-ms-win-downlevel-user32-l1-1-0 │ ├── Makefile.in │ ├── api-ms-win-downlevel-user32-l1-1-0.spec │ └── version.rc ├── api-ms-win-downlevel-version-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-downlevel-version-l1-1-0.spec ├── api-ms-win-dx-d3dkmt-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-dx-d3dkmt-l1-1-0.spec ├── api-ms-win-eventing-classicprovider-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-eventing-classicprovider-l1-1-0.spec ├── api-ms-win-eventing-consumer-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-eventing-consumer-l1-1-0.spec ├── api-ms-win-eventing-controller-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-eventing-controller-l1-1-0.spec ├── api-ms-win-eventing-legacy-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-eventing-legacy-l1-1-0.spec ├── api-ms-win-eventing-provider-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-eventing-provider-l1-1-0.spec ├── api-ms-win-eventlog-legacy-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-eventlog-legacy-l1-1-0.spec ├── api-ms-win-gdi-dpiinfo-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-gdi-dpiinfo-l1-1-0.spec ├── api-ms-win-mm-joystick-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-mm-joystick-l1-1-0.spec ├── api-ms-win-mm-misc-l1-1-1 │ ├── Makefile.in │ └── api-ms-win-mm-misc-l1-1-1.spec ├── api-ms-win-mm-mme-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-mm-mme-l1-1-0.spec ├── api-ms-win-mm-time-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-mm-time-l1-1-0.spec ├── api-ms-win-ntuser-dc-access-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-ntuser-dc-access-l1-1-0.spec ├── api-ms-win-ntuser-rectangle-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-ntuser-rectangle-l1-1-0.spec ├── api-ms-win-ntuser-sysparams-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-ntuser-sysparams-l1-1-0.spec ├── api-ms-win-perf-legacy-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-perf-legacy-l1-1-0.spec ├── api-ms-win-power-base-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-power-base-l1-1-0.spec ├── api-ms-win-power-setting-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-power-setting-l1-1-0.spec ├── api-ms-win-rtcore-ntuser-draw-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-rtcore-ntuser-draw-l1-1-0.spec ├── api-ms-win-rtcore-ntuser-private-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-rtcore-ntuser-private-l1-1-0.spec ├── api-ms-win-rtcore-ntuser-private-l1-1-4 │ ├── Makefile.in │ └── api-ms-win-rtcore-ntuser-private-l1-1-4.spec ├── api-ms-win-rtcore-ntuser-window-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-rtcore-ntuser-window-l1-1-0.spec ├── api-ms-win-rtcore-ntuser-winevent-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-rtcore-ntuser-winevent-l1-1-0.spec ├── api-ms-win-rtcore-ntuser-wmpointer-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-rtcore-ntuser-wmpointer-l1-1-0.spec ├── api-ms-win-rtcore-ntuser-wmpointer-l1-1-3 │ ├── Makefile.in │ └── api-ms-win-rtcore-ntuser-wmpointer-l1-1-3.spec ├── api-ms-win-security-activedirectoryclient-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-security-activedirectoryclient-l1-1-0.spec ├── api-ms-win-security-audit-l1-1-1 │ ├── Makefile.in │ └── api-ms-win-security-audit-l1-1-1.spec ├── api-ms-win-security-base-l1-1-0 │ ├── Makefile.in │ ├── api-ms-win-security-base-l1-1-0.spec │ └── version.rc ├── api-ms-win-security-base-l1-2-0 │ ├── Makefile.in │ └── api-ms-win-security-base-l1-2-0.spec ├── api-ms-win-security-base-private-l1-1-1 │ ├── Makefile.in │ └── api-ms-win-security-base-private-l1-1-1.spec ├── api-ms-win-security-credentials-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-security-credentials-l1-1-0.spec ├── api-ms-win-security-cryptoapi-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-security-cryptoapi-l1-1-0.spec ├── api-ms-win-security-grouppolicy-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-security-grouppolicy-l1-1-0.spec ├── api-ms-win-security-lsalookup-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-security-lsalookup-l1-1-0.spec ├── api-ms-win-security-lsalookup-l1-1-1 │ ├── Makefile.in │ └── api-ms-win-security-lsalookup-l1-1-1.spec ├── api-ms-win-security-lsalookup-l2-1-0 │ ├── Makefile.in │ └── api-ms-win-security-lsalookup-l2-1-0.spec ├── api-ms-win-security-lsalookup-l2-1-1 │ ├── Makefile.in │ └── api-ms-win-security-lsalookup-l2-1-1.spec ├── api-ms-win-security-lsapolicy-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-security-lsapolicy-l1-1-0.spec ├── api-ms-win-security-provider-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-security-provider-l1-1-0.spec ├── api-ms-win-security-sddl-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-security-sddl-l1-1-0.spec ├── api-ms-win-security-systemfunctions-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-security-systemfunctions-l1-1-0.spec ├── api-ms-win-service-core-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-service-core-l1-1-0.spec ├── api-ms-win-service-core-l1-1-1 │ ├── Makefile.in │ └── api-ms-win-service-core-l1-1-1.spec ├── api-ms-win-service-management-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-service-management-l1-1-0.spec ├── api-ms-win-service-management-l2-1-0 │ ├── Makefile.in │ └── api-ms-win-service-management-l2-1-0.spec ├── api-ms-win-service-private-l1-1-1 │ ├── Makefile.in │ └── api-ms-win-service-private-l1-1-1.spec ├── api-ms-win-service-winsvc-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-service-winsvc-l1-1-0.spec ├── api-ms-win-service-winsvc-l1-2-0 │ ├── Makefile.in │ └── api-ms-win-service-winsvc-l1-2-0.spec ├── api-ms-win-shcore-obsolete-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-shcore-obsolete-l1-1-0.spec ├── api-ms-win-shcore-scaling-l1-1-1 │ ├── Makefile.in │ └── api-ms-win-shcore-scaling-l1-1-1.spec ├── api-ms-win-shcore-stream-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-shcore-stream-l1-1-0.spec ├── api-ms-win-shcore-thread-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-shcore-thread-l1-1-0.spec ├── api-ms-win-shell-shellcom-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-shell-shellcom-l1-1-0.spec ├── api-ms-win-shell-shellfolders-l1-1-0 │ ├── Makefile.in │ └── api-ms-win-shell-shellfolders-l1-1-0.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.rc │ ├── appwiz.svg │ └── res.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 ├── 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 ├── 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 ├── bcrypt │ ├── Makefile.in │ ├── bcrypt.spec │ ├── bcrypt_internal.h │ ├── bcrypt_main.c │ ├── gcrypt.c │ ├── gnutls.c │ ├── macos.c │ ├── md2.c │ ├── sha256.c │ ├── sha512.c │ ├── tests │ │ ├── Makefile.in │ │ └── bcrypt.c │ └── version.rc ├── bluetoothapis │ ├── Makefile.in │ ├── bluetoothapis.spec │ └── main.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 │ └── main.c ├── cabinet │ ├── Makefile.in │ ├── cabinet.h │ ├── cabinet.rc │ ├── cabinet.spec │ ├── cabinet_main.c │ ├── deflate.c │ ├── fci.c │ ├── fdi.c │ ├── tests │ │ ├── Makefile.in │ │ ├── extract.c │ │ └── fdi.c │ └── zlib.h ├── capi2032 │ ├── Makefile.in │ ├── cap20wxx.c │ ├── cap20wxx.h │ └── capi2032.spec ├── 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 ├── clusapi │ ├── Makefile.in │ ├── clusapi.c │ └── clusapi.spec ├── combase │ ├── Makefile.in │ ├── combase.spec │ ├── roapi.c │ ├── string.c │ └── tests │ │ ├── Makefile.in │ │ ├── roapi.c │ │ └── string.c ├── comcat │ ├── Makefile.in │ ├── comcat.spec │ ├── comcat_main.c │ ├── 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 │ ├── comctl32undoc.c │ ├── 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_sm.ico │ ├── idi_tt_info_sm.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 │ ├── theme_dialog.c │ ├── theme_scrollbar.c │ ├── theming.c │ ├── toolbar.c │ ├── tooltips.c │ ├── trackbar.c │ ├── treeview.c │ └── updown.c ├── comdlg32 │ ├── Makefile.in │ ├── cdlg.h │ ├── cdlg32.c │ ├── cdrom.ico │ ├── colordlg.c │ ├── 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 ├── 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.spec │ └── compstui_main.c ├── comsvcs │ ├── Makefile.in │ ├── comsvcs.spec │ ├── comsvcs_classes.idl │ ├── comsvcs_tlb.idl │ ├── main.c │ └── tests │ │ ├── Makefile.in │ │ └── comsvcs.c ├── concrt140 │ ├── Makefile.in │ └── concrt140.spec ├── connect │ ├── Makefile.in │ ├── connect.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 ├── cryptdlg │ ├── Makefile.in │ ├── cryptdlg.rc │ ├── cryptdlg.spec │ ├── cryptres.h │ └── main.c ├── cryptdll │ ├── Makefile.in │ ├── cryptdll.c │ └── cryptdll.spec ├── cryptext │ ├── Makefile.in │ ├── cryptext.spec │ ├── cryptext_main.c │ └── tests │ │ ├── Makefile.in │ │ └── cryptext.c ├── cryptnet │ ├── Makefile.in │ ├── cryptnet.spec │ ├── cryptnet_main.c │ └── tests │ │ ├── Makefile.in │ │ └── cryptnet.c ├── 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 │ ├── ctapi.h │ ├── ctapi32.c │ └── ctapi32.spec ├── 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 │ ├── 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 │ ├── 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 ├── 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 ├── 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 │ ├── hlsl.l │ ├── hlsl.y │ ├── main.c │ ├── ppl.l │ ├── ppy.y │ ├── preproc.c │ ├── reflection.c │ ├── tests │ │ ├── Makefile.in │ │ ├── asm.c │ │ ├── blob.c │ │ ├── hlsl_d3d11.c │ │ ├── hlsl_d3d9.c │ │ └── reflection.c │ ├── utils.c │ ├── version.rc │ └── wpp_private.h ├── d3dcompiler_46 │ ├── Makefile.in │ ├── d3dcompiler_46.spec │ └── version.rc ├── d3dcompiler_47 │ ├── Makefile.in │ ├── d3dcompiler_47.spec │ ├── tests │ │ └── Makefile.in │ └── version.rc ├── d3dim │ ├── Makefile.in │ ├── d3dim.spec │ ├── d3dim_main.c │ └── 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 │ └── version.rc ├── d3dx10_35 │ ├── Makefile.in │ ├── d3dx10_35.spec │ ├── d3dx10_35_main.c │ └── version.rc ├── d3dx10_36 │ ├── Makefile.in │ ├── d3dx10_36.spec │ ├── d3dx10_36_main.c │ └── version.rc ├── d3dx10_37 │ ├── Makefile.in │ ├── d3dx10_37.spec │ ├── d3dx10_37_main.c │ └── version.rc ├── d3dx10_38 │ ├── Makefile.in │ ├── d3dx10_38.spec │ ├── d3dx10_38_main.c │ └── version.rc ├── d3dx10_39 │ ├── Makefile.in │ ├── d3dx10_39.spec │ ├── d3dx10_39_main.c │ └── version.rc ├── d3dx10_40 │ ├── Makefile.in │ ├── d3dx10_40.spec │ ├── d3dx10_40_main.c │ └── version.rc ├── d3dx10_41 │ ├── Makefile.in │ ├── d3dx10_41.spec │ ├── d3dx10_41_main.c │ └── version.rc ├── d3dx10_42 │ ├── Makefile.in │ ├── d3dx10_42.spec │ ├── d3dx10_42_main.c │ └── version.rc ├── d3dx10_43 │ ├── Makefile.in │ ├── async.c │ ├── d3dx10_43.spec │ ├── d3dx10_43_main.c │ ├── tests │ │ ├── Makefile.in │ │ └── d3dx10.c │ └── version.rc ├── d3dx11_42 │ ├── Makefile.in │ ├── d3dx11_42.spec │ └── 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 │ │ ├── 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 │ └── 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 ├── 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_ppc.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 │ ├── type.c │ ├── version.rc │ └── wdbgexts.h ├── dciman32 │ ├── Makefile.in │ ├── dciman32.spec │ └── dciman_main.c ├── 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 ├── 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 ├── dhtmled.ocx │ ├── Makefile.in │ ├── dhtmled.ocx.spec │ ├── dhtmled_private.h │ ├── dhtmled_tlb.idl │ ├── edit.c │ └── main.c ├── difxapi │ ├── Makefile.in │ ├── difxapi.spec │ └── main.c ├── dinput │ ├── Makefile.in │ ├── config.c │ ├── data_formats.c │ ├── device.c │ ├── device_private.h │ ├── dinput.rc │ ├── dinput.spec │ ├── dinput_classes.idl │ ├── dinput_main.c │ ├── dinput_private.h │ ├── effect_linuxinput.c │ ├── joystick.c │ ├── joystick_linux.c │ ├── joystick_linuxinput.c │ ├── joystick_osx.c │ ├── joystick_private.h │ ├── keyboard.c │ ├── mouse.c │ ├── resource.h │ ├── tests │ │ ├── Makefile.in │ │ ├── device.c │ │ ├── dinput.c │ │ ├── joystick.c │ │ ├── keyboard.c │ │ └── mouse.c │ └── version.rc ├── dinput8 │ ├── Makefile.in │ ├── dinput8.idl │ ├── dinput8.spec │ ├── tests │ │ ├── Makefile.in │ │ ├── device.c │ │ └── dinput.c │ └── 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 │ ├── band.c │ ├── bandtrack.c │ ├── dmband.idl │ ├── dmband.spec │ ├── dmband_main.c │ ├── dmband_private.h │ ├── dmobject.c │ ├── dmobject.h │ ├── dmutils.c │ ├── dmutils.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 │ ├── dmobject.c │ ├── dmobject.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 │ ├── dmobject.c │ ├── dmobject.h │ ├── dmutils.c │ ├── dmutils.h │ ├── graph.c │ ├── lyricstrack.c │ ├── markertrack.c │ ├── paramcontroltrack.c │ ├── performance.c │ ├── segment.c │ ├── segmentstate.c │ ├── segtriggertrack.c │ ├── seqtrack.c │ ├── sysextrack.c │ ├── tempotrack.c │ ├── tests │ │ ├── Makefile.in │ │ ├── dmime.c │ │ └── performance.c │ ├── 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 │ ├── dmobject.c │ ├── dmobject.h │ ├── loader.c │ ├── loaderstream.c │ ├── tests │ │ ├── Makefile.in │ │ └── loader.c │ └── version.rc ├── dmoguids │ ├── Makefile.in │ └── dmoguids.c ├── dmscript │ ├── Makefile.in │ ├── dmobject.c │ ├── dmobject.h │ ├── 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 │ ├── dmobject.c │ ├── dmobject.h │ ├── 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 │ ├── buffer.c │ ├── clock.c │ ├── collection.c │ ├── dmobject.c │ ├── dmobject.h │ ├── dmusic.c │ ├── dmusic.idl │ ├── dmusic.spec │ ├── dmusic_main.c │ ├── dmusic_private.h │ ├── download.c │ ├── instrument.c │ ├── port.c │ ├── tests │ │ ├── Makefile.in │ │ └── dmusic.c │ └── version.rc ├── dmusic32 │ ├── Makefile.in │ ├── dmusic32.spec │ ├── dmusic32_main.c │ └── version.rc ├── dnsapi │ ├── Makefile.in │ ├── dnsapi.h │ ├── dnsapi.spec │ ├── main.c │ ├── name.c │ ├── ns_name.c │ ├── ns_parse.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 ├── 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 ├── drmclien │ ├── Makefile.in │ ├── drmclien.spec │ └── main.c ├── dsdmo │ ├── Makefile.in │ ├── chorus.c │ ├── compressor.c │ ├── distortion.c │ ├── dsdmo.spec │ ├── dsdmo_classes.idl │ ├── dsdmo_private.h │ ├── echo.c │ ├── flanger.c │ ├── gargle.c │ ├── main.c │ ├── parameq.c │ ├── reverb.c │ └── reverb2.c ├── dsound │ ├── Makefile.in │ ├── buffer.c │ ├── capture.c │ ├── dsound.c │ ├── dsound.spec │ ├── dsound_classes.idl │ ├── dsound_convert.c │ ├── dsound_eax.h │ ├── dsound_main.c │ ├── dsound_private.h │ ├── duplex.c │ ├── eax.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.spec │ ├── main.c │ └── tests │ │ ├── Makefile.in │ │ └── dssenh.c ├── dswave │ ├── Makefile.in │ ├── dmobject.c │ ├── dmobject.h │ ├── dswave.c │ ├── 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 │ ├── Makefile.in │ ├── analyzer.c │ ├── bidi.c │ ├── bracket.c │ ├── direction.c │ ├── dwrite.spec │ ├── dwrite_private.h │ ├── font.c │ ├── freetype.c │ ├── gdiinterop.c │ ├── layout.c │ ├── linebreak.c │ ├── main.c │ ├── mirror.c │ ├── opentype.c │ ├── scripts.c │ ├── scripts.h │ ├── shape.c │ └── tests │ │ ├── Makefile.in │ │ ├── analyzer.c │ │ ├── font.c │ │ ├── layout.c │ │ ├── resource.rc │ │ ├── wine_test.sfd │ │ └── wine_test.ttf ├── dx8vb │ ├── Makefile.in │ ├── dx8vb.idl │ ├── dx8vb.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 ├── dxerr8 │ ├── Makefile.in │ └── dxerr8.c ├── dxerr9 │ ├── Makefile.in │ └── dxerr9.c ├── dxgi │ ├── Makefile.in │ ├── adapter.c │ ├── device.c │ ├── dxgi.spec │ ├── dxgi_main.c │ ├── dxgi_private.h │ ├── factory.c │ ├── output.c │ ├── surface.c │ ├── swapchain.c │ ├── tests │ │ ├── Makefile.in │ │ └── dxgi.c │ ├── utils.c │ └── version.rc ├── dxgkrnl.sys │ ├── Makefile.in │ ├── dxgkrnl.sys.spec │ └── main.c ├── dxgmms1.sys │ ├── Makefile.in │ ├── dxgmms1.sys.spec │ └── main.c ├── dxguid │ ├── Makefile.in │ ├── dx10guid.c │ ├── dx8guid.c │ ├── dx9guid.c │ └── dxguid.c ├── dxva2 │ ├── Makefile.in │ ├── backend.idl │ ├── devicemanager.c │ ├── dxva2.spec │ ├── dxva2_private.h │ ├── genericdecoder.c │ ├── main.c │ ├── softwareprocessor.c │ ├── tests │ │ ├── Makefile.in │ │ └── dxva2.c │ ├── vaapi-h264.c │ ├── vaapi-mpeg2.c │ ├── vaapi.c │ └── videoservices.c ├── esent │ ├── Makefile.in │ ├── esent.spec │ └── esent_main.c ├── evr │ ├── Makefile.in │ ├── evr.c │ ├── evr.spec │ ├── evr_classes.idl │ ├── evr_private.h │ ├── main.c │ └── tests │ │ ├── Makefile.in │ │ └── evr.c ├── explorerframe │ ├── Makefile.in │ ├── explorerframe.idl │ ├── explorerframe.spec │ ├── explorerframe_main.c │ ├── explorerframe_main.h │ ├── nstc.c │ ├── taskbarlist.c │ ├── tests │ │ ├── Makefile.in │ │ ├── msg.h │ │ └── nstc.c │ └── version.rc ├── ext-ms-win-appmodel-usercontext-l1-1-0 │ ├── Makefile.in │ ├── ext-ms-win-appmodel-usercontext-l1-1-0.spec │ └── main.c ├── ext-ms-win-authz-context-l1-1-0 │ ├── Makefile.in │ └── ext-ms-win-authz-context-l1-1-0.spec ├── ext-ms-win-domainjoin-netjoin-l1-1-0 │ ├── Makefile.in │ └── ext-ms-win-domainjoin-netjoin-l1-1-0.spec ├── ext-ms-win-dwmapi-ext-l1-1-0 │ ├── Makefile.in │ └── ext-ms-win-dwmapi-ext-l1-1-0.spec ├── ext-ms-win-gdi-dc-create-l1-1-0 │ ├── Makefile.in │ └── ext-ms-win-gdi-dc-create-l1-1-0.spec ├── ext-ms-win-gdi-dc-create-l1-1-1 │ ├── Makefile.in │ └── ext-ms-win-gdi-dc-create-l1-1-1.spec ├── ext-ms-win-gdi-dc-l1-2-0 │ ├── Makefile.in │ └── ext-ms-win-gdi-dc-l1-2-0.spec ├── ext-ms-win-gdi-devcaps-l1-1-0 │ ├── Makefile.in │ └── ext-ms-win-gdi-devcaps-l1-1-0.spec ├── ext-ms-win-gdi-draw-l1-1-0 │ ├── Makefile.in │ └── ext-ms-win-gdi-draw-l1-1-0.spec ├── ext-ms-win-gdi-draw-l1-1-1 │ ├── Makefile.in │ └── ext-ms-win-gdi-draw-l1-1-1.spec ├── ext-ms-win-gdi-font-l1-1-0 │ ├── Makefile.in │ └── ext-ms-win-gdi-font-l1-1-0.spec ├── ext-ms-win-gdi-font-l1-1-1 │ ├── Makefile.in │ └── ext-ms-win-gdi-font-l1-1-1.spec ├── ext-ms-win-gdi-render-l1-1-0 │ ├── Makefile.in │ └── ext-ms-win-gdi-render-l1-1-0.spec ├── ext-ms-win-kernel32-package-current-l1-1-0 │ ├── Makefile.in │ └── ext-ms-win-kernel32-package-current-l1-1-0.spec ├── ext-ms-win-kernel32-package-l1-1-1 │ ├── Makefile.in │ └── ext-ms-win-kernel32-package-l1-1-1.spec ├── ext-ms-win-ntuser-dialogbox-l1-1-0 │ ├── Makefile.in │ └── ext-ms-win-ntuser-dialogbox-l1-1-0.spec ├── ext-ms-win-ntuser-draw-l1-1-0 │ ├── Makefile.in │ └── ext-ms-win-ntuser-draw-l1-1-0.spec ├── ext-ms-win-ntuser-gui-l1-1-0 │ ├── Makefile.in │ └── ext-ms-win-ntuser-gui-l1-1-0.spec ├── ext-ms-win-ntuser-gui-l1-3-0 │ ├── Makefile.in │ └── ext-ms-win-ntuser-gui-l1-3-0.spec ├── ext-ms-win-ntuser-keyboard-l1-3-0 │ ├── Makefile.in │ └── ext-ms-win-ntuser-keyboard-l1-3-0.spec ├── ext-ms-win-ntuser-message-l1-1-0 │ ├── Makefile.in │ └── ext-ms-win-ntuser-message-l1-1-0.spec ├── ext-ms-win-ntuser-message-l1-1-1 │ ├── Makefile.in │ └── ext-ms-win-ntuser-message-l1-1-1.spec ├── ext-ms-win-ntuser-misc-l1-1-0 │ ├── Makefile.in │ └── ext-ms-win-ntuser-misc-l1-1-0.spec ├── ext-ms-win-ntuser-misc-l1-2-0 │ ├── Makefile.in │ └── ext-ms-win-ntuser-misc-l1-2-0.spec ├── ext-ms-win-ntuser-misc-l1-5-1 │ ├── Makefile.in │ └── ext-ms-win-ntuser-misc-l1-5-1.spec ├── ext-ms-win-ntuser-mouse-l1-1-0 │ ├── Makefile.in │ └── ext-ms-win-ntuser-mouse-l1-1-0.spec ├── ext-ms-win-ntuser-private-l1-1-1 │ ├── Makefile.in │ └── ext-ms-win-ntuser-private-l1-1-1.spec ├── ext-ms-win-ntuser-private-l1-3-1 │ ├── Makefile.in │ └── ext-ms-win-ntuser-private-l1-3-1.spec ├── ext-ms-win-ntuser-rectangle-ext-l1-1-0 │ ├── Makefile.in │ └── ext-ms-win-ntuser-rectangle-ext-l1-1-0.spec ├── ext-ms-win-ntuser-uicontext-ext-l1-1-0 │ ├── Makefile.in │ └── ext-ms-win-ntuser-uicontext-ext-l1-1-0.spec ├── ext-ms-win-ntuser-window-l1-1-0 │ ├── Makefile.in │ └── ext-ms-win-ntuser-window-l1-1-0.spec ├── ext-ms-win-ntuser-window-l1-1-1 │ ├── Makefile.in │ └── ext-ms-win-ntuser-window-l1-1-1.spec ├── ext-ms-win-ntuser-window-l1-1-4 │ ├── Makefile.in │ └── ext-ms-win-ntuser-window-l1-1-4.spec ├── ext-ms-win-ntuser-windowclass-l1-1-0 │ ├── Makefile.in │ └── ext-ms-win-ntuser-windowclass-l1-1-0.spec ├── ext-ms-win-ntuser-windowclass-l1-1-1 │ ├── Makefile.in │ └── ext-ms-win-ntuser-windowclass-l1-1-1.spec ├── ext-ms-win-oleacc-l1-1-0 │ ├── Makefile.in │ └── ext-ms-win-oleacc-l1-1-0.spec ├── ext-ms-win-ras-rasapi32-l1-1-0 │ ├── Makefile.in │ └── ext-ms-win-ras-rasapi32-l1-1-0.spec ├── ext-ms-win-rtcore-gdi-devcaps-l1-1-0 │ ├── Makefile.in │ └── ext-ms-win-rtcore-gdi-devcaps-l1-1-0.spec ├── ext-ms-win-rtcore-gdi-object-l1-1-0 │ ├── Makefile.in │ └── ext-ms-win-rtcore-gdi-object-l1-1-0.spec ├── ext-ms-win-rtcore-gdi-rgn-l1-1-0 │ ├── Makefile.in │ └── ext-ms-win-rtcore-gdi-rgn-l1-1-0.spec ├── ext-ms-win-rtcore-ntuser-cursor-l1-1-0 │ ├── Makefile.in │ └── ext-ms-win-rtcore-ntuser-cursor-l1-1-0.spec ├── ext-ms-win-rtcore-ntuser-dc-access-l1-1-0 │ ├── Makefile.in │ └── ext-ms-win-rtcore-ntuser-dc-access-l1-1-0.spec ├── ext-ms-win-rtcore-ntuser-dpi-l1-1-0 │ ├── Makefile.in │ └── ext-ms-win-rtcore-ntuser-dpi-l1-1-0.spec ├── ext-ms-win-rtcore-ntuser-dpi-l1-2-0 │ ├── Makefile.in │ └── ext-ms-win-rtcore-ntuser-dpi-l1-2-0.spec ├── ext-ms-win-rtcore-ntuser-rawinput-l1-1-0 │ ├── Makefile.in │ └── ext-ms-win-rtcore-ntuser-rawinput-l1-1-0.spec ├── ext-ms-win-rtcore-ntuser-syscolors-l1-1-0 │ ├── Makefile.in │ └── ext-ms-win-rtcore-ntuser-syscolors-l1-1-0.spec ├── ext-ms-win-rtcore-ntuser-sysparams-l1-1-0 │ ├── Makefile.in │ └── ext-ms-win-rtcore-ntuser-sysparams-l1-1-0.spec ├── ext-ms-win-security-credui-l1-1-0 │ ├── Makefile.in │ └── ext-ms-win-security-credui-l1-1-0.spec ├── ext-ms-win-security-cryptui-l1-1-0 │ ├── Makefile.in │ └── ext-ms-win-security-cryptui-l1-1-0.spec ├── ext-ms-win-shell-comctl32-init-l1-1-0 │ ├── Makefile.in │ └── ext-ms-win-shell-comctl32-init-l1-1-0.spec ├── ext-ms-win-shell-comdlg32-l1-1-0 │ ├── Makefile.in │ └── ext-ms-win-shell-comdlg32-l1-1-0.spec ├── ext-ms-win-shell-shell32-l1-2-0 │ ├── Makefile.in │ └── ext-ms-win-shell-shell32-l1-2-0.spec ├── ext-ms-win-uxtheme-themes-l1-1-0 │ ├── Makefile.in │ └── ext-ms-win-uxtheme-themes-l1-1-0.spec ├── ext-ms-win-xaml-pal-l1-1-0 │ ├── Makefile.in │ ├── ext-ms-win-xaml-pal-l1-1-0.spec │ └── main.c ├── faultrep │ ├── Makefile.in │ ├── faultrep.c │ ├── faultrep.spec │ └── tests │ │ ├── Makefile.in │ │ └── faultrep.c ├── feclient │ ├── Makefile.in │ ├── feclient.spec │ └── main.c ├── 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 │ ├── main.c │ ├── rsrc.rc │ └── tests │ │ ├── Makefile.in │ │ ├── gameexplorer.c │ │ ├── gamestatistics.c │ │ ├── rsrc.rc │ │ └── test.gdf.xml ├── gdi.exe16 │ ├── Makefile.in │ ├── bidi.c │ ├── env.c │ ├── gdi.c │ ├── gdi.exe16.spec │ ├── metafile.c │ ├── printdrv.c │ └── version.rc ├── gdi32 │ ├── Makefile.in │ ├── bidi.c │ ├── bitblt.c │ ├── bitmap.c │ ├── brush.c │ ├── clipping.c │ ├── dc.c │ ├── dib.c │ ├── dibdrv │ │ ├── bitblt.c │ │ ├── dc.c │ │ ├── dibdrv.h │ │ ├── graphics.c │ │ ├── objects.c │ │ ├── opengl.c │ │ └── primitives.c │ ├── direction.c │ ├── driver.c │ ├── enhmetafile.c │ ├── enhmfdrv │ │ ├── bitblt.c │ │ ├── dc.c │ │ ├── enhmetafiledrv.h │ │ ├── graphics.c │ │ ├── init.c │ │ └── objects.c │ ├── font.c │ ├── freetype.c │ ├── gdi32.rc │ ├── gdi32.spec │ ├── gdi_private.h │ ├── gdiobj.c │ ├── icm.c │ ├── mapping.c │ ├── metafile.c │ ├── mfdrv │ │ ├── bitblt.c │ │ ├── dc.c │ │ ├── graphics.c │ │ ├── init.c │ │ ├── metafiledrv.h │ │ ├── objects.c │ │ └── text.c │ ├── opengl.c │ ├── painting.c │ ├── palette.c │ ├── path.c │ ├── pen.c │ ├── printdrv.c │ ├── region.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_longname.sfd │ │ ├── wine_longname.ttf │ │ ├── wine_test.sfd │ │ ├── wine_test.ttf │ │ ├── wine_vdmx.sfd │ │ └── wine_vdmx.ttf │ ├── vertical.c │ └── vulkan.c ├── 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 ├── 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 ├── gphoto2.ds │ ├── Makefile.in │ ├── capability.c │ ├── ds_image.c │ ├── gphoto2.ds.spec │ ├── gphoto2.rc │ ├── gphoto2_i.h │ ├── gphoto2_main.c │ ├── resource.h │ └── ui.c ├── gpkcsp │ ├── Makefile.in │ ├── gpkcsp.spec │ └── main.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 │ ├── main.c │ ├── tests │ │ ├── Makefile.in │ │ └── device.c │ └── version.rc ├── hidclass.sys │ ├── Makefile.in │ ├── buffer.c │ ├── descriptor.c │ ├── device.c │ ├── hid.h │ ├── hidclass.sys.spec │ ├── main.c │ └── pnp.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 ├── http.sys │ ├── Makefile.in │ ├── http.c │ └── http.sys.spec ├── httpapi │ ├── Makefile.in │ ├── httpapi.spec │ ├── httpapi_main.c │ └── tests │ │ ├── Makefile.in │ │ └── httpapi.c ├── iccvid │ ├── Makefile.in │ ├── iccvid.c │ ├── iccvid.rc │ ├── iccvid.spec │ └── iccvid_private.h ├── icmp │ ├── Makefile.in │ └── icmp.spec ├── ieframe │ ├── Makefile.in │ ├── classinfo.c │ ├── client.c │ ├── dochost.c │ ├── events.c │ ├── frame.c │ ├── ie.c │ ├── ieframe.h │ ├── 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 │ ├── iertutil.spec │ └── main.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 ├── imm.dll16 │ ├── Makefile.in │ └── imm.dll16.spec ├── imm32 │ ├── Makefile.in │ ├── imm.c │ ├── imm32.spec │ ├── tests │ │ ├── Makefile.in │ │ └── 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.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 │ └── main.c ├── inkobj │ ├── Makefile.in │ ├── inkobj.c │ ├── inkobj.spec │ └── inkobj_internal.h ├── inseng │ ├── Makefile.in │ ├── icif.c │ ├── inf.c │ ├── inseng.spec │ ├── inseng_classes.idl │ ├── inseng_main.c │ └── inseng_private.h ├── iphlpapi │ ├── Makefile.in │ ├── icmp.c │ ├── ifenum.c │ ├── ifenum.h │ ├── ip.h │ ├── ip_icmp.h │ ├── iphlpapi.spec │ ├── iphlpapi_main.c │ ├── ipstats.c │ ├── ipstats.h │ ├── tests │ │ ├── Makefile.in │ │ └── iphlpapi.c │ └── version.rc ├── iprop │ ├── Makefile.in │ └── iprop.spec ├── irprops.cpl │ ├── Makefile.in │ └── irprops.cpl.spec ├── itircl │ ├── Makefile.in │ ├── itircl.spec │ └── itircl_main.c ├── 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 │ ├── joy.cpl.spec │ ├── joy.h │ ├── joy.ico │ ├── joy.rc │ ├── joy.svg │ └── main.c ├── jscript │ ├── Makefile.in │ ├── activex.c │ ├── array.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 │ ├── 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 │ ├── 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 ├── kernel32 │ ├── Makefile.in │ ├── actctx.c │ ├── atom.c │ ├── comm.c │ ├── computername.c │ ├── console.c │ ├── console_private.h │ ├── cpu.c │ ├── debugger.c │ ├── editline.c │ ├── environ.c │ ├── file.c │ ├── format_msg.c │ ├── heap.c │ ├── kernel32.spec │ ├── kernel_main.c │ ├── kernel_private.h │ ├── lcformat.c │ ├── locale.c │ ├── locale_rc.rc │ ├── lzexpand.c │ ├── module.c │ ├── nls │ │ ├── afk.nls │ │ ├── ara.nls │ │ ├── arb.nls │ │ ├── are.nls │ │ ├── arg.nls │ │ ├── arh.nls │ │ ├── ari.nls │ │ ├── arj.nls │ │ ├── ark.nls │ │ ├── arl.nls │ │ ├── arm.nls │ │ ├── aro.nls │ │ ├── arq.nls │ │ ├── ars.nls │ │ ├── art.nls │ │ ├── aru.nls │ │ ├── ary.nls │ │ ├── ast.nls │ │ ├── aze.nls │ │ ├── azl.nls │ │ ├── bel.nls │ │ ├── ben.nls │ │ ├── bgr.nls │ │ ├── brf.nls │ │ ├── cat.nls │ │ ├── chs.nls │ │ ├── cht.nls │ │ ├── cor.nls │ │ ├── csy.nls │ │ ├── cym.nls │ │ ├── dan.nls │ │ ├── dea.nls │ │ ├── dec.nls │ │ ├── del.nls │ │ ├── des.nls │ │ ├── deu.nls │ │ ├── div.nls │ │ ├── ell.nls │ │ ├── ena.nls │ │ ├── enb.nls │ │ ├── enc.nls │ │ ├── eng.nls │ │ ├── eni.nls │ │ ├── enj.nls │ │ ├── enl.nls │ │ ├── enp.nls │ │ ├── ens.nls │ │ ├── ent.nls │ │ ├── enu.nls │ │ ├── enw.nls │ │ ├── enz.nls │ │ ├── eox.nls │ │ ├── esa.nls │ │ ├── esb.nls │ │ ├── esc.nls │ │ ├── esd.nls │ │ ├── ese.nls │ │ ├── esf.nls │ │ ├── esg.nls │ │ ├── esh.nls │ │ ├── esi.nls │ │ ├── esl.nls │ │ ├── esm.nls │ │ ├── esn.nls │ │ ├── eso.nls │ │ ├── esp.nls │ │ ├── esr.nls │ │ ├── ess.nls │ │ ├── esu.nls │ │ ├── esv.nls │ │ ├── esy.nls │ │ ├── esz.nls │ │ ├── eti.nls │ │ ├── euq.nls │ │ ├── far.nls │ │ ├── fin.nls │ │ ├── fos.nls │ │ ├── fra.nls │ │ ├── frb.nls │ │ ├── frc.nls │ │ ├── frl.nls │ │ ├── frm.nls │ │ ├── frs.nls │ │ ├── gae.nls │ │ ├── gdh.nls │ │ ├── gdv.nls │ │ ├── glc.nls │ │ ├── guj.nls │ │ ├── heb.nls │ │ ├── hin.nls │ │ ├── hrv.nls │ │ ├── hun.nls │ │ ├── hye.nls │ │ ├── ind.nls │ │ ├── isl.nls │ │ ├── ita.nls │ │ ├── its.nls │ │ ├── ivl.nls │ │ ├── jpn.nls │ │ ├── kan.nls │ │ ├── kat.nls │ │ ├── kkz.nls │ │ ├── knk.nls │ │ ├── kor.nls │ │ ├── kyr.nls │ │ ├── lth.nls │ │ ├── lvi.nls │ │ ├── mar.nls │ │ ├── mki.nls │ │ ├── mon.nls │ │ ├── msb.nls │ │ ├── msl.nls │ │ ├── nep.nls │ │ ├── nlb.nls │ │ ├── nld.nls │ │ ├── nls.nls │ │ ├── non.nls │ │ ├── nor.nls │ │ ├── pan.nls │ │ ├── plk.nls │ │ ├── ptb.nls │ │ ├── ptg.nls │ │ ├── rmc.nls │ │ ├── rom.nls │ │ ├── rus.nls │ │ ├── san.nls │ │ ├── sin.nls │ │ ├── sky.nls │ │ ├── slv.nls │ │ ├── sqi.nls │ │ ├── srb.nls │ │ ├── srl.nls │ │ ├── sve.nls │ │ ├── svf.nls │ │ ├── swk.nls │ │ ├── syr.nls │ │ ├── tam.nls │ │ ├── tel.nls │ │ ├── tha.nls │ │ ├── trk.nls │ │ ├── ttt.nls │ │ ├── ukr.nls │ │ ├── urd.nls │ │ ├── uzb.nls │ │ ├── uzl.nls │ │ ├── vit.nls │ │ ├── wal.nls │ │ ├── zhh.nls │ │ ├── zhi.nls │ │ └── zhm.nls │ ├── path.c │ ├── powermgnt.c │ ├── process.c │ ├── profile.c │ ├── resource.c │ ├── string.c │ ├── sync.c │ ├── tape.c │ ├── term.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 │ ├── thread.c │ ├── time.c │ ├── toolhelp.c │ ├── version.c │ ├── version.rc │ ├── virtual.c │ ├── volume.c │ ├── wer.c │ └── winerror.mc ├── kernelbase │ ├── Makefile.in │ ├── collation.c │ ├── console.c │ ├── debug.c │ ├── digitmap.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 │ │ ├── path.c │ │ ├── rsrc.rc │ │ ├── sync.c │ │ └── test.manifest │ ├── thread.c │ └── version.c ├── 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 ├── ksuser │ ├── Makefile.in │ ├── ksuser.spec │ └── main.c ├── ktmw32 │ ├── Makefile.in │ ├── ktmw32.spec │ └── ktmw32_main.c ├── l3codeca.acm │ ├── Makefile.in │ ├── l3codeca.acm.spec │ └── mpegl3.c ├── loadperf │ ├── Makefile.in │ ├── loadperf.spec │ └── loadperf_main.c ├── localspl │ ├── Makefile.in │ ├── localmon.c │ ├── localspl.rc │ ├── localspl.spec │ ├── localspl_main.c │ ├── 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 ├── 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 │ ├── main.c │ └── 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 │ ├── main.c │ ├── mf.idl │ ├── mf.rc │ ├── mf.rgs │ ├── mf.spec │ ├── mf_private.h │ ├── samplegrabber.c │ ├── sar.c │ ├── session.c │ ├── tests │ │ ├── Makefile.in │ │ ├── mf.c │ │ ├── resource.rc │ │ └── test.wav │ └── topology.c ├── mf3216 │ ├── Makefile.in │ └── mf3216.spec ├── mferror │ ├── Makefile.in │ ├── mferror.mc │ └── mferror.spec ├── mfmediaengine │ ├── Makefile.in │ ├── main.c │ ├── mediaengine.idl │ ├── mediaengine_classes.idl │ ├── mfmediaengine.spec │ └── tests │ │ ├── Makefile.in │ │ └── mfmediaengine.c ├── mfplat │ ├── Makefile.in │ ├── buffer.c │ ├── main.c │ ├── mediatype.c │ ├── mfplat.spec │ ├── mfplat_private.h │ ├── queue.c │ └── tests │ │ ├── Makefile.in │ │ ├── mfplat.c │ │ ├── resource.rc │ │ └── test.mp4 ├── mfplay │ ├── Makefile.in │ ├── mfplay.spec │ └── player.c ├── mfreadwrite │ ├── Makefile.in │ ├── mf_classes.idl │ ├── mf_private.h │ ├── mfreadwrite.spec │ ├── reader.c │ ├── tests │ │ ├── Makefile.in │ │ ├── mfplat.c │ │ ├── resource.rc │ │ └── test.wav │ └── writer.c ├── mfuuid │ ├── Makefile.in │ └── mfuuid.c ├── mgmtapi │ ├── Makefile.in │ ├── mgmtapi.c │ └── mgmtapi.spec ├── midimap │ ├── Makefile.in │ ├── midimap.c │ └── midimap.spec ├── mlang │ ├── Makefile.in │ ├── mlang.c │ ├── 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 │ ├── audiovolume.c │ ├── devenum.c │ ├── main.c │ ├── mmdevapi.h │ ├── mmdevapi.spec │ ├── mmdevapi_classes.idl │ └── tests │ │ ├── Makefile.in │ │ ├── capture.c │ │ ├── dependency.c │ │ ├── mmdevenum.c │ │ ├── propstore.c │ │ └── render.c ├── 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 ├── mountmgr.sys │ ├── Makefile.in │ ├── dbus.c │ ├── device.c │ ├── diskarb.c │ ├── mountmgr.c │ ├── mountmgr.h │ └── mountmgr.sys.spec ├── 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 ├── mscat32 │ ├── Makefile.in │ ├── main.c │ └── mscat32.spec ├── mscms │ ├── Makefile.in │ ├── handle.c │ ├── icc.c │ ├── mscms.spec │ ├── mscms_main.c │ ├── mscms_priv.h │ ├── profile.c │ ├── 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 │ │ ├── metahost.c │ │ ├── mscoree.c │ │ └── resource.rc ├── mscorwks │ ├── Makefile.in │ ├── mscorwks.spec │ └── mscorwks_main.c ├── 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 ├── msctfp │ ├── Makefile.in │ ├── msctfp.idl │ └── msctfp.spec ├── msdaps │ ├── Makefile.in │ ├── main.c │ ├── msdaps.idl │ ├── msdaps.spec │ ├── row_server.c │ ├── row_server.idl │ └── usrmarshal.c ├── msdelta │ ├── Makefile.in │ ├── msdelta.spec │ └── msdelta_main.c ├── 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.spec │ └── mshtml_tlb.idl ├── mshtml │ ├── Makefile.in │ ├── binding.h │ ├── blank.htm │ ├── conpoint.c │ ├── dispex.c │ ├── editor.c │ ├── htmlanchor.c │ ├── htmlarea.c │ ├── htmlattr.c │ ├── htmlbody.c │ ├── htmlcomment.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 │ ├── 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 │ │ ├── documentmode.js │ │ ├── dom.c │ │ ├── dom.js │ │ ├── es5.js │ │ ├── events.c │ │ ├── events.html │ │ ├── events.js │ │ ├── exectest.html │ │ ├── externscr.js │ │ ├── frame.js │ │ ├── htmldoc.c │ │ ├── htmllocation.c │ │ ├── jstest.html │ │ ├── misc.c │ │ ├── mshtml_test.h │ │ ├── navigation.js │ │ ├── protocol.c │ │ ├── rsrc.rc │ │ ├── runscript.html │ │ ├── script.c │ │ ├── style.c │ │ ├── test_tlb.idl │ │ ├── vbtest.html │ │ ├── winetest.js │ │ ├── xhr.js │ │ └── 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 │ │ ├── rsrc.rc │ │ ├── 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 │ └── msimsg.spec ├── 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 │ └── msls31_main.c ├── 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 │ ├── main.c │ └── 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 │ └── mssign32_private.h ├── mssip32 │ ├── Makefile.in │ ├── main.c │ └── 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 ├── 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 ├── 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 │ ├── 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 ├── 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 ├── msvcr120_app │ ├── Makefile.in │ └── msvcr120_app.spec ├── msvcr70 │ ├── Makefile.in │ └── msvcr70.spec ├── msvcr71 │ ├── Makefile.in │ └── msvcr71.spec ├── msvcr80 │ ├── Makefile.in │ ├── msvcr80.manifest │ ├── msvcr80.rc │ └── msvcr80.spec ├── msvcr90 │ ├── Makefile.in │ ├── msvcr90.manifest │ ├── msvcr90.rc │ ├── msvcr90.spec │ └── tests │ │ ├── Makefile.in │ │ ├── msvcr90.c │ │ ├── msvcr90.manifest │ │ └── msvcr90.rc ├── msvcrt │ ├── Makefile.in │ ├── 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_i386.c │ ├── except_x86_64.c │ ├── exit.c │ ├── file.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 │ ├── scheduler.c │ ├── string.c │ ├── tests │ │ ├── Makefile.in │ │ ├── cpp.c │ │ ├── data.c │ │ ├── dir.c │ │ ├── environ.c │ │ ├── file.c │ │ ├── headers.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.c │ └── 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 ├── mswsock │ ├── Makefile.in │ ├── mswsock.c │ ├── mswsock.spec │ └── version.rc ├── msxml │ ├── Makefile.in │ ├── main.c │ ├── msxml.rgs │ ├── msxml.spec │ ├── msxml_tlb.idl │ └── rsrc.rc ├── msxml2 │ ├── Makefile.in │ ├── main.c │ ├── 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_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 │ ├── main.c │ ├── msxml4.manifest │ ├── msxml4.spec │ ├── msxml4_tlb.idl │ └── rsrc.rc ├── msxml6 │ ├── Makefile.in │ ├── main.c │ ├── msxml6.manifest │ ├── msxml6.spec │ ├── msxml6_tlb.idl │ └── rsrc.rc ├── mtxdm │ ├── Makefile.in │ ├── mtxdm.spec │ └── mtxdm_main.c ├── ncrypt │ ├── Makefile.in │ ├── main.c │ └── ncrypt.spec ├── nddeapi │ ├── Makefile.in │ ├── nddeapi.c │ └── nddeapi.spec ├── ndis.sys │ ├── Makefile.in │ ├── main.c │ └── ndis.sys.spec ├── 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 ├── netcfgx │ ├── Makefile.in │ ├── main.c │ ├── netcfg.c │ ├── netcfg_private.h │ ├── netcfgx.spec │ ├── netcfgx_classes.idl │ └── tests │ │ ├── Makefile.in │ │ └── netcfgx.c ├── netprofm │ ├── Makefile.in │ ├── list.c │ ├── main.c │ ├── netprofm.idl │ ├── netprofm.spec │ ├── netprofm_private.h │ └── tests │ │ ├── Makefile.in │ │ └── list.c ├── newdev │ ├── Makefile.in │ ├── main.c │ └── newdev.spec ├── ninput │ ├── Makefile.in │ ├── main.c │ ├── ninput.spec │ └── tests │ │ ├── Makefile.in │ │ └── ninput.c ├── normaliz │ ├── Makefile.in │ ├── normaliz.c │ └── normaliz.spec ├── npmshtml │ ├── Makefile.in │ ├── main.c │ ├── npmshtml.spec │ └── rsrc.rc ├── npptools │ ├── Makefile.in │ ├── main.c │ └── npptools.spec ├── ntdll │ ├── Makefile.in │ ├── actctx.c │ ├── atom.c │ ├── cdrom.c │ ├── critsection.c │ ├── crypt.c │ ├── debugbuffer.c │ ├── debugtools.c │ ├── directory.c │ ├── env.c │ ├── error.c │ ├── esync.c │ ├── esync.h │ ├── exception.c │ ├── file.c │ ├── handletable.c │ ├── heap.c │ ├── large_int.c │ ├── loader.c │ ├── loadorder.c │ ├── locale.c │ ├── make_errors │ ├── misc.c │ ├── nt.c │ ├── ntdll.spec │ ├── ntdll_misc.h │ ├── om.c │ ├── path.c │ ├── printf.c │ ├── process.c │ ├── reg.c │ ├── relay.c │ ├── resource.c │ ├── rtl.c │ ├── rtlbitmap.c │ ├── rtlstr.c │ ├── sec.c │ ├── serial.c │ ├── server.c │ ├── signal_arm.c │ ├── signal_arm64.c │ ├── signal_i386.c │ ├── signal_powerpc.c │ ├── signal_x86_64.c │ ├── string.c │ ├── sync.c │ ├── tape.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 │ │ ├── ntdll_test.h │ │ ├── om.c │ │ ├── path.c │ │ ├── pipe.c │ │ ├── port.c │ │ ├── reg.c │ │ ├── rtl.c │ │ ├── rtlbitmap.c │ │ ├── rtlstr.c │ │ ├── string.c │ │ ├── threadpool.c │ │ ├── time.c │ │ └── virtual.c │ ├── thread.c │ ├── threadpool.c │ ├── time.c │ ├── version.c │ ├── version.rc │ ├── virtual.c │ └── wcstring.c ├── ntdsapi │ ├── Makefile.in │ ├── ntdsapi.c │ ├── ntdsapi.spec │ └── tests │ │ ├── Makefile.in │ │ └── ntdsapi.c ├── ntoskrnl.exe │ ├── Makefile.in │ ├── disk.c │ ├── handle.c │ ├── instr.c │ ├── ntoskrnl.c │ ├── ntoskrnl.exe.spec │ ├── ntoskrnl.rc │ ├── ntoskrnl_private.h │ ├── pnp.c │ ├── sync.c │ ├── tests │ │ ├── Makefile.in │ │ ├── driver.c │ │ ├── driver.h │ │ ├── driver.spec │ │ ├── driver2.c │ │ ├── driver2.spec │ │ ├── driver3.c │ │ ├── driver3.spec │ │ └── ntoskrnl.c │ └── virtual.c ├── ntprint │ ├── Makefile.in │ ├── ntprint.c │ ├── ntprint.rc │ ├── ntprint.spec │ └── tests │ │ ├── Makefile.in │ │ └── ntprint.c ├── nvapi │ ├── Makefile.in │ ├── nvapi.c │ ├── nvapi.spec │ └── tests │ │ ├── Makefile.in │ │ └── nvapi.c ├── nvapi64 │ ├── Makefile.in │ └── nvapi64.spec ├── nvcuda │ ├── Makefile.in │ ├── internal.c │ ├── nvcuda.c │ ├── nvcuda.h │ ├── nvcuda.rc │ ├── nvcuda.spec │ └── tests │ │ ├── Makefile.in │ │ └── nvcuda.c ├── nvcuvid │ ├── Makefile.in │ ├── nvcuvid.c │ └── nvcuvid.spec ├── nvencodeapi │ ├── Makefile.in │ ├── nvencodeapi.c │ └── nvencodeapi.spec ├── nvencodeapi64 │ ├── Makefile.in │ └── nvencodeapi64.spec ├── objsel │ ├── Makefile.in │ ├── factory.c │ ├── objsel.c │ ├── objsel.rc │ ├── objsel.spec │ ├── objsel_classes.idl │ └── objsel_private.h ├── odbc32 │ ├── Makefile.in │ ├── odbc32.spec │ ├── proxyodbc.c │ └── rsrc.rc ├── odbcbcp │ ├── Makefile.in │ ├── main.c │ └── 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 │ ├── errorinfo.c │ ├── filelockbytes.c │ ├── filemoniker.c │ ├── ftmarshal.c │ ├── git.c │ ├── hglobalstream.c │ ├── ifs.c │ ├── irot.idl │ ├── irpcss.idl │ ├── itemmoniker.c │ ├── marshal.c │ ├── memlockbytes.c │ ├── moniker.c │ ├── moniker.h │ ├── nodrop.cur │ ├── nodrop.svg │ ├── ole2.c │ ├── ole2impl.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 │ ├── rpc.c │ ├── stg_prop.c │ ├── stg_stream.c │ ├── storage32.c │ ├── storage32.h │ ├── stubmanager.c │ ├── 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 │ ├── 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 │ ├── main.c │ ├── olethk32.spec │ └── version.rc ├── opcservices │ ├── Makefile.in │ ├── compress.c │ ├── deflate.c │ ├── factory.c │ ├── opc_private.h │ ├── opcservices.idl │ ├── opcservices.spec │ ├── package.c │ ├── tests │ │ ├── Makefile.in │ │ └── opcservices.c │ ├── uri.c │ └── zlib.h ├── openal32 │ ├── Makefile.in │ ├── openal.c │ └── openal32.spec ├── opencl │ ├── Makefile.in │ ├── opencl.c │ └── opencl.spec ├── opengl32 │ ├── Makefile.in │ ├── make_opengl │ ├── opengl32.spec │ ├── opengl_ext.c │ ├── opengl_ext.h │ ├── opengl_norm.c │ ├── tests │ │ ├── Makefile.in │ │ └── opengl.c │ ├── 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 │ ├── main.c │ ├── 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 ├── 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 ├── qasf │ ├── Makefile.in │ ├── dmowrapper.c │ ├── qasf.spec │ ├── qasf_classes.idl │ ├── qasf_main.c │ ├── qasf_private.h │ └── tests │ │ ├── Makefile.in │ │ └── dmowrapper.c ├── qcap │ ├── Makefile.in │ ├── audiorecord.c │ ├── avico.c │ ├── avimux.c │ ├── capture.h │ ├── capturegraph.c │ ├── qcap.spec │ ├── qcap_classes.idl │ ├── qcap_main.c │ ├── qcap_main.h │ ├── smartteefilter.c │ ├── tests │ │ ├── Makefile.in │ │ ├── audiorecord.c │ │ ├── avico.c │ │ ├── avimux.c │ │ ├── capturegraph.c │ │ ├── qcap.c │ │ ├── smartteefilter.c │ │ └── videocapture.c │ ├── v4l.c │ ├── version.rc │ └── vfwcapture.c ├── 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 ├── 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 │ ├── qmgr_main.c │ ├── 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 │ ├── dsoundrender.c │ ├── enummoniker.c │ ├── enumregfilters.c │ ├── filesource.c │ ├── filtergraph.c │ ├── filtermapper.c │ ├── main.c │ ├── memallocator.c │ ├── passthrough.c │ ├── quartz.rc │ ├── quartz.rgs │ ├── quartz.spec │ ├── quartz_private.h │ ├── quartz_strmif.idl │ ├── regsvr.c │ ├── systemclock.c │ ├── tests │ │ ├── Makefile.in │ │ ├── acmwrapper.c │ │ ├── avidec.c │ │ ├── avisplit.c │ │ ├── dsoundrender.c │ │ ├── filesource.c │ │ ├── filtergraph.c │ │ ├── filtermapper.c │ │ ├── memallocator.c │ │ ├── mpegsplit.c │ │ ├── passthrough.c │ │ ├── rsrc.rc │ │ ├── systemclock.c │ │ ├── test.avi │ │ ├── test.mp3 │ │ ├── test.mpg │ │ ├── test.wav │ │ ├── videorenderer.c │ │ ├── vmr7.c │ │ ├── vmr9.c │ │ └── waveparser.c │ ├── video.c │ ├── videorenderer.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 │ ├── main.c │ └── regapi.spec ├── resutils │ ├── Makefile.in │ ├── resutils.c │ └── 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 ├── 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 │ │ ├── generated.c │ │ ├── ndr_marshall.c │ │ ├── rpc.c │ │ ├── rpc_async.c │ │ ├── server.c │ │ ├── server.idl │ │ ├── server_defines.h │ │ └── server_interp.idl │ └── 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 │ ├── main.c │ ├── rtutils.spec │ └── tracing.c ├── rtworkq │ ├── Makefile.in │ ├── queue.c │ ├── rtworkq.spec │ └── tests │ │ ├── Makefile.in │ │ └── rtworkq.c ├── samlib │ ├── Makefile.in │ ├── main.c │ └── 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 ├── sapi │ ├── Makefile.in │ ├── automation.c │ ├── main.c │ ├── sapi.rc │ ├── sapi.rgs │ ├── sapi.spec │ ├── sapi_classes.idl │ ├── sapi_private.h │ ├── sapi_typelib.idl │ ├── tests │ │ ├── Makefile.in │ │ ├── automation.c │ │ ├── token.c │ │ └── tts.c │ ├── token.c │ └── tts.c ├── sas │ ├── Makefile.in │ ├── main.c │ └── sas.spec ├── scarddlg │ ├── Makefile.in │ ├── main.c │ └── scarddlg.spec ├── sccbase │ ├── Makefile.in │ ├── main.c │ └── 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 ├── secur32 │ ├── Makefile.in │ ├── base64_codec.c │ ├── dispatcher.c │ ├── hmac_md5.c │ ├── hmac_md5.h │ ├── lsa.c │ ├── negotiate.c │ ├── ntlm.c │ ├── schannel.c │ ├── schannel_gnutls.c │ ├── schannel_macosx.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 │ ├── util.c │ └── 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_main.c ├── sfc_os │ ├── Makefile.in │ ├── sfc_os.c │ └── sfc_os.spec ├── shcore │ ├── Makefile.in │ ├── main.c │ ├── shcore.spec │ └── tests │ │ ├── Makefile.in │ │ └── shcore.c ├── shdoclc │ ├── Makefile.in │ ├── shdoclc.h │ ├── shdoclc.rc │ └── shdoclc.spec ├── 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 │ ├── 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 │ ├── 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 │ │ ├── ietoolbar.bmp │ │ ├── ietoolbar.svg │ │ ├── ietoolbar_small.bmp │ │ ├── ietoolbar_small.svg │ │ ├── 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 │ ├── shellnew.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 │ ├── shfldr_unixfs.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 │ ├── trash.c │ ├── undocshell.h │ ├── version.h │ ├── xdg.c │ └── xdg.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 │ └── wsprintf.c ├── slbcsp │ ├── Makefile.in │ ├── main.c │ └── 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 ├── srclient │ ├── Makefile.in │ ├── main.c │ └── srclient.spec ├── sspicli │ ├── Makefile.in │ ├── main.c │ └── sspicli.spec ├── stdole2.tlb │ ├── Makefile.in │ ├── rsrc.rc │ ├── std_ole_v2.idl │ └── stdole2.tlb.spec ├── stdole32.tlb │ ├── Makefile.in │ ├── rsrc.rc │ ├── std_ole_v1.idl │ └── stdole32.tlb.spec ├── 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 ├── strmbase │ ├── Makefile.in │ ├── dispatch.c │ ├── filter.c │ ├── mediatype.c │ ├── outputqueue.c │ ├── pin.c │ ├── pospass.c │ ├── qualitycontrol.c │ ├── renderer.c │ ├── seeking.c │ └── strmbase_private.h ├── strmdll │ ├── Makefile.in │ ├── main.c │ └── strmdll.spec ├── strmiids │ ├── Makefile.in │ ├── evr.c │ └── strmiids.c ├── svrapi │ ├── Makefile.in │ ├── svrapi.spec │ └── svrapi_main.c ├── 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 ├── tdh │ ├── Makefile.in │ ├── tdh.spec │ ├── tdh_main.c │ └── version.rc ├── tdi.sys │ ├── Makefile.in │ ├── main.c │ └── tdi.sys.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 ├── typelib.dll16 │ ├── Makefile.in │ ├── typelib.c │ └── typelib.dll16.spec ├── tzres │ ├── Makefile.in │ ├── tzres.rc │ └── tzres.spec ├── ucrtbase │ ├── Makefile.in │ ├── printf.c │ ├── tests │ │ ├── Makefile.in │ │ ├── cpp.c │ │ ├── misc.c │ │ ├── printf.c │ │ ├── scanf.c │ │ └── string.c │ ├── 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_main.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 │ ├── Makefile.in │ ├── button.c │ ├── caret.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 │ ├── driver.c │ ├── edit.c │ ├── exticon.c │ ├── focus.c │ ├── hook.c │ ├── icontitle.c │ ├── input.c │ ├── listbox.c │ ├── lstr.c │ ├── mdi.c │ ├── menu.c │ ├── message.c │ ├── misc.c │ ├── msgbox.c │ ├── nonclient.c │ ├── painting.c │ ├── property.c │ ├── rawinput.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 │ ├── spy.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 │ │ ├── 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 │ ├── win.h │ ├── winhelp.c │ ├── winpos.c │ ├── winproc.c │ ├── winstation.c │ └── wsprintf.c ├── userenv │ ├── Makefile.in │ ├── tests │ │ ├── Makefile.in │ │ └── userenv.c │ ├── userenv.spec │ └── userenv_main.c ├── usp10 │ ├── Makefile.in │ ├── bidi.c │ ├── bracket.c │ ├── breaking.c │ ├── direction.c │ ├── indic.c │ ├── indicsyllable.c │ ├── linebreak.c │ ├── mirror.c │ ├── opentype.c │ ├── shape.c │ ├── shaping.c │ ├── tests │ │ ├── Makefile.in │ │ └── usp10.c │ ├── usp10.c │ ├── usp10.spec │ └── usp10_internal.h ├── utildll │ ├── Makefile.in │ ├── main.c │ └── utildll.spec ├── uuid │ ├── Makefile.in │ ├── d2d.c │ └── uuid.c ├── uxtheme │ ├── Makefile.in │ ├── buffer.c │ ├── draw.c │ ├── gtk-button.c │ ├── gtk-combobox.c │ ├── gtk-edit.c │ ├── gtk-header.c │ ├── gtk-listbox.c │ ├── gtk-listview.c │ ├── gtk-menu.c │ ├── gtk-rebar.c │ ├── gtk-status.c │ ├── gtk-tab.c │ ├── gtk-toolbar.c │ ├── gtk-trackbar.c │ ├── gtk-window.c │ ├── gtk.c │ ├── main.c │ ├── metric.c │ ├── msstyles.c │ ├── msstyles.h │ ├── property.c │ ├── stylemap.c │ ├── system.c │ ├── tests │ │ ├── Makefile.in │ │ └── system.c │ ├── uxini.c │ ├── uxtheme.spec │ ├── uxthemedll.h │ ├── uxthemegtk.h │ └── version.rc ├── vbscript │ ├── Makefile.in │ ├── compile.c │ ├── global.c │ ├── interp.c │ ├── lex.c │ ├── parse.h │ ├── parser.y │ ├── regexp.c │ ├── regexp.h │ ├── tests │ │ ├── Makefile.in │ │ ├── api.vbs │ │ ├── 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 │ ├── main.c │ ├── tests │ │ ├── Makefile.in │ │ └── vcomp.c │ └── vcomp.spec ├── vcomp100 │ ├── Makefile.in │ └── vcomp100.spec ├── vcomp110 │ ├── Makefile.in │ └── 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 │ └── 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 │ ├── table.c │ ├── tests │ │ ├── Makefile.in │ │ ├── query.c │ │ └── services.c │ ├── wbemlocator.c │ ├── wbemprox.idl │ ├── wbemprox.spec │ ├── wbemprox_private.h │ └── wql.y ├── wbemuuid │ ├── Makefile.in │ └── wbemuuid.c ├── wdscore │ ├── Makefile.in │ ├── wdscore.spec │ └── wdscore_main.c ├── 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 ├── wer │ ├── Makefile.in │ ├── main.c │ ├── tests │ │ ├── Makefile.in │ │ └── main.c │ └── wer.spec ├── wevtapi │ ├── Makefile.in │ ├── main.c │ └── wevtapi.spec ├── wiaservc │ ├── Makefile.in │ ├── factory.c │ ├── rsrc.rc │ ├── service.c │ ├── tests │ │ ├── Makefile.in │ │ └── wia.c │ ├── wiadevmgr.c │ ├── wiaservc.idl │ ├── wiaservc.rgs │ ├── wiaservc.spec │ ├── wiaservc_main.c │ └── wiaservc_private.h ├── wimgapi │ ├── Makefile.in │ ├── main.c │ └── wimgapi.spec ├── win32k.sys │ ├── Makefile.in │ ├── main.c │ └── win32k.sys.spec ├── win32s16.dll16 │ ├── Makefile.in │ ├── win32s16.c │ └── win32s16.dll16.spec ├── 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 ├── windowscodecs │ ├── Makefile.in │ ├── bitmap.c │ ├── bmpdecode.c │ ├── bmpencode.c │ ├── clipper.c │ ├── clsfactory.c │ ├── colorcontext.c │ ├── colortransform.c │ ├── converter.c │ ├── fliprotate.c │ ├── gifformat.c │ ├── icnsformat.c │ ├── icoformat.c │ ├── imgfactory.c │ ├── info.c │ ├── jpegformat.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 │ │ ├── gifformat.c │ │ ├── icoformat.c │ │ ├── info.c │ │ ├── jpegformat.c │ │ ├── metadata.c │ │ ├── palette.c │ │ ├── pngformat.c │ │ ├── propertybag.c │ │ ├── stream.c │ │ └── tiffformat.c │ ├── tgaformat.c │ ├── tiffformat.c │ ├── ungif.c │ ├── ungif.h │ ├── version.rc │ ├── wincodecs_private.h │ ├── windowscodecs.spec │ └── windowscodecs_wincodec.idl ├── windowscodecsext │ ├── Makefile.in │ ├── main.c │ ├── tests │ │ ├── Makefile.in │ │ └── transform.c │ └── windowscodecsext.spec ├── winealsa.drv │ ├── Makefile.in │ ├── midi.c │ ├── mmdevdrv.c │ └── winealsa.drv.spec ├── wineandroid.drv │ ├── .gitattributes │ ├── AndroidManifest.xml │ ├── Makefile.in │ ├── WineActivity.java │ ├── android.h │ ├── android_native.h │ ├── build.gradle.in │ ├── device.c │ ├── init.c │ ├── keyboard.c │ ├── mmdevdrv.c │ ├── opengl.c │ ├── window.c │ ├── wine.svg │ └── wineandroid.drv.spec ├── winebus.sys │ ├── Makefile.in │ ├── bus.h │ ├── bus_iohid.c │ ├── bus_sdl.c │ ├── bus_udev.c │ ├── controller.h │ ├── main.c │ └── winebus.sys.spec ├── winecoreaudio.drv │ ├── Makefile.in │ ├── audiounit.c │ ├── coreaudio.c │ ├── coreaudio.h │ ├── coremidi.c │ ├── coremidi.h │ ├── midi.c │ ├── mmdevdrv.c │ └── winecoreaudio.drv.spec ├── winecrt0 │ ├── Makefile.in │ ├── crt0_private.h │ ├── crt_dllmain.c │ ├── debug.c │ ├── delay_load.c │ ├── dll_entry.c │ ├── dll_main.c │ ├── drv_entry.c │ ├── exception.c │ ├── exe16_entry.c │ ├── exe_entry.c │ ├── exe_main.c │ ├── exe_wentry.c │ ├── exe_wmain.c │ ├── init.c │ ├── register.c │ └── stub.c ├── wined3d │ ├── Makefile.in │ ├── adapter_gl.c │ ├── adapter_vk.c │ ├── arb_program_shader.c │ ├── ati_fragment_shader.c │ ├── buffer.c │ ├── context.c │ ├── cs.c │ ├── device.c │ ├── directx.c │ ├── gl_compat.c │ ├── glsl_shader.c │ ├── nvidia_texture_shader.c │ ├── palette.c │ ├── query.c │ ├── resource.c │ ├── sampler.c │ ├── shader.c │ ├── shader_sm1.c │ ├── shader_sm4.c │ ├── state.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 ├── winegstreamer │ ├── Makefile.in │ ├── gst_cbs.c │ ├── gst_cbs.h │ ├── gst_guids.h │ ├── gst_private.h │ ├── gstdemux.c │ ├── main.c │ ├── mfplat.c │ ├── rsrc.rc │ ├── winegstreamer.rgs │ ├── winegstreamer.spec │ └── winegstreamer_classes.idl ├── winehid.sys │ ├── Makefile.in │ ├── main.c │ └── winehid.sys.spec ├── winejoystick.drv │ ├── Makefile.in │ ├── joystick.c │ ├── joystick.h │ ├── joystick_linux.c │ ├── joystick_osx.c │ └── winejoystick.drv.spec ├── winemac.drv │ ├── .gitattributes │ ├── Makefile.in │ ├── clipboard.c │ ├── cocoa_app.h │ ├── cocoa_app.m │ ├── cocoa_clipboard.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 │ ├── display.c │ ├── dragdrop.c │ ├── event.c │ ├── gdi.c │ ├── image.c │ ├── ime.c │ ├── keyboard.c │ ├── macdrv.h │ ├── macdrv_cocoa.h │ ├── macdrv_main.c │ ├── macdrv_res.h │ ├── mouse.c │ ├── opengl.c │ ├── surface.c │ ├── systray.c │ ├── vulkan.c │ ├── window.c │ ├── winemac.drv.spec │ └── winemac.rc ├── winemapi │ ├── Makefile.in │ ├── main.c │ ├── sendmail.c │ ├── winemapi.spec │ ├── winemapi_private.h │ └── xdg-email.c ├── wineoss.drv │ ├── Makefile.in │ ├── midi.c │ ├── midipatch.c │ ├── mmaux.c │ ├── mmdevdrv.c │ └── 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 │ ├── download.c │ ├── driver.c │ ├── encode.c │ ├── escape.c │ ├── font.c │ ├── glyphlist.c │ ├── graphics.c │ ├── init.c │ ├── mkagl.c │ ├── pen.c │ ├── ppd.c │ ├── ps.c │ ├── psdlg.h │ ├── psdrv.h │ ├── text.c │ ├── type1.c │ ├── type1afm.c │ ├── type42.c │ ├── vertical.c │ ├── wineps.drv.spec │ └── wineps.rc ├── wineps16.drv16 │ ├── Makefile.in │ ├── driver.c │ └── wineps16.drv16.spec ├── winepulse.drv │ ├── Makefile.in │ ├── mmdevdrv.c │ └── winepulse.drv.spec ├── wineqtdecoder │ ├── Makefile.in │ ├── main.c │ ├── qtdatahandler.c │ ├── qtprivate.h │ ├── qtsplitter.c │ ├── qtutils.c │ ├── qtvdecoder.c │ ├── rsrc.rc │ ├── wineqtdecoder.rgs │ ├── wineqtdecoder.spec │ └── wineqtdecoder_classes.idl ├── winevulkan │ ├── Makefile.in │ ├── make_vulkan │ ├── vulkan.c │ ├── vulkan_private.h │ ├── vulkan_thunks.c │ ├── vulkan_thunks.h │ ├── winevulkan.json │ ├── winevulkan.rc │ └── winevulkan.spec ├── winex11.drv │ ├── Makefile.in │ ├── bitblt.c │ ├── brush.c │ ├── clipboard.c │ ├── desktop.c │ ├── display.c │ ├── event.c │ ├── graphics.c │ ├── ime.c │ ├── init.c │ ├── keyboard.c │ ├── mouse.c │ ├── mwm.h │ ├── opengl.c │ ├── palette.c │ ├── pen.c │ ├── settings.c │ ├── systray.c │ ├── version.rc │ ├── vulkan.c │ ├── window.c │ ├── winex11.drv.spec │ ├── wintab.c │ ├── x11drv.h │ ├── x11drv_main.c │ ├── xcomposite.h │ ├── xdnd.c │ ├── xim.c │ ├── xinerama.c │ ├── xrandr.c │ ├── xrender.c │ └── xvidmode.c ├── wing.dll16 │ ├── Makefile.in │ ├── wing.c │ └── wing.dll16.spec ├── wing32 │ ├── Makefile.in │ ├── 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 │ ├── inflate.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 │ └── zlib.h ├── 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 │ │ ├── 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 ├── winscard │ ├── Makefile.in │ ├── rsrc.rc │ ├── winscard.c │ └── winscard.spec ├── winsock.dll16 │ ├── Makefile.in │ ├── socket.c │ ├── winsock.dll16.spec │ └── winsock16.h ├── winspool.drv │ ├── Makefile.in │ ├── 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 ├── winusb │ ├── Makefile.in │ └── winusb.spec ├── wlanapi │ ├── Makefile.in │ ├── main.c │ ├── tests │ │ ├── Makefile.in │ │ └── wlanapi.c │ └── wlanapi.spec ├── wlanui │ ├── Makefile.in │ ├── main.c │ └── 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 │ │ └── parse.c │ ├── value.c │ ├── winldap_private.h │ ├── wldap32.h │ ├── wldap32.rc │ └── wldap32.spec ├── wmasf │ ├── Makefile.in │ ├── main.c │ └── wmasf.spec ├── wmcodecdspuuid │ ├── Makefile.in │ └── wmcodecdspuuid.c ├── wmi │ ├── Makefile.in │ └── wmi.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 │ ├── main.c │ ├── wmphoto.idl │ └── wmphoto.spec ├── wmvcore │ ├── Makefile.in │ ├── reader.c │ ├── tests │ │ ├── Makefile.in │ │ └── wmvcore.c │ ├── version.rc │ ├── wmvcore.h │ ├── wmvcore.spec │ ├── wmvcore_main.c │ └── writer.c ├── wnaspi32 │ ├── Makefile.in │ ├── aspi.c │ ├── aspi.h │ ├── winaspi32.c │ ├── winescsi.h │ └── wnaspi32.spec ├── wow32 │ ├── Makefile.in │ ├── wow32.spec │ └── wow_main.c ├── wow64cpu │ ├── Makefile.in │ ├── wow64cpu.spec │ └── wow64cpu_main.c ├── wpc │ ├── Makefile.in │ ├── tests │ │ ├── Makefile.in │ │ └── wpc.c │ ├── wpc.c │ ├── wpc.spec │ └── wpc_classes.idl ├── wpcap │ ├── Makefile.in │ ├── version.rc │ ├── wpcap.c │ └── wpcap.spec ├── ws2_32 │ ├── Makefile.in │ ├── async.c │ ├── socket.c │ ├── tests │ │ ├── Makefile.in │ │ ├── protocol.c │ │ └── sock.c │ ├── version.rc │ └── ws2_32.spec ├── 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 │ ├── 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 │ ├── main.c │ ├── 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 ├── 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 │ └── 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 │ ├── compat.c │ ├── tests │ │ ├── Makefile.in │ │ ├── globals.xgs │ │ ├── rsrc.rc │ │ ├── xact.c │ │ └── xaudio2.c │ ├── x3daudio.c │ ├── xact_classes.idl │ ├── xact_dll.c │ ├── xapo.c │ ├── xapofx.c │ ├── xaudio2_7.spec │ ├── xaudio_allocator.c │ ├── xaudio_classes.idl │ ├── xaudio_dll.c │ └── xaudio_private.h ├── xaudio2_8 │ ├── Makefile.in │ └── xaudio2_8.spec ├── xaudio2_9 │ ├── Makefile.in │ └── 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 │ ├── hid.c │ ├── tests │ │ ├── Makefile.in │ │ └── xinput.c │ ├── version.rc │ ├── xinput1_3.spec │ ├── xinput_main.c │ └── xinput_private.h ├── xinput1_4 │ ├── Makefile.in │ ├── version.rc │ └── xinput1_4.spec ├── xinput9_1_0 │ ├── Makefile.in │ ├── version.rc │ └── xinput9_1_0.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 │ ├── main.c │ ├── xpsprint.rc │ └── xpsprint.spec └── xpssvcs │ ├── Makefile.in │ ├── main.c │ └── xpssvcs.spec ├── documentation ├── README.de ├── README.es ├── README.fi ├── README.fr ├── README.hu ├── README.it ├── README.ja ├── README.ko ├── README.no ├── README.pt ├── README.pt_br ├── README.ru ├── README.sv ├── README.tr ├── README.uk └── README.zh_cn ├── fonts ├── Makefile.in ├── arial.sfd ├── arial.ttf ├── cour.sfd ├── cour.ttf ├── 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 ├── msyh.sfd ├── msyh.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 ├── times.sfd ├── times.ttf ├── wingding.sfd └── wingding.ttf ├── include ├── Makefile.in ├── accctrl.h ├── access.idl ├── aclapi.h ├── aclui.h ├── activation.idl ├── activaut.idl ├── activdbg.idl ├── activscp.idl ├── adserr.h ├── adshlp.h ├── advpub.h ├── af_irda.h ├── amaudio.h ├── amsi.idl ├── amstream.idl ├── amvideo.idl ├── apiset.h ├── appcompatapi.h ├── appmgmt.h ├── appmodel.h ├── asptlb.idl ├── asynot.idl ├── asysta.idl ├── atlbase.h ├── atlcom.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 ├── basetsd.h ├── basetyps.h ├── bcrypt.h ├── bdaiface.idl ├── bdaiface_enums.h ├── bdatypes.h ├── binres.idl ├── bits.idl ├── bits1_5.idl ├── bits2_0.idl ├── bits2_5.idl ├── bits3_0.idl ├── bitsmsg.h ├── bluetoothapis.h ├── bthsdpdef.h ├── cderr.h ├── cdosys.idl ├── cfgmgr32.h ├── cguid.h ├── chprst.idl ├── cierror.h ├── clusapi.h ├── cmdbas.idl ├── cmdtxt.idl ├── cmnquery.idl ├── codecapi.h ├── colinf.idl ├── colordlg.h ├── comcat.idl ├── commctrl.h ├── commctrl.rh ├── commdlg.h ├── commoncontrols.idl ├── compobj.h ├── comsvcs.idl ├── config.h.in ├── control.idl ├── cor.idl ├── cordebug.idl ├── corerror.h ├── corhdr.h ├── cpl.h ├── crtrow.idl ├── cryptdlg.h ├── cryptuiapi.h ├── ctfutb.idl ├── ctxtcall.idl ├── cuda.h ├── custcntl.h ├── cuviddec.h ├── cvconst.h ├── d2d1.idl ├── d2d1_1.idl ├── d2d1_2.idl ├── d2dbasetypes.h ├── d2derr.h ├── d3d.h ├── d3d10.idl ├── d3d10_1.idl ├── d3d10_1shader.h ├── d3d10effect.h ├── d3d10misc.h ├── d3d10sdklayers.idl ├── d3d10shader.h ├── d3d11.idl ├── d3d11_1.idl ├── d3d11_2.idl ├── d3d11_3.idl ├── d3d11_4.idl ├── d3d11on12.idl ├── d3d11sdklayers.idl ├── d3d11shader.h ├── d3d12.idl ├── d3d8.h ├── d3d8caps.h ├── d3d8types.h ├── d3d9.h ├── d3d9caps.h ├── d3d9types.h ├── d3dcaps.h ├── d3dcommon.idl ├── d3dcompiler.h ├── d3dhal.h ├── d3drm.h ├── d3drmdef.h ├── d3drmobj.h ├── d3drmwin.h ├── d3dtypes.h ├── d3dukmdt.h ├── d3dvec.inl ├── d3dx10.h ├── d3dx10async.h ├── d3dx10core.idl ├── d3dx10math.h ├── d3dx10tex.h ├── d3dx11.h ├── d3dx11async.h ├── d3dx11core.idl ├── d3dx11tex.h ├── d3dx9.h ├── d3dx9anim.h ├── d3dx9core.h ├── d3dx9effect.h ├── d3dx9math.h ├── d3dx9math.inl ├── d3dx9mesh.h ├── d3dx9shader.h ├── d3dx9shape.h ├── d3dx9tex.h ├── d3dx9xof.h ├── davclnt.h ├── dbccmd.idl ├── dbcses.idl ├── dbdsad.idl ├── dbgeng.h ├── dbghelp.h ├── dbinit.idl ├── dbprop.idl ├── dbs.idl ├── dbt.h ├── dciddi.h ├── dciman.h ├── dcommon.idl ├── dde.h ├── dde.rh ├── ddeml.h ├── ddk │ ├── compstui.h │ ├── csq.h │ ├── d3dkmthk.h │ ├── fltkernel.h │ ├── hidclass.h │ ├── hidpi.h │ ├── hidport.h │ ├── hidsdi.h │ ├── hidtypes.h │ ├── imm.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 │ ├── winddiui.h │ └── winsplp.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 ├── 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 ├── downloadmgr.idl ├── dpaddr.h ├── dplay.h ├── dplay8.h ├── dplobby.h ├── dplobby8.h ├── dpnathlp.h ├── drmexternals.idl ├── dsconf.h ├── dsgetdc.h ├── dshow.h ├── dsound.h ├── dsrole.h ├── dvdmedia.h ├── dvoice.h ├── dwmapi.h ├── dwrite.idl ├── dwrite_1.idl ├── dwrite_2.idl ├── dwrite_3.idl ├── dxdiag.h ├── dxerr8.h ├── dxerr9.h ├── dxfile.h ├── dxgi.idl ├── dxgi1_2.idl ├── dxgi1_3.idl ├── dxgi1_4.idl ├── dxgi1_5.idl ├── dxgi1_6.idl ├── dxgicommon.idl ├── dxgidebug.idl ├── dxgiformat.idl ├── dxgitype.idl ├── dxva.h ├── dxva2api.idl ├── dyngraph.idl ├── endpointvolume.idl ├── errorrep.h ├── errors.h ├── errrec.idl ├── evcode.h ├── evntprov.h ├── evntrace.h ├── evr.idl ├── excpt.h ├── exdisp.idl ├── exdispid.h ├── fci.h ├── fdi.h ├── fileapi.h ├── filter.idl ├── fltdefs.h ├── fontsub.h ├── fusion.idl ├── gameux.idl ├── gdiplus.h ├── gdipluscolor.h ├── gdipluscolormatrix.h ├── gdipluseffects.h ├── gdiplusenums.h ├── gdiplusflat.h ├── gdiplusgpstubs.h ├── gdiplusimaging.h ├── gdiplusinit.h ├── gdiplusmem.h ├── gdiplusmetaheader.h ├── gdipluspixelformats.h ├── gdiplustypes.h ├── guiddef.h ├── hidusage.h ├── highlevelmonitorconfigurationapi.h ├── hlguids.h ├── hlink.idl ├── hstring.idl ├── htiface.idl ├── htiframe.idl ├── htmlhelp.h ├── http.h ├── httprequest.idl ├── httprequestid.h ├── i_cryptasn1tls.h ├── iads.idl ├── icftypes.idl ├── icm.h ├── icmpapi.h ├── idispids.h ├── ieautomation.idl ├── iextag.idl ├── ifdef.h ├── ifmib.h ├── iimgctx.idl ├── imagehlp.h ├── ime.h ├── imm.h ├── imnact.idl ├── imnxport.idl ├── in6addr.h ├── inaddr.h ├── indexsrv.idl ├── initguid.h ├── inputscope.idl ├── inseng.idl ├── inspectable.idl ├── interactioncontext.h ├── intshcut.h ├── ip2string.h ├── ipexport.h ├── iphlpapi.h ├── ipifcons.h ├── ipmib.h ├── iprtrmib.h ├── iptypes.h ├── isguids.h ├── knownfolders.h ├── ks.h ├── ksguid.h ├── ksmedia.h ├── ksuuids.h ├── libloaderapi.h ├── lm.h ├── lmaccess.h ├── lmapibuf.h ├── lmat.h ├── lmbrowsr.h ├── lmcons.h ├── lmerr.h ├── lmjoin.h ├── lmmsg.h ├── lmserver.h ├── lmshare.h ├── lmstats.h ├── lmuse.h ├── lmuseflg.h ├── lmwksta.h ├── loadperf.h ├── lowlevelmonitorconfigurationapi.h ├── lzexpand.h ├── mapi.h ├── mapicode.h ├── mapidefs.h ├── mapiform.h ├── mapiguid.h ├── mapitags.h ├── mapiutil.h ├── mapival.h ├── mapix.h ├── mciavi.h ├── mcx.h ├── mediaerr.h ├── mediaobj.idl ├── metahost.idl ├── mfapi.h ├── mferror.h ├── mfidl.idl ├── mfmediaengine.idl ├── mfobjects.idl ├── mfplay.idl ├── mfreadwrite.idl ├── mftransform.idl ├── midles.h ├── mimeinfo.idl ├── mimeole.idl ├── minmax.h ├── mlang.idl ├── mmc.idl ├── mmddk.h ├── mmdeviceapi.idl ├── mmreg.h ├── mmstream.idl ├── mmsystem.h ├── mprapi.h ├── mprerror.h ├── msacm.h ├── msacmdlg.h ├── msacmdrv.h ├── msado15_backcompat.idl ├── msasn1.h ├── mscat.h ├── mscoree.idl ├── msctf.idl ├── msdadc.idl ├── msdaguid.h ├── msdasc.idl ├── msdasql.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 │ ├── conio.h │ ├── corecrt.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 │ ├── 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 │ ├── 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 │ ├── wchar.h │ └── wctype.h ├── mswsock.h ├── msxml.idl ├── msxml2.idl ├── msxml2did.h ├── msxml6.idl ├── msxml6did.h ├── msxmldid.h ├── mtxdm.h ├── multimon.h ├── natupnp.idl ├── nb30.h ├── ncrypt.h ├── ndrtypes.h ├── netcfgx.idl ├── netcon.idl ├── netfw.idl ├── netioapi.h ├── netlistmgr.idl ├── newdev.h ├── nldef.h ├── npapi.h ├── nserror.h ├── nspapi.h ├── ntddcdrm.h ├── ntddmou.h ├── ntddndis.h ├── ntddscsi.h ├── ntddstor.h ├── ntddvdeo.h ├── ntdef.h ├── ntdsapi.h ├── ntifs.h ├── ntlsa.h ├── ntquery.h ├── ntsecapi.h ├── ntsecpkg.h ├── ntstatus.h ├── nvapi.h ├── nvcuvid.h ├── nvencodeapi.h ├── oaidl.idl ├── objbase.h ├── objectarray.idl ├── objidl.idl ├── objsafe.idl ├── objsel.h ├── ocidl.idl ├── ocmm.idl ├── odbcinst.h ├── ole2.h ├── ole2ver.h ├── oleacc.idl ├── oleauto.h ├── olectl.h ├── oledb.idl ├── oledberr.h ├── oledlg.h ├── oleidl.idl ├── opcbase.idl ├── opcobjectmodel.idl ├── opcparturi.idl ├── opnrst.idl ├── optary.idl ├── patchapi.h ├── pathcch.h ├── pdh.h ├── pdhmsg.h ├── perflib.h ├── perhist.idl ├── physicalmonitorenumerationapi.h ├── pktdef.h ├── poppack.h ├── powrprof.h ├── prntvpt.h ├── profinfo.h ├── propidl.idl ├── propkey.h ├── propkeydef.h ├── propsys.idl ├── propvarutil.h ├── prsht.h ├── psapi.h ├── pshpack1.h ├── pshpack2.h ├── pshpack4.h ├── pshpack8.h ├── pstore.idl ├── qedit.idl ├── qos2.h ├── ras.h ├── rasdlg.h ├── raserror.h ├── reason.h ├── regstr.h ├── restartmanager.h ├── restrictederrorinfo.idl ├── richedit.h ├── richole.idl ├── rmxfguid.h ├── rmxftmpl.x ├── roapi.h ├── roerrorapi.h ├── roparameterizediid.idl ├── row.idl ├── rowchg.idl ├── rowpos.idl ├── rowpsc.idl ├── rpc.h ├── rpcasync.h ├── rpcdce.h ├── rpcdcep.h ├── rpcndr.h ├── rpcnterr.h ├── rpcproxy.h ├── rpcsal.h ├── rstbas.idl ├── rstinf.idl ├── rstloc.idl ├── rstnot.idl ├── rtutils.h ├── rtworkq.idl ├── sal.h ├── sapi.idl ├── sapiaut.idl ├── sapiddk.idl ├── scarderr.h ├── schannel.h ├── schemadef.h ├── schnlsp.h ├── sddl.h ├── secext.h ├── security.h ├── sensapi.h ├── sensevts.idl ├── servprov.idl ├── sesprp.idl ├── setupapi.h ├── sfc.h ├── shdeprecated.idl ├── shdispid.h ├── shellapi.h ├── shellscalingapi.h ├── shimgdata.idl ├── shldisp.idl ├── shlguid.h ├── shlobj.h ├── shlwapi.h ├── shobjidl.idl ├── shtypes.idl ├── sipbase.h ├── slerror.h ├── slpublic.h ├── snmp.h ├── softpub.h ├── sperror.h ├── sql.h ├── sqlext.h ├── sqltypes.h ├── sqlucode.h ├── srcrst.idl ├── srrestoreptapi.h ├── sspi.h ├── stamp-h.in ├── stdole2.idl ├── stdole32.idl ├── stgprop.h ├── sti.h ├── storage.h ├── strmif.idl ├── strongname.h ├── strsafe.h ├── structuredquerycondition.idl ├── svrapi.h ├── synchapi.h ├── t2embapi.h ├── tapi.h ├── taskschd.idl ├── 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 ├── twain.h ├── txcoord.idl ├── txdtc.idl ├── udpmib.h ├── uianimation.idl ├── uiautomation.h ├── uiautomationclient.idl ├── uiautomationcore.idl ├── uiautomationcoreapi.h ├── uiribbon.idl ├── unknwn.idl ├── urlhist.idl ├── urlmon.idl ├── userenv.h ├── usp10.h ├── uuids.h ├── uxtheme.h ├── vdmdbg.h ├── ver.h ├── verrsrc.h ├── vfw.h ├── vfwmsgs.h ├── virtdisk.h ├── vmr9.idl ├── vmrender.idl ├── vsbackup.idl ├── vss.idl ├── vsstyle.h ├── vssym32.h ├── vswriter.idl ├── wbemcli.idl ├── wbemdisp.idl ├── wbemprov.idl ├── wct.h ├── webservices.h ├── werapi.h ├── wfext.h ├── wia.h ├── wia_lh.idl ├── wia_xp.idl ├── wiadef.h ├── wimgapi.h ├── winbase.h ├── wincodec.idl ├── wincodecsdk.idl ├── wincon.h ├── wincred.h ├── wincrypt.h ├── windef.h ├── windns.h ├── windows.foundation.idl ├── windows.h ├── windowsx.h ├── wine │ ├── asm.h │ ├── atsvc.idl │ ├── dcetypes.idl │ ├── debug.h │ ├── dplaysp.h │ ├── epm.idl │ ├── exception.h │ ├── fil_data.idl │ ├── gdi_driver.h │ ├── glu.h │ ├── heap.h │ ├── hid.h │ ├── http.h │ ├── irot.idl │ ├── irpcss.idl │ ├── itss.idl │ ├── library.h │ ├── list.h │ ├── mmsystem16.h │ ├── mscvpdb.h │ ├── port.h │ ├── rbtree.h │ ├── schrpc.idl │ ├── server.h │ ├── server_protocol.h │ ├── strmbase.h │ ├── svcctl.idl │ ├── test.h │ ├── unicode.h │ ├── vulkan.h │ ├── vulkan_driver.h │ ├── wgl.h │ ├── wgl_driver.h │ ├── winbase16.h │ ├── windef16.h │ ├── wine_common_ver.rc │ ├── wined3d.h │ ├── winedxgi.idl │ ├── wingdi16.h │ ├── winnet16.h │ ├── winuser16.h │ └── wpp.h ├── winerror.h ├── winevt.h ├── wingdi.h ├── winhttp.h ├── wininet.h ├── winineti.h ├── winioctl.h ├── winldap.h ├── winnetwk.h ├── winnls.h ├── winnls32.h ├── winnt.h ├── winnt.rh ├── winperf.h ├── winreg.h ├── winresrc.h ├── winsafer.h ├── winscard.h ├── winsmcrd.h ├── winsnmp.h ├── winsock.h ├── winsock2.h ├── winspool.h ├── winstring.h ├── winsvc.h ├── winsxs.idl ├── wintab.h ├── wintabx.h ├── winternl.h ├── wintrust.h ├── winuser.h ├── winuser.rh ├── winver.h ├── wlanapi.h ├── wmcodecdsp.idl ├── wmdrmsdk.idl ├── wmistr.h ├── wmium.h ├── wmiutils.idl ├── wmp.idl ├── wmpids.h ├── wmsbuffer.idl ├── wmsdk.h ├── wmsdkidl.idl ├── wnaspi32.h ├── wownt32.h ├── wpcapi.idl ├── ws2def.h ├── ws2ipdef.h ├── ws2spi.h ├── ws2tcpip.h ├── wsdapi.h ├── wsdbase.idl ├── wsddisco.idl ├── wsdtypes.h ├── wsdutil.h ├── wsdxml.idl ├── wsdxmldom.h ├── wshisotp.h ├── wsipx.h ├── wsnwlink.h ├── wtsapi32.h ├── wtypes.idl ├── wuapi.idl ├── x3daudio.h ├── xact3.idl ├── xact3wb.h ├── xapo.idl ├── xapofx.h ├── xaudio2.idl ├── xaudio2fx.idl ├── xcmc.h ├── xinput.h ├── xmldom.h ├── xmldom.idl ├── xmldomdid.h ├── xmldso.idl ├── xmldsodid.h ├── xmllite.idl └── zmouse.h ├── libs ├── port │ ├── Makefile.in │ ├── casemap.c │ ├── ffs.c │ ├── fstatvfs.c │ ├── getopt.c │ ├── interlocked.c │ ├── isfinite.c │ ├── isinf.c │ ├── isnan.c │ ├── lstat.c │ ├── mkstemps.c │ ├── poll.c │ ├── pread.c │ ├── pwrite.c │ ├── readlink.c │ ├── renameat2.c │ ├── rint.c │ ├── spawn.c │ ├── statvfs.c │ ├── string.c │ ├── strnlen.c │ ├── stubs.c │ ├── symlink.c │ ├── usleep.c │ ├── wctype.c │ └── xattr.c ├── wine │ ├── Makefile.in │ ├── c_037.c │ ├── c_10000.c │ ├── c_10001.c │ ├── c_10002.c │ ├── c_10003.c │ ├── c_10004.c │ ├── c_10005.c │ ├── c_10006.c │ ├── c_10007.c │ ├── c_10008.c │ ├── c_10010.c │ ├── c_10017.c │ ├── c_10021.c │ ├── c_10029.c │ ├── c_10079.c │ ├── c_10081.c │ ├── c_10082.c │ ├── c_1026.c │ ├── c_1250.c │ ├── c_1251.c │ ├── c_1252.c │ ├── c_1253.c │ ├── c_1254.c │ ├── c_1255.c │ ├── c_1256.c │ ├── c_1257.c │ ├── c_1258.c │ ├── c_1361.c │ ├── c_20127.c │ ├── c_20866.c │ ├── c_20932.c │ ├── c_21866.c │ ├── c_28591.c │ ├── c_28592.c │ ├── c_28593.c │ ├── c_28594.c │ ├── c_28595.c │ ├── c_28596.c │ ├── c_28597.c │ ├── c_28598.c │ ├── c_28599.c │ ├── c_28603.c │ ├── c_28605.c │ ├── c_437.c │ ├── c_500.c │ ├── c_737.c │ ├── c_775.c │ ├── c_850.c │ ├── c_852.c │ ├── c_855.c │ ├── c_857.c │ ├── c_860.c │ ├── c_861.c │ ├── c_862.c │ ├── c_863.c │ ├── c_864.c │ ├── c_865.c │ ├── c_866.c │ ├── c_869.c │ ├── c_874.c │ ├── c_875.c │ ├── c_932.c │ ├── c_936.c │ ├── c_949.c │ ├── c_950.c │ ├── collation.c │ ├── compose.c │ ├── config.c │ ├── cpsymbol.c │ ├── cptable.c │ ├── debug.c │ ├── decompose.c │ ├── digitmap.c │ ├── fold.c │ ├── ldt.c │ ├── loader.c │ ├── mbtowc.c │ ├── mmap.c │ ├── port.c │ ├── sortkey.c │ ├── utf8.c │ ├── wctomb.c │ └── wine.map └── wpp │ ├── Makefile.in │ ├── ppl.l │ ├── ppy.y │ ├── preproc.c │ ├── wpp.c │ └── wpp_private.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 ├── winebus.inf.in └── winehid.inf.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_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_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 ├── 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 ├── 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 ├── 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 ├── chcp.com │ ├── Makefile.in │ └── main.c ├── clock │ ├── Makefile.in │ ├── 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 │ │ ├── rsrc.rc │ │ ├── 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 │ └── version.rc ├── control │ ├── Makefile.in │ └── control.c ├── cscript │ └── Makefile.in ├── dism │ ├── Makefile.in │ └── dism.c ├── dllhost │ ├── Makefile.in │ └── dllhost.c ├── dpnsvr │ ├── Makefile.in │ └── main.c ├── dxdiag │ ├── Makefile.in │ ├── 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.rc │ ├── explorer_private.h │ ├── resource.h │ ├── startmenu.c │ └── systray.c ├── extrac32 │ ├── Makefile.in │ └── extrac32.c ├── fc │ ├── Makefile.in │ └── fc.c ├── find │ ├── Makefile.in │ ├── find.c │ ├── find.rc │ ├── resources.h │ └── tests │ │ ├── Makefile.in │ │ └── find.c ├── findstr │ ├── Makefile.in │ └── main.c ├── fsutil │ ├── Makefile.in │ ├── fsutil.rc │ ├── main.c │ └── resources.h ├── hh │ ├── Makefile.in │ ├── 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 ├── 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.svg │ ├── rsrc.rc │ └── service.c ├── msinfo32 │ ├── Makefile.in │ ├── main.c │ ├── msinfo32.rc │ └── resource.h ├── net │ ├── Makefile.in │ ├── net.c │ ├── net.rc │ └── resources.h ├── netsh │ ├── Makefile.in │ └── netsh.c ├── netstat │ ├── Makefile.in │ ├── netstat.c │ ├── netstat.h │ └── netstat.rc ├── ngen │ ├── Makefile.in │ └── ngen_main.c ├── notepad │ ├── Makefile.in │ ├── dialog.c │ ├── dialog.h │ ├── main.c │ ├── main.h │ ├── notepad.ico │ ├── notepad.man.in │ ├── notepad.rc │ ├── notepad.svg │ └── notepad_res.h ├── oleview │ ├── Makefile.in │ ├── details.c │ ├── interface.c │ ├── main.h │ ├── oleview.c │ ├── oleview.rc │ ├── pane.c │ ├── resource.h │ ├── toolbar.bmp │ ├── tree.c │ └── typelib.c ├── ping │ ├── Makefile.in │ └── ping_main.c ├── plugplay │ ├── 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 │ ├── export.c │ ├── import.c │ ├── reg.c │ ├── reg.h │ ├── reg.rc │ ├── resource.h │ └── tests │ │ ├── Makefile.in │ │ └── reg.c ├── 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.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.rc ├── rpcss │ ├── Makefile.in │ ├── epm.idl │ ├── epmp.c │ ├── irot.idl │ ├── irotp.c │ ├── irpcss.idl │ └── rpcss_main.c ├── runas │ ├── Makefile.in │ ├── runas.c │ ├── runas.h │ └── runas.rc ├── rundll.exe16 │ ├── Makefile.in │ └── rundll.c ├── rundll32 │ ├── Makefile.in │ └── rundll32.c ├── sc │ ├── 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 ├── shutdown │ ├── 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 │ └── version.rc ├── 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.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.rc ├── unlodctr │ ├── Makefile.in │ └── unlodctr_main.c ├── view │ ├── Makefile.in │ ├── resource.h │ ├── view.c │ └── view.rc ├── wevtutil │ ├── Makefile.in │ └── main.c ├── whoami │ ├── Makefile.in │ └── main.c ├── wineboot │ ├── Makefile.in │ ├── resource.h │ ├── shutdown.c │ ├── wineboot.c │ ├── wineboot.man.in │ └── wineboot.rc ├── winebrowser │ ├── Makefile.in │ └── main.c ├── winecfg │ ├── Makefile.in │ ├── about.c │ ├── appdefaults.c │ ├── audio.c │ ├── drive.c │ ├── drivedetect.c │ ├── driveui.c │ ├── idw_testsound.wav │ ├── libraries.c │ ├── logo.ico │ ├── logo.svg │ ├── main.c │ ├── resource.h │ ├── staging.c │ ├── theme.c │ ├── winecfg.c │ ├── winecfg.h │ ├── winecfg.ico │ ├── winecfg.man.in │ ├── winecfg.manifest │ ├── winecfg.rc │ ├── winecfg.svg │ └── x11drvdlg.c ├── wineconsole │ ├── Makefile.in │ ├── curses.c │ ├── dialog.c │ ├── registry.c │ ├── user.c │ ├── winecon_private.h │ ├── winecon_user.h │ ├── 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_ppc.c │ ├── be_x86_64.c │ ├── break.c │ ├── crashdlg.c │ ├── db_disasm.c │ ├── db_disasm64.c │ ├── dbg.y │ ├── debug.l │ ├── debugger.h │ ├── display.c │ ├── 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.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.rc │ └── winefile.svg ├── winemenubuilder │ ├── Makefile.in │ └── 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.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.rc │ └── winetest.svg ├── winevdm │ ├── Makefile.in │ └── winevdm.c ├── 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 ├── 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.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 │ ├── rsrc.rc │ ├── 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 ├── device.h ├── 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 ├── 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 ├── scheduler.c ├── security.h ├── semaphore.c ├── serial.c ├── signal.c ├── snapshot.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 ├── Makefile.in ├── buildimage ├── c2man.pl ├── config.guess ├── config.sub ├── examine-relay ├── findfunc ├── install-sh ├── make_announce ├── make_makefiles ├── make_requests ├── make_specfiles ├── make_unicode ├── make_xftmpl.c ├── makedep.c ├── runtest ├── sfnt2fon ├── Makefile.in └── sfnt2fon.c ├── widl ├── Makefile.in ├── 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 ├── font.c ├── function_grep.pl ├── le.c ├── lib.c ├── lnk.c ├── main.c ├── minidump.c ├── misc.c ├── msc.c ├── msmangle.c ├── ne.c ├── nls.c ├── output.c ├── pdb.c ├── pe.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 ├── dumpres.c ├── dumpres.h ├── genres.c ├── genres.h ├── newstruc.c ├── newstruc.h ├── parser.h ├── parser.l ├── parser.y ├── po.c ├── readres.c ├── readres.h ├── translation.c ├── utils.c ├── utils.h ├── wrc.c ├── wrc.doc ├── wrc.h ├── wrc.man.in ├── wrctypes.h └── writeres.c /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/.editorconfig -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/.mailmap -------------------------------------------------------------------------------- /ANNOUNCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/ANNOUNCE -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/COPYING.LIB -------------------------------------------------------------------------------- /COPYING.arial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/COPYING.arial -------------------------------------------------------------------------------- /COPYING.cour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/COPYING.cour -------------------------------------------------------------------------------- /COPYING.msyh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/COPYING.msyh -------------------------------------------------------------------------------- /COPYING.times: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/COPYING.times -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.OLD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/LICENSE.OLD -------------------------------------------------------------------------------- /MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/MAINTAINERS -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/Makefile.in -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/README -------------------------------------------------------------------------------- /README.esync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/README.esync -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | Wine version 5.5 2 | -------------------------------------------------------------------------------- /aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/aclocal.m4 -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/configure.ac -------------------------------------------------------------------------------- /dlls/acledit/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/acledit/main.c -------------------------------------------------------------------------------- /dlls/aclui/aclui.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/aclui/aclui.rc -------------------------------------------------------------------------------- /dlls/activeds.tlb/activeds.tlb.spec: -------------------------------------------------------------------------------- 1 | # no exported entry points 2 | -------------------------------------------------------------------------------- /dlls/adsiid/adsiid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/adsiid/adsiid.c -------------------------------------------------------------------------------- /dlls/adsldp/adsldp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/adsldp/adsldp.c -------------------------------------------------------------------------------- /dlls/adsldp/ldap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/adsldp/ldap.c -------------------------------------------------------------------------------- /dlls/adsldp/rsrc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/adsldp/rsrc.rc -------------------------------------------------------------------------------- /dlls/adsldp/schema.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/adsldp/schema.c -------------------------------------------------------------------------------- /dlls/adsldpc/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/adsldpc/main.c -------------------------------------------------------------------------------- /dlls/advapi32/cred.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/advapi32/cred.c -------------------------------------------------------------------------------- /dlls/advapi32/lsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/advapi32/lsa.c -------------------------------------------------------------------------------- /dlls/advapi32/svcctl.idl: -------------------------------------------------------------------------------- 1 | #pragma makedep client 2 | 3 | #include "wine/svcctl.idl" 4 | -------------------------------------------------------------------------------- /dlls/advapi32/wmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/advapi32/wmi.c -------------------------------------------------------------------------------- /dlls/advpack/files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/advpack/files.c -------------------------------------------------------------------------------- /dlls/advpack/reg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/advpack/reg.c -------------------------------------------------------------------------------- /dlls/amsi/amsi.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/amsi/amsi.spec -------------------------------------------------------------------------------- /dlls/amsi/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/amsi/main.c -------------------------------------------------------------------------------- /dlls/amstream/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/amstream/main.c -------------------------------------------------------------------------------- /dlls/api-ms-win-core-io-l1-1-0/Makefile.in: -------------------------------------------------------------------------------- 1 | MODULE = api-ms-win-core-io-l1-1-0.dll 2 | -------------------------------------------------------------------------------- /dlls/api-ms-win-mm-time-l1-1-0/Makefile.in: -------------------------------------------------------------------------------- 1 | MODULE = api-ms-win-mm-time-l1-1-0.dll 2 | -------------------------------------------------------------------------------- /dlls/atl/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/atl/Makefile.in -------------------------------------------------------------------------------- /dlls/atl/atl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/atl/atl.c -------------------------------------------------------------------------------- /dlls/atl/atl.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/atl/atl.spec -------------------------------------------------------------------------------- /dlls/atl/atl30.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/atl/atl30.c -------------------------------------------------------------------------------- /dlls/atl/atl_ax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/atl/atl_ax.c -------------------------------------------------------------------------------- /dlls/atl/atl_lib.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/atl/atl_lib.idl -------------------------------------------------------------------------------- /dlls/atl/registrar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/atl/registrar.c -------------------------------------------------------------------------------- /dlls/atl80/atl80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/atl80/atl80.c -------------------------------------------------------------------------------- /dlls/atl80/atl80.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/atl80/atl80.rc -------------------------------------------------------------------------------- /dlls/atl90/atl90.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/atl90/atl90.rc -------------------------------------------------------------------------------- /dlls/atmlib/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/atmlib/main.c -------------------------------------------------------------------------------- /dlls/authz/authz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/authz/authz.c -------------------------------------------------------------------------------- /dlls/avifil32/api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/avifil32/api.c -------------------------------------------------------------------------------- /dlls/avrt/avrt.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/avrt/avrt.spec -------------------------------------------------------------------------------- /dlls/avrt/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/avrt/main.c -------------------------------------------------------------------------------- /dlls/bcrypt/gcrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/bcrypt/gcrypt.c -------------------------------------------------------------------------------- /dlls/bcrypt/gnutls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/bcrypt/gnutls.c -------------------------------------------------------------------------------- /dlls/bcrypt/macos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/bcrypt/macos.c -------------------------------------------------------------------------------- /dlls/bcrypt/md2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/bcrypt/md2.c -------------------------------------------------------------------------------- /dlls/bcrypt/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/bcrypt/sha256.c -------------------------------------------------------------------------------- /dlls/bcrypt/sha512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/bcrypt/sha512.c -------------------------------------------------------------------------------- /dlls/cabinet/fci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cabinet/fci.c -------------------------------------------------------------------------------- /dlls/cabinet/fdi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cabinet/fdi.c -------------------------------------------------------------------------------- /dlls/cabinet/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cabinet/zlib.h -------------------------------------------------------------------------------- /dlls/cards/b1fv.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/b1fv.bmp -------------------------------------------------------------------------------- /dlls/cards/b2fv.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/b2fv.bmp -------------------------------------------------------------------------------- /dlls/cards/c1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/c1.bmp -------------------------------------------------------------------------------- /dlls/cards/c10.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/c10.bmp -------------------------------------------------------------------------------- /dlls/cards/c2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/c2.bmp -------------------------------------------------------------------------------- /dlls/cards/c3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/c3.bmp -------------------------------------------------------------------------------- /dlls/cards/c4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/c4.bmp -------------------------------------------------------------------------------- /dlls/cards/c5.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/c5.bmp -------------------------------------------------------------------------------- /dlls/cards/c6.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/c6.bmp -------------------------------------------------------------------------------- /dlls/cards/c7.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/c7.bmp -------------------------------------------------------------------------------- /dlls/cards/c8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/c8.bmp -------------------------------------------------------------------------------- /dlls/cards/c9.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/c9.bmp -------------------------------------------------------------------------------- /dlls/cards/cards.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/cards.c -------------------------------------------------------------------------------- /dlls/cards/cards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/cards.h -------------------------------------------------------------------------------- /dlls/cards/cards.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/cards.rc -------------------------------------------------------------------------------- /dlls/cards/cj.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/cj.bmp -------------------------------------------------------------------------------- /dlls/cards/ck.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/ck.bmp -------------------------------------------------------------------------------- /dlls/cards/cq.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/cq.bmp -------------------------------------------------------------------------------- /dlls/cards/d1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/d1.bmp -------------------------------------------------------------------------------- /dlls/cards/d10.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/d10.bmp -------------------------------------------------------------------------------- /dlls/cards/d2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/d2.bmp -------------------------------------------------------------------------------- /dlls/cards/d3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/d3.bmp -------------------------------------------------------------------------------- /dlls/cards/d4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/d4.bmp -------------------------------------------------------------------------------- /dlls/cards/d5.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/d5.bmp -------------------------------------------------------------------------------- /dlls/cards/d6.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/d6.bmp -------------------------------------------------------------------------------- /dlls/cards/d7.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/d7.bmp -------------------------------------------------------------------------------- /dlls/cards/d8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/d8.bmp -------------------------------------------------------------------------------- /dlls/cards/d9.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/d9.bmp -------------------------------------------------------------------------------- /dlls/cards/dj.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/dj.bmp -------------------------------------------------------------------------------- /dlls/cards/dk.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/dk.bmp -------------------------------------------------------------------------------- /dlls/cards/dq.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/dq.bmp -------------------------------------------------------------------------------- /dlls/cards/free.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/free.bmp -------------------------------------------------------------------------------- /dlls/cards/h1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/h1.bmp -------------------------------------------------------------------------------- /dlls/cards/h10.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/h10.bmp -------------------------------------------------------------------------------- /dlls/cards/h2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/h2.bmp -------------------------------------------------------------------------------- /dlls/cards/h3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/h3.bmp -------------------------------------------------------------------------------- /dlls/cards/h4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/h4.bmp -------------------------------------------------------------------------------- /dlls/cards/h5.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/h5.bmp -------------------------------------------------------------------------------- /dlls/cards/h6.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/h6.bmp -------------------------------------------------------------------------------- /dlls/cards/h7.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/h7.bmp -------------------------------------------------------------------------------- /dlls/cards/h8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/h8.bmp -------------------------------------------------------------------------------- /dlls/cards/h9.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/h9.bmp -------------------------------------------------------------------------------- /dlls/cards/hj.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/hj.bmp -------------------------------------------------------------------------------- /dlls/cards/hk.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/hk.bmp -------------------------------------------------------------------------------- /dlls/cards/hq.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/hq.bmp -------------------------------------------------------------------------------- /dlls/cards/s1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/s1.bmp -------------------------------------------------------------------------------- /dlls/cards/s10.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/s10.bmp -------------------------------------------------------------------------------- /dlls/cards/s2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/s2.bmp -------------------------------------------------------------------------------- /dlls/cards/s3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/s3.bmp -------------------------------------------------------------------------------- /dlls/cards/s4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/s4.bmp -------------------------------------------------------------------------------- /dlls/cards/s5.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/s5.bmp -------------------------------------------------------------------------------- /dlls/cards/s6.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/s6.bmp -------------------------------------------------------------------------------- /dlls/cards/s7.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/s7.bmp -------------------------------------------------------------------------------- /dlls/cards/s8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/s8.bmp -------------------------------------------------------------------------------- /dlls/cards/s9.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/s9.bmp -------------------------------------------------------------------------------- /dlls/cards/sj.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/sj.bmp -------------------------------------------------------------------------------- /dlls/cards/sk.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/sk.bmp -------------------------------------------------------------------------------- /dlls/cards/sq.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/sq.bmp -------------------------------------------------------------------------------- /dlls/cards/theo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/theo.bmp -------------------------------------------------------------------------------- /dlls/cards/thex.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cards/thex.bmp -------------------------------------------------------------------------------- /dlls/cdosys/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cdosys/main.c -------------------------------------------------------------------------------- /dlls/combase/roapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/combase/roapi.c -------------------------------------------------------------------------------- /dlls/comctl32/dpa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/comctl32/dpa.c -------------------------------------------------------------------------------- /dlls/comctl32/dsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/comctl32/dsa.c -------------------------------------------------------------------------------- /dlls/comctl32/edit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/comctl32/edit.c -------------------------------------------------------------------------------- /dlls/comctl32/tab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/comctl32/tab.c -------------------------------------------------------------------------------- /dlls/comdlg32/cdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/comdlg32/cdlg.h -------------------------------------------------------------------------------- /dlls/comsvcs/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/comsvcs/main.c -------------------------------------------------------------------------------- /dlls/concrt140/Makefile.in: -------------------------------------------------------------------------------- 1 | MODULE = concrt140.dll 2 | -------------------------------------------------------------------------------- /dlls/connect/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/connect/main.c -------------------------------------------------------------------------------- /dlls/crypt32/cert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/crypt32/cert.c -------------------------------------------------------------------------------- /dlls/crypt32/chain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/crypt32/chain.c -------------------------------------------------------------------------------- /dlls/crypt32/crl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/crypt32/crl.c -------------------------------------------------------------------------------- /dlls/crypt32/ctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/crypt32/ctl.c -------------------------------------------------------------------------------- /dlls/crypt32/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/crypt32/main.c -------------------------------------------------------------------------------- /dlls/crypt32/msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/crypt32/msg.c -------------------------------------------------------------------------------- /dlls/crypt32/oid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/crypt32/oid.c -------------------------------------------------------------------------------- /dlls/crypt32/pfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/crypt32/pfx.c -------------------------------------------------------------------------------- /dlls/crypt32/sip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/crypt32/sip.c -------------------------------------------------------------------------------- /dlls/crypt32/store.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/crypt32/store.c -------------------------------------------------------------------------------- /dlls/crypt32/str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/crypt32/str.c -------------------------------------------------------------------------------- /dlls/cryptdlg/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cryptdlg/main.c -------------------------------------------------------------------------------- /dlls/cryptui/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/cryptui/main.c -------------------------------------------------------------------------------- /dlls/ctapi32/ctapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/ctapi32/ctapi.h -------------------------------------------------------------------------------- /dlls/d2d1/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/d2d1/bitmap.c -------------------------------------------------------------------------------- /dlls/d2d1/brush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/d2d1/brush.c -------------------------------------------------------------------------------- /dlls/d2d1/d2d1.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/d2d1/d2d1.spec -------------------------------------------------------------------------------- /dlls/d2d1/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/d2d1/device.c -------------------------------------------------------------------------------- /dlls/d2d1/effect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/d2d1/effect.c -------------------------------------------------------------------------------- /dlls/d2d1/factory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/d2d1/factory.c -------------------------------------------------------------------------------- /dlls/d2d1/geometry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/d2d1/geometry.c -------------------------------------------------------------------------------- /dlls/d2d1/layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/d2d1/layer.c -------------------------------------------------------------------------------- /dlls/d2d1/mesh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/d2d1/mesh.c -------------------------------------------------------------------------------- /dlls/d2d1/stroke.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/d2d1/stroke.c -------------------------------------------------------------------------------- /dlls/d2d1/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/d2d1/version.rc -------------------------------------------------------------------------------- /dlls/d3d10/effect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/d3d10/effect.c -------------------------------------------------------------------------------- /dlls/d3d10/shader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/d3d10/shader.c -------------------------------------------------------------------------------- /dlls/d3d11/async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/d3d11/async.c -------------------------------------------------------------------------------- /dlls/d3d11/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/d3d11/buffer.c -------------------------------------------------------------------------------- /dlls/d3d11/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/d3d11/device.c -------------------------------------------------------------------------------- /dlls/d3d11/shader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/d3d11/shader.c -------------------------------------------------------------------------------- /dlls/d3d11/state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/d3d11/state.c -------------------------------------------------------------------------------- /dlls/d3d11/texture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/d3d11/texture.c -------------------------------------------------------------------------------- /dlls/d3d11/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/d3d11/utils.c -------------------------------------------------------------------------------- /dlls/d3d11/view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/d3d11/view.c -------------------------------------------------------------------------------- /dlls/d3d8/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/d3d8/buffer.c -------------------------------------------------------------------------------- /dlls/d3d8/d3d8.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/d3d8/d3d8.spec -------------------------------------------------------------------------------- /dlls/d3d8/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/d3d8/device.c -------------------------------------------------------------------------------- /dlls/d3d8/directx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/d3d8/directx.c -------------------------------------------------------------------------------- /dlls/d3d8/shader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/d3d8/shader.c -------------------------------------------------------------------------------- /dlls/d3d8/surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/d3d8/surface.c -------------------------------------------------------------------------------- /dlls/d3d8/texture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/d3d8/texture.c -------------------------------------------------------------------------------- /dlls/d3d8/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/d3d8/version.rc -------------------------------------------------------------------------------- /dlls/d3d8/volume.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/d3d8/volume.c -------------------------------------------------------------------------------- /dlls/d3d9/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/d3d9/buffer.c -------------------------------------------------------------------------------- /dlls/d3d9/d3d9.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/d3d9/d3d9.spec -------------------------------------------------------------------------------- /dlls/d3d9/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/d3d9/device.c -------------------------------------------------------------------------------- /dlls/d3d9/directx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/d3d9/directx.c -------------------------------------------------------------------------------- /dlls/d3d9/query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/d3d9/query.c -------------------------------------------------------------------------------- /dlls/d3d9/shader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/d3d9/shader.c -------------------------------------------------------------------------------- /dlls/d3d9/surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/d3d9/surface.c -------------------------------------------------------------------------------- /dlls/d3drm/face.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/d3drm/face.c -------------------------------------------------------------------------------- /dlls/d3drm/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/d3drm/math.c -------------------------------------------------------------------------------- /dlls/d3dx9_36/tests/res.vsh: -------------------------------------------------------------------------------- 1 | #define REGISTER r0 2 | vs.1.1 3 | -------------------------------------------------------------------------------- /dlls/ddraw/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/ddraw/main.c -------------------------------------------------------------------------------- /dlls/dpnet/peer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/dpnet/peer.c -------------------------------------------------------------------------------- /dlls/dsdmo/echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/dsdmo/echo.c -------------------------------------------------------------------------------- /dlls/dsdmo/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/dsdmo/main.c -------------------------------------------------------------------------------- /dlls/dsound/eax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/dsound/eax.c -------------------------------------------------------------------------------- /dlls/dsound/fir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/dsound/fir.h -------------------------------------------------------------------------------- /dlls/dx8vb/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/dx8vb/main.c -------------------------------------------------------------------------------- /dlls/dxgi/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/dxgi/utils.c -------------------------------------------------------------------------------- /dlls/dxva2/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/dxva2/main.c -------------------------------------------------------------------------------- /dlls/evr/evr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/evr/evr.c -------------------------------------------------------------------------------- /dlls/evr/evr.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/evr/evr.spec -------------------------------------------------------------------------------- /dlls/evr/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/evr/main.c -------------------------------------------------------------------------------- /dlls/gdi32/bidi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/gdi32/bidi.c -------------------------------------------------------------------------------- /dlls/gdi32/dc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/gdi32/dc.c -------------------------------------------------------------------------------- /dlls/gdi32/dib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/gdi32/dib.c -------------------------------------------------------------------------------- /dlls/gdi32/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/gdi32/font.c -------------------------------------------------------------------------------- /dlls/gdi32/icm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/gdi32/icm.c -------------------------------------------------------------------------------- /dlls/gdi32/path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/gdi32/path.c -------------------------------------------------------------------------------- /dlls/gdi32/pen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/gdi32/pen.c -------------------------------------------------------------------------------- /dlls/glu32/geom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/glu32/geom.c -------------------------------------------------------------------------------- /dlls/glu32/glu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/glu32/glu.c -------------------------------------------------------------------------------- /dlls/glu32/mesh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/glu32/mesh.c -------------------------------------------------------------------------------- /dlls/glu32/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/glu32/mesh.h -------------------------------------------------------------------------------- /dlls/glu32/quad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/glu32/quad.c -------------------------------------------------------------------------------- /dlls/glu32/tess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/glu32/tess.c -------------------------------------------------------------------------------- /dlls/glu32/tess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/glu32/tess.h -------------------------------------------------------------------------------- /dlls/hal/hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/hal/hal.c -------------------------------------------------------------------------------- /dlls/hal/hal.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/hal/hal.spec -------------------------------------------------------------------------------- /dlls/hid/hid.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/hid/hid.spec -------------------------------------------------------------------------------- /dlls/hid/hidd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/hid/hidd.c -------------------------------------------------------------------------------- /dlls/hid/hidp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/hid/hidp.c -------------------------------------------------------------------------------- /dlls/hid/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/hid/main.c -------------------------------------------------------------------------------- /dlls/hidclass.sys/hidclass.sys.spec: -------------------------------------------------------------------------------- 1 | @ stdcall HidRegisterMinidriver(ptr) 2 | -------------------------------------------------------------------------------- /dlls/hlink/link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/hlink/link.c -------------------------------------------------------------------------------- /dlls/http.sys/http.sys.spec: -------------------------------------------------------------------------------- 1 | # nothing to export 2 | -------------------------------------------------------------------------------- /dlls/icmp/Makefile.in: -------------------------------------------------------------------------------- 1 | MODULE = icmp.dll 2 | -------------------------------------------------------------------------------- /dlls/ieframe/ie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/ieframe/ie.c -------------------------------------------------------------------------------- /dlls/imm32/imm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/imm32/imm.c -------------------------------------------------------------------------------- /dlls/inseng/inf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/inseng/inf.c -------------------------------------------------------------------------------- /dlls/iprop/Makefile.in: -------------------------------------------------------------------------------- 1 | MODULE = iprop.dll 2 | -------------------------------------------------------------------------------- /dlls/irprops.cpl/Makefile.in: -------------------------------------------------------------------------------- 1 | MODULE = irprops.cpl 2 | -------------------------------------------------------------------------------- /dlls/itss/itss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/itss/itss.c -------------------------------------------------------------------------------- /dlls/itss/lzx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/itss/lzx.c -------------------------------------------------------------------------------- /dlls/itss/lzx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/itss/lzx.h -------------------------------------------------------------------------------- /dlls/itss/rsrc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/itss/rsrc.rc -------------------------------------------------------------------------------- /dlls/kernel32/tests/dummy.spec: -------------------------------------------------------------------------------- 1 | @ stdcall get_path(ptr long) 2 | -------------------------------------------------------------------------------- /dlls/localui/localui.spec: -------------------------------------------------------------------------------- 1 | @ stdcall InitializePrintMonitorUI() 2 | -------------------------------------------------------------------------------- /dlls/mapi32/res.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/mapi32/res.h -------------------------------------------------------------------------------- /dlls/mf/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/mf/main.c -------------------------------------------------------------------------------- /dlls/mf/mf.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/mf/mf.idl -------------------------------------------------------------------------------- /dlls/mf/mf.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/mf/mf.rc -------------------------------------------------------------------------------- /dlls/mf/mf.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/mf/mf.rgs -------------------------------------------------------------------------------- /dlls/mf/mf.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/mf/mf.spec -------------------------------------------------------------------------------- /dlls/mf/sar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/mf/sar.c -------------------------------------------------------------------------------- /dlls/mf/session.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/mf/session.c -------------------------------------------------------------------------------- /dlls/mf3216/Makefile.in: -------------------------------------------------------------------------------- 1 | MODULE = mf3216.dll 2 | -------------------------------------------------------------------------------- /dlls/mferror/mferror.spec: -------------------------------------------------------------------------------- 1 | # This is resource dll 2 | -------------------------------------------------------------------------------- /dlls/mountmgr.sys/mountmgr.sys.spec: -------------------------------------------------------------------------------- 1 | # nothing to export 2 | -------------------------------------------------------------------------------- /dlls/mpr/auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/mpr/auth.c -------------------------------------------------------------------------------- /dlls/mpr/mpr.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/mpr/mpr.rc -------------------------------------------------------------------------------- /dlls/mpr/mpr.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/mpr/mpr.spec -------------------------------------------------------------------------------- /dlls/mpr/mprres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/mpr/mprres.h -------------------------------------------------------------------------------- /dlls/mpr/netspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/mpr/netspi.h -------------------------------------------------------------------------------- /dlls/mpr/nps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/mpr/nps.c -------------------------------------------------------------------------------- /dlls/mpr/wnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/mpr/wnet.c -------------------------------------------------------------------------------- /dlls/mscms/icc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/mscms/icc.c -------------------------------------------------------------------------------- /dlls/mscms/stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/mscms/stub.c -------------------------------------------------------------------------------- /dlls/msdrm/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/msdrm/main.c -------------------------------------------------------------------------------- /dlls/mshtml.tlb/mshtml.tlb.spec: -------------------------------------------------------------------------------- 1 | # no exported entry points 2 | -------------------------------------------------------------------------------- /dlls/mshtml/svg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/mshtml/svg.c -------------------------------------------------------------------------------- /dlls/msi/action.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/msi/action.c -------------------------------------------------------------------------------- /dlls/msi/alter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/msi/alter.c -------------------------------------------------------------------------------- /dlls/msi/cond.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/msi/cond.y -------------------------------------------------------------------------------- /dlls/msi/create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/msi/create.c -------------------------------------------------------------------------------- /dlls/msi/custom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/msi/custom.c -------------------------------------------------------------------------------- /dlls/msi/delete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/msi/delete.c -------------------------------------------------------------------------------- /dlls/msi/dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/msi/dialog.c -------------------------------------------------------------------------------- /dlls/msi/drop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/msi/drop.c -------------------------------------------------------------------------------- /dlls/msi/files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/msi/files.c -------------------------------------------------------------------------------- /dlls/msi/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/msi/font.c -------------------------------------------------------------------------------- /dlls/msi/format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/msi/format.c -------------------------------------------------------------------------------- /dlls/msi/handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/msi/handle.c -------------------------------------------------------------------------------- /dlls/msi/insert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/msi/insert.c -------------------------------------------------------------------------------- /dlls/msi/media.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/msi/media.c -------------------------------------------------------------------------------- /dlls/msi/msi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/msi/msi.c -------------------------------------------------------------------------------- /dlls/msi/msi.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/msi/msi.rc -------------------------------------------------------------------------------- /dlls/msi/msi.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/msi/msi.spec -------------------------------------------------------------------------------- /dlls/msi/patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/msi/patch.c -------------------------------------------------------------------------------- /dlls/msi/query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/msi/query.h -------------------------------------------------------------------------------- /dlls/msi/record.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/msi/record.c -------------------------------------------------------------------------------- /dlls/msi/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/msi/script.c -------------------------------------------------------------------------------- /dlls/msi/select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/msi/select.c -------------------------------------------------------------------------------- /dlls/msi/source.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/msi/source.c -------------------------------------------------------------------------------- /dlls/msi/sql.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/msi/sql.y -------------------------------------------------------------------------------- /dlls/msi/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/msi/string.c -------------------------------------------------------------------------------- /dlls/msi/table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/msi/table.c -------------------------------------------------------------------------------- /dlls/msi/update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/msi/update.c -------------------------------------------------------------------------------- /dlls/msi/where.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/msi/where.c -------------------------------------------------------------------------------- /dlls/msimsg/msimsg.spec: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /dlls/msvcp120_app/Makefile.in: -------------------------------------------------------------------------------- 1 | MODULE = msvcp120_app.dll 2 | -------------------------------------------------------------------------------- /dlls/msvcr120_app/Makefile.in: -------------------------------------------------------------------------------- 1 | MODULE = msvcr120_app.dll 2 | -------------------------------------------------------------------------------- /dlls/msvcrt/cpp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/msvcrt/cpp.c -------------------------------------------------------------------------------- /dlls/msvcrt/cxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/msvcrt/cxx.h -------------------------------------------------------------------------------- /dlls/msvcrt/dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/msvcrt/dir.c -------------------------------------------------------------------------------- /dlls/msvcrt/iob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/msvcrt/iob.c -------------------------------------------------------------------------------- /dlls/msvcrt/wcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/msvcrt/wcs.c -------------------------------------------------------------------------------- /dlls/msxml/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/msxml/main.c -------------------------------------------------------------------------------- /dlls/msxml3/bsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/msxml3/bsc.c -------------------------------------------------------------------------------- /dlls/msxml3/pi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/msxml3/pi.c -------------------------------------------------------------------------------- /dlls/msxml3/xdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/msxml3/xdr.c -------------------------------------------------------------------------------- /dlls/mtxdm/mtxdm.spec: -------------------------------------------------------------------------------- 1 | @ cdecl GetDispenserManager(ptr) 2 | -------------------------------------------------------------------------------- /dlls/ntdll/atom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/ntdll/atom.c -------------------------------------------------------------------------------- /dlls/ntdll/env.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/ntdll/env.c -------------------------------------------------------------------------------- /dlls/ntdll/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/ntdll/file.c -------------------------------------------------------------------------------- /dlls/ntdll/heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/ntdll/heap.c -------------------------------------------------------------------------------- /dlls/ntdll/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/ntdll/misc.c -------------------------------------------------------------------------------- /dlls/ntdll/nt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/ntdll/nt.c -------------------------------------------------------------------------------- /dlls/ntdll/om.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/ntdll/om.c -------------------------------------------------------------------------------- /dlls/ntdll/path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/ntdll/path.c -------------------------------------------------------------------------------- /dlls/ntdll/reg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/ntdll/reg.c -------------------------------------------------------------------------------- /dlls/ntdll/rtl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/ntdll/rtl.c -------------------------------------------------------------------------------- /dlls/ntdll/sec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/ntdll/sec.c -------------------------------------------------------------------------------- /dlls/ntdll/sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/ntdll/sync.c -------------------------------------------------------------------------------- /dlls/ntdll/tape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/ntdll/tape.c -------------------------------------------------------------------------------- /dlls/ntdll/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/ntdll/time.c -------------------------------------------------------------------------------- /dlls/ntoskrnl.exe/tests/driver.spec: -------------------------------------------------------------------------------- 1 | # nothing here yet 2 | -------------------------------------------------------------------------------- /dlls/ntoskrnl.exe/tests/driver2.spec: -------------------------------------------------------------------------------- 1 | # nothing here yet 2 | -------------------------------------------------------------------------------- /dlls/ntoskrnl.exe/tests/driver3.spec: -------------------------------------------------------------------------------- 1 | # nothing here yet 2 | -------------------------------------------------------------------------------- /dlls/nvencodeapi/nvencodeapi.spec: -------------------------------------------------------------------------------- 1 | @ stdcall NvEncodeAPICreateInstance(ptr) 2 | -------------------------------------------------------------------------------- /dlls/nvencodeapi64/nvencodeapi64.spec: -------------------------------------------------------------------------------- 1 | @ stdcall NvEncodeAPICreateInstance(ptr) 2 | -------------------------------------------------------------------------------- /dlls/ole32/git.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/ole32/git.c -------------------------------------------------------------------------------- /dlls/ole32/ifs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/ole32/ifs.c -------------------------------------------------------------------------------- /dlls/ole32/ole2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/ole32/ole2.c -------------------------------------------------------------------------------- /dlls/ole32/rpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/ole32/rpc.c -------------------------------------------------------------------------------- /dlls/oledb32/convert.idl: -------------------------------------------------------------------------------- 1 | #pragma makedep ident 2 | 3 | #include "msdadc.idl" 4 | -------------------------------------------------------------------------------- /dlls/pdh/pdh.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/pdh/pdh.spec -------------------------------------------------------------------------------- /dlls/qcap/avico.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/qcap/avico.c -------------------------------------------------------------------------------- /dlls/qcap/v4l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/qcap/v4l.c -------------------------------------------------------------------------------- /dlls/qedit/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/qedit/main.c -------------------------------------------------------------------------------- /dlls/qmgr/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/qmgr/file.c -------------------------------------------------------------------------------- /dlls/qmgr/job.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/qmgr/job.c -------------------------------------------------------------------------------- /dlls/qmgr/qmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/qmgr/qmgr.c -------------------------------------------------------------------------------- /dlls/qmgr/qmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/qmgr/qmgr.h -------------------------------------------------------------------------------- /dlls/qmgr/rsrc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/qmgr/rsrc.rc -------------------------------------------------------------------------------- /dlls/qwave/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/qwave/main.c -------------------------------------------------------------------------------- /dlls/riched32/riched32.spec: -------------------------------------------------------------------------------- 1 | 2 stdcall -private DllGetVersion (ptr) 2 | -------------------------------------------------------------------------------- /dlls/rsaenh/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/rsaenh/aes.c -------------------------------------------------------------------------------- /dlls/rsaenh/des.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/rsaenh/des.c -------------------------------------------------------------------------------- /dlls/rsaenh/mpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/rsaenh/mpi.c -------------------------------------------------------------------------------- /dlls/rsaenh/rc2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/rsaenh/rc2.c -------------------------------------------------------------------------------- /dlls/rsaenh/rc4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/rsaenh/rc4.c -------------------------------------------------------------------------------- /dlls/rsaenh/rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/rsaenh/rsa.c -------------------------------------------------------------------------------- /dlls/sane.ds/ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/sane.ds/ui.c -------------------------------------------------------------------------------- /dlls/sapi/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/sapi/main.c -------------------------------------------------------------------------------- /dlls/sapi/sapi.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/sapi/sapi.rc -------------------------------------------------------------------------------- /dlls/sapi/token.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/sapi/token.c -------------------------------------------------------------------------------- /dlls/sapi/tts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/sapi/tts.c -------------------------------------------------------------------------------- /dlls/sas/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/sas/main.c -------------------------------------------------------------------------------- /dlls/sas/sas.spec: -------------------------------------------------------------------------------- 1 | @ stub SendSAS 2 | -------------------------------------------------------------------------------- /dlls/schedsvc/schedsvc.spec: -------------------------------------------------------------------------------- 1 | @ stdcall -private ServiceMain(long ptr) 2 | -------------------------------------------------------------------------------- /dlls/sfc/sfc.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/sfc/sfc.spec -------------------------------------------------------------------------------- /dlls/shdoclc/shdoclc.spec: -------------------------------------------------------------------------------- 1 | # no exported functions 2 | -------------------------------------------------------------------------------- /dlls/slc/slc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/slc/slc.c -------------------------------------------------------------------------------- /dlls/slc/slc.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/slc/slc.spec -------------------------------------------------------------------------------- /dlls/stdole2.tlb/stdole2.tlb.spec: -------------------------------------------------------------------------------- 1 | # no exported entry points 2 | -------------------------------------------------------------------------------- /dlls/stdole32.tlb/stdole32.tlb.spec: -------------------------------------------------------------------------------- 1 | # no exported entry points 2 | -------------------------------------------------------------------------------- /dlls/sti/sti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/sti/sti.c -------------------------------------------------------------------------------- /dlls/sti/sti.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/sti/sti.spec -------------------------------------------------------------------------------- /dlls/sxs/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/sxs/cache.c -------------------------------------------------------------------------------- /dlls/sxs/name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/sxs/name.c -------------------------------------------------------------------------------- /dlls/sxs/sxs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/sxs/sxs.c -------------------------------------------------------------------------------- /dlls/sxs/sxs.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/sxs/sxs.spec -------------------------------------------------------------------------------- /dlls/tdh/tdh.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/tdh/tdh.spec -------------------------------------------------------------------------------- /dlls/tzres/tzres.spec: -------------------------------------------------------------------------------- 1 | # nothing exported 2 | -------------------------------------------------------------------------------- /dlls/url/url.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/url/url.spec -------------------------------------------------------------------------------- /dlls/urlmon/ftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/urlmon/ftp.c -------------------------------------------------------------------------------- /dlls/urlmon/mk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/urlmon/mk.c -------------------------------------------------------------------------------- /dlls/urlmon/uri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/urlmon/uri.c -------------------------------------------------------------------------------- /dlls/user32/mdi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/user32/mdi.c -------------------------------------------------------------------------------- /dlls/user32/spy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/user32/spy.c -------------------------------------------------------------------------------- /dlls/user32/win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/user32/win.c -------------------------------------------------------------------------------- /dlls/user32/win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/user32/win.h -------------------------------------------------------------------------------- /dlls/usp10/bidi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/usp10/bidi.c -------------------------------------------------------------------------------- /dlls/uuid/d2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/uuid/d2d.c -------------------------------------------------------------------------------- /dlls/uuid/uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/uuid/uuid.c -------------------------------------------------------------------------------- /dlls/vcomp/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/vcomp/main.c -------------------------------------------------------------------------------- /dlls/vcomp100/Makefile.in: -------------------------------------------------------------------------------- 1 | MODULE = vcomp100.dll 2 | -------------------------------------------------------------------------------- /dlls/vcomp110/Makefile.in: -------------------------------------------------------------------------------- 1 | MODULE = vcomp110.dll 2 | -------------------------------------------------------------------------------- /dlls/vcomp120/Makefile.in: -------------------------------------------------------------------------------- 1 | MODULE = vcomp120.dll 2 | -------------------------------------------------------------------------------- /dlls/vcomp140/Makefile.in: -------------------------------------------------------------------------------- 1 | MODULE = vcomp140.dll 2 | -------------------------------------------------------------------------------- /dlls/vcomp90/Makefile.in: -------------------------------------------------------------------------------- 1 | MODULE = vcomp90.dll 2 | -------------------------------------------------------------------------------- /dlls/vcruntime140_1/Makefile.in: -------------------------------------------------------------------------------- 1 | MODULE = vcruntime140_1.dll 2 | -------------------------------------------------------------------------------- /dlls/vga/vga.spec: -------------------------------------------------------------------------------- 1 | # nothing 2 | -------------------------------------------------------------------------------- /dlls/wer/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/wer/main.c -------------------------------------------------------------------------------- /dlls/wer/wer.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/wer/wer.spec -------------------------------------------------------------------------------- /dlls/winebus.sys/winebus.sys.spec: -------------------------------------------------------------------------------- 1 | # nothing to export 2 | -------------------------------------------------------------------------------- /dlls/wined3d/cs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/wined3d/cs.c -------------------------------------------------------------------------------- /dlls/winehid.sys/winehid.sys.spec: -------------------------------------------------------------------------------- 1 | # nothing to export 2 | -------------------------------------------------------------------------------- /dlls/winmm/mci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/winmm/mci.c -------------------------------------------------------------------------------- /dlls/winmm/mmio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/winmm/mmio.c -------------------------------------------------------------------------------- /dlls/winmm/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/winmm/time.c -------------------------------------------------------------------------------- /dlls/winusb/Makefile.in: -------------------------------------------------------------------------------- 1 | MODULE = winusb.dll 2 | -------------------------------------------------------------------------------- /dlls/wldap32/dn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/wldap32/dn.c -------------------------------------------------------------------------------- /dlls/wmasf/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/wmasf/main.c -------------------------------------------------------------------------------- /dlls/wmi/wmi.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/wmi/wmi.spec -------------------------------------------------------------------------------- /dlls/wmp/events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/wmp/events.c -------------------------------------------------------------------------------- /dlls/wmp/oleobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/wmp/oleobj.c -------------------------------------------------------------------------------- /dlls/wmp/player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/wmp/player.c -------------------------------------------------------------------------------- /dlls/wmp/rsrc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/wmp/rsrc.rc -------------------------------------------------------------------------------- /dlls/wmp/wmp.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/wmp/wmp.rgs -------------------------------------------------------------------------------- /dlls/wmp/wmp.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/wmp/wmp.spec -------------------------------------------------------------------------------- /dlls/wpc/wpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/wpc/wpc.c -------------------------------------------------------------------------------- /dlls/wpc/wpc.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/wpc/wpc.spec -------------------------------------------------------------------------------- /dlls/wsdapi/xml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/wsdapi/xml.c -------------------------------------------------------------------------------- /dlls/wuapi/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/dlls/wuapi/main.c -------------------------------------------------------------------------------- /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/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/fonts/Makefile.in -------------------------------------------------------------------------------- /fonts/arial.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/fonts/arial.sfd -------------------------------------------------------------------------------- /fonts/arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/fonts/arial.ttf -------------------------------------------------------------------------------- /fonts/cour.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/fonts/cour.sfd -------------------------------------------------------------------------------- /fonts/cour.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/fonts/cour.ttf -------------------------------------------------------------------------------- /fonts/courier.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/fonts/courier.sfd -------------------------------------------------------------------------------- /fonts/courier.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/fonts/courier.ttf -------------------------------------------------------------------------------- /fonts/genttf.ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/fonts/genttf.ff -------------------------------------------------------------------------------- /fonts/marlett.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/fonts/marlett.sfd -------------------------------------------------------------------------------- /fonts/marlett.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/fonts/marlett.ttf -------------------------------------------------------------------------------- /fonts/msyh.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/fonts/msyh.sfd -------------------------------------------------------------------------------- /fonts/msyh.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/fonts/msyh.ttf -------------------------------------------------------------------------------- /fonts/symbol.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/fonts/symbol.sfd -------------------------------------------------------------------------------- /fonts/symbol.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/fonts/symbol.ttf -------------------------------------------------------------------------------- /fonts/system.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/fonts/system.sfd -------------------------------------------------------------------------------- /fonts/system.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/fonts/system.ttf -------------------------------------------------------------------------------- /fonts/tahoma.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/fonts/tahoma.sfd -------------------------------------------------------------------------------- /fonts/tahoma.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/fonts/tahoma.ttf -------------------------------------------------------------------------------- /fonts/times.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/fonts/times.sfd -------------------------------------------------------------------------------- /fonts/times.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/fonts/times.ttf -------------------------------------------------------------------------------- /include/accctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/accctrl.h -------------------------------------------------------------------------------- /include/aclapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/aclapi.h -------------------------------------------------------------------------------- /include/aclui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/aclui.h -------------------------------------------------------------------------------- /include/adserr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/adserr.h -------------------------------------------------------------------------------- /include/adshlp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/adshlp.h -------------------------------------------------------------------------------- /include/advpub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/advpub.h -------------------------------------------------------------------------------- /include/af_irda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/af_irda.h -------------------------------------------------------------------------------- /include/amaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/amaudio.h -------------------------------------------------------------------------------- /include/amsi.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/amsi.idl -------------------------------------------------------------------------------- /include/apiset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/apiset.h -------------------------------------------------------------------------------- /include/appmgmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/appmgmt.h -------------------------------------------------------------------------------- /include/atlbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/atlbase.h -------------------------------------------------------------------------------- /include/atlcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/atlcom.h -------------------------------------------------------------------------------- /include/atlwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/atlwin.h -------------------------------------------------------------------------------- /include/authz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/authz.h -------------------------------------------------------------------------------- /include/aviriff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/aviriff.h -------------------------------------------------------------------------------- /include/avrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/avrt.h -------------------------------------------------------------------------------- /include/basetsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/basetsd.h -------------------------------------------------------------------------------- /include/bcrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/bcrypt.h -------------------------------------------------------------------------------- /include/bits.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/bits.idl -------------------------------------------------------------------------------- /include/bitsmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/bitsmsg.h -------------------------------------------------------------------------------- /include/cderr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/cderr.h -------------------------------------------------------------------------------- /include/cguid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/cguid.h -------------------------------------------------------------------------------- /include/cierror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/cierror.h -------------------------------------------------------------------------------- /include/clusapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/clusapi.h -------------------------------------------------------------------------------- /include/commdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/commdlg.h -------------------------------------------------------------------------------- /include/compobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/compobj.h -------------------------------------------------------------------------------- /include/cor.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/cor.idl -------------------------------------------------------------------------------- /include/corhdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/corhdr.h -------------------------------------------------------------------------------- /include/cpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/cpl.h -------------------------------------------------------------------------------- /include/cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/cuda.h -------------------------------------------------------------------------------- /include/cvconst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/cvconst.h -------------------------------------------------------------------------------- /include/d2d1.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/d2d1.idl -------------------------------------------------------------------------------- /include/d2derr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/d2derr.h -------------------------------------------------------------------------------- /include/d3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/d3d.h -------------------------------------------------------------------------------- /include/d3d10.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/d3d10.idl -------------------------------------------------------------------------------- /include/d3d11.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/d3d11.idl -------------------------------------------------------------------------------- /include/d3d12.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/d3d12.idl -------------------------------------------------------------------------------- /include/d3d8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/d3d8.h -------------------------------------------------------------------------------- /include/d3d9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/d3d9.h -------------------------------------------------------------------------------- /include/d3dcaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/d3dcaps.h -------------------------------------------------------------------------------- /include/d3dhal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/d3dhal.h -------------------------------------------------------------------------------- /include/d3drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/d3drm.h -------------------------------------------------------------------------------- /include/d3dx10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/d3dx10.h -------------------------------------------------------------------------------- /include/d3dx11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/d3dx11.h -------------------------------------------------------------------------------- /include/d3dx9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/d3dx9.h -------------------------------------------------------------------------------- /include/davclnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/davclnt.h -------------------------------------------------------------------------------- /include/dbgeng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/dbgeng.h -------------------------------------------------------------------------------- /include/dbghelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/dbghelp.h -------------------------------------------------------------------------------- /include/dbs.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/dbs.idl -------------------------------------------------------------------------------- /include/dbt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/dbt.h -------------------------------------------------------------------------------- /include/dciddi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/dciddi.h -------------------------------------------------------------------------------- /include/dciman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/dciman.h -------------------------------------------------------------------------------- /include/dde.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/dde.h -------------------------------------------------------------------------------- /include/dde.rh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/dde.rh -------------------------------------------------------------------------------- /include/ddeml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/ddeml.h -------------------------------------------------------------------------------- /include/ddk/csq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/ddk/csq.h -------------------------------------------------------------------------------- /include/ddk/imm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/ddk/imm.h -------------------------------------------------------------------------------- /include/ddk/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/ddk/usb.h -------------------------------------------------------------------------------- /include/ddk/wdm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/ddk/wdm.h -------------------------------------------------------------------------------- /include/ddraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/ddraw.h -------------------------------------------------------------------------------- /include/ddrawi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/ddrawi.h -------------------------------------------------------------------------------- /include/devguid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/devguid.h -------------------------------------------------------------------------------- /include/devpkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/devpkey.h -------------------------------------------------------------------------------- /include/difxapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/difxapi.h -------------------------------------------------------------------------------- /include/dimm.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/dimm.idl -------------------------------------------------------------------------------- /include/dinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/dinput.h -------------------------------------------------------------------------------- /include/dinputd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/dinputd.h -------------------------------------------------------------------------------- /include/dispdib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/dispdib.h -------------------------------------------------------------------------------- /include/dlgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/dlgs.h -------------------------------------------------------------------------------- /include/dls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/dls1.h -------------------------------------------------------------------------------- /include/dls2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/dls2.h -------------------------------------------------------------------------------- /include/dmdls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/dmdls.h -------------------------------------------------------------------------------- /include/dmerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/dmerror.h -------------------------------------------------------------------------------- /include/dmo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/dmo.h -------------------------------------------------------------------------------- /include/dmoreg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/dmoreg.h -------------------------------------------------------------------------------- /include/dmort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/dmort.h -------------------------------------------------------------------------------- /include/dmusicc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/dmusicc.h -------------------------------------------------------------------------------- /include/dmusicf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/dmusicf.h -------------------------------------------------------------------------------- /include/dmusici.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/dmusici.h -------------------------------------------------------------------------------- /include/dmusics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/dmusics.h -------------------------------------------------------------------------------- /include/dpaddr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/dpaddr.h -------------------------------------------------------------------------------- /include/dplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/dplay.h -------------------------------------------------------------------------------- /include/dplay8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/dplay8.h -------------------------------------------------------------------------------- /include/dplobby.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/dplobby.h -------------------------------------------------------------------------------- /include/dsconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/dsconf.h -------------------------------------------------------------------------------- /include/dsgetdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/dsgetdc.h -------------------------------------------------------------------------------- /include/dshow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/dshow.h -------------------------------------------------------------------------------- /include/dsound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/dsound.h -------------------------------------------------------------------------------- /include/dsrole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/dsrole.h -------------------------------------------------------------------------------- /include/dvoice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/dvoice.h -------------------------------------------------------------------------------- /include/dwmapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/dwmapi.h -------------------------------------------------------------------------------- /include/dxdiag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/dxdiag.h -------------------------------------------------------------------------------- /include/dxerr8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/dxerr8.h -------------------------------------------------------------------------------- /include/dxerr9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/dxerr9.h -------------------------------------------------------------------------------- /include/dxfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/dxfile.h -------------------------------------------------------------------------------- /include/dxgi.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/dxgi.idl -------------------------------------------------------------------------------- /include/dxva.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/dxva.h -------------------------------------------------------------------------------- /include/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/errors.h -------------------------------------------------------------------------------- /include/evcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/evcode.h -------------------------------------------------------------------------------- /include/evr.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/evr.idl -------------------------------------------------------------------------------- /include/excpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/excpt.h -------------------------------------------------------------------------------- /include/fci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/fci.h -------------------------------------------------------------------------------- /include/fdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/fdi.h -------------------------------------------------------------------------------- /include/fileapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/fileapi.h -------------------------------------------------------------------------------- /include/fltdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/fltdefs.h -------------------------------------------------------------------------------- /include/fontsub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/fontsub.h -------------------------------------------------------------------------------- /include/gdiplus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/gdiplus.h -------------------------------------------------------------------------------- /include/guiddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/guiddef.h -------------------------------------------------------------------------------- /include/hlguids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/hlguids.h -------------------------------------------------------------------------------- /include/hlink.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/hlink.idl -------------------------------------------------------------------------------- /include/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/http.h -------------------------------------------------------------------------------- /include/iads.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/iads.idl -------------------------------------------------------------------------------- /include/icm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/icm.h -------------------------------------------------------------------------------- /include/icmpapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/icmpapi.h -------------------------------------------------------------------------------- /include/ifdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/ifdef.h -------------------------------------------------------------------------------- /include/ifmib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/ifmib.h -------------------------------------------------------------------------------- /include/ime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/ime.h -------------------------------------------------------------------------------- /include/imm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/imm.h -------------------------------------------------------------------------------- /include/in6addr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/in6addr.h -------------------------------------------------------------------------------- /include/inaddr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/inaddr.h -------------------------------------------------------------------------------- /include/ipmib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/ipmib.h -------------------------------------------------------------------------------- /include/iptypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/iptypes.h -------------------------------------------------------------------------------- /include/isguids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/isguids.h -------------------------------------------------------------------------------- /include/ks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/ks.h -------------------------------------------------------------------------------- /include/ksguid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/ksguid.h -------------------------------------------------------------------------------- /include/ksmedia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/ksmedia.h -------------------------------------------------------------------------------- /include/ksuuids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/ksuuids.h -------------------------------------------------------------------------------- /include/lm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/lm.h -------------------------------------------------------------------------------- /include/lmat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/lmat.h -------------------------------------------------------------------------------- /include/lmcons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/lmcons.h -------------------------------------------------------------------------------- /include/lmerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/lmerr.h -------------------------------------------------------------------------------- /include/lmjoin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/lmjoin.h -------------------------------------------------------------------------------- /include/lmmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/lmmsg.h -------------------------------------------------------------------------------- /include/lmshare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/lmshare.h -------------------------------------------------------------------------------- /include/lmstats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/lmstats.h -------------------------------------------------------------------------------- /include/lmuse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/lmuse.h -------------------------------------------------------------------------------- /include/lmwksta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/lmwksta.h -------------------------------------------------------------------------------- /include/mapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/mapi.h -------------------------------------------------------------------------------- /include/mapival.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/mapival.h -------------------------------------------------------------------------------- /include/mapix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/mapix.h -------------------------------------------------------------------------------- /include/mciavi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/mciavi.h -------------------------------------------------------------------------------- /include/mcx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/mcx.h -------------------------------------------------------------------------------- /include/mfapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/mfapi.h -------------------------------------------------------------------------------- /include/mferror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/mferror.h -------------------------------------------------------------------------------- /include/mfidl.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/mfidl.idl -------------------------------------------------------------------------------- /include/midles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/midles.h -------------------------------------------------------------------------------- /include/minmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/minmax.h -------------------------------------------------------------------------------- /include/mlang.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/mlang.idl -------------------------------------------------------------------------------- /include/mmc.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/mmc.idl -------------------------------------------------------------------------------- /include/mmddk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/mmddk.h -------------------------------------------------------------------------------- /include/mmreg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/mmreg.h -------------------------------------------------------------------------------- /include/mprapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/mprapi.h -------------------------------------------------------------------------------- /include/msacm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/msacm.h -------------------------------------------------------------------------------- /include/msasn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/msasn1.h -------------------------------------------------------------------------------- /include/mscat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/mscat.h -------------------------------------------------------------------------------- /include/msctf.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/msctf.idl -------------------------------------------------------------------------------- /include/msdasql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/msdasql.h -------------------------------------------------------------------------------- /include/msi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/msi.h -------------------------------------------------------------------------------- /include/msidefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/msidefs.h -------------------------------------------------------------------------------- /include/msopc.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/msopc.idl -------------------------------------------------------------------------------- /include/mssip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/mssip.h -------------------------------------------------------------------------------- /include/mstcpip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/mstcpip.h -------------------------------------------------------------------------------- /include/msvcrt/dirent.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/msvcrt/sys/unistd.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /include/mswsock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/mswsock.h -------------------------------------------------------------------------------- /include/msxml.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/msxml.idl -------------------------------------------------------------------------------- /include/mtxdm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/mtxdm.h -------------------------------------------------------------------------------- /include/nb30.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/nb30.h -------------------------------------------------------------------------------- /include/ncrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/ncrypt.h -------------------------------------------------------------------------------- /include/netfw.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/netfw.idl -------------------------------------------------------------------------------- /include/newdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/newdev.h -------------------------------------------------------------------------------- /include/nldef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/nldef.h -------------------------------------------------------------------------------- /include/npapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/npapi.h -------------------------------------------------------------------------------- /include/nserror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/nserror.h -------------------------------------------------------------------------------- /include/nspapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/nspapi.h -------------------------------------------------------------------------------- /include/ntddmou.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/ntddmou.h -------------------------------------------------------------------------------- /include/ntdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/ntdef.h -------------------------------------------------------------------------------- /include/ntdsapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/ntdsapi.h -------------------------------------------------------------------------------- /include/ntifs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/ntifs.h -------------------------------------------------------------------------------- /include/ntlsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/ntlsa.h -------------------------------------------------------------------------------- /include/ntquery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/ntquery.h -------------------------------------------------------------------------------- /include/nvapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/nvapi.h -------------------------------------------------------------------------------- /include/nvcuvid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/nvcuvid.h -------------------------------------------------------------------------------- /include/oaidl.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/oaidl.idl -------------------------------------------------------------------------------- /include/objbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/objbase.h -------------------------------------------------------------------------------- /include/objsel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/objsel.h -------------------------------------------------------------------------------- /include/ocidl.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/ocidl.idl -------------------------------------------------------------------------------- /include/ocmm.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/ocmm.idl -------------------------------------------------------------------------------- /include/ole2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/ole2.h -------------------------------------------------------------------------------- /include/ole2ver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/ole2ver.h -------------------------------------------------------------------------------- /include/oleauto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/oleauto.h -------------------------------------------------------------------------------- /include/olectl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/olectl.h -------------------------------------------------------------------------------- /include/oledb.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/oledb.idl -------------------------------------------------------------------------------- /include/oledlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/oledlg.h -------------------------------------------------------------------------------- /include/pathcch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/pathcch.h -------------------------------------------------------------------------------- /include/pdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/pdh.h -------------------------------------------------------------------------------- /include/pdhmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/pdhmsg.h -------------------------------------------------------------------------------- /include/perflib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/perflib.h -------------------------------------------------------------------------------- /include/pktdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/pktdef.h -------------------------------------------------------------------------------- /include/poppack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/poppack.h -------------------------------------------------------------------------------- /include/prntvpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/prntvpt.h -------------------------------------------------------------------------------- /include/propkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/propkey.h -------------------------------------------------------------------------------- /include/prsht.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/prsht.h -------------------------------------------------------------------------------- /include/psapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/psapi.h -------------------------------------------------------------------------------- /include/qedit.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/qedit.idl -------------------------------------------------------------------------------- /include/qos2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/qos2.h -------------------------------------------------------------------------------- /include/ras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/ras.h -------------------------------------------------------------------------------- /include/rasdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/rasdlg.h -------------------------------------------------------------------------------- /include/reason.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/reason.h -------------------------------------------------------------------------------- /include/regstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/regstr.h -------------------------------------------------------------------------------- /include/roapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/roapi.h -------------------------------------------------------------------------------- /include/row.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/row.idl -------------------------------------------------------------------------------- /include/rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/rpc.h -------------------------------------------------------------------------------- /include/rpcdce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/rpcdce.h -------------------------------------------------------------------------------- /include/rpcdcep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/rpcdcep.h -------------------------------------------------------------------------------- /include/rpcndr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/rpcndr.h -------------------------------------------------------------------------------- /include/rpcsal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/rpcsal.h -------------------------------------------------------------------------------- /include/rtutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/rtutils.h -------------------------------------------------------------------------------- /include/sal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/sal.h -------------------------------------------------------------------------------- /include/sapi.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/sapi.idl -------------------------------------------------------------------------------- /include/schnlsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/schnlsp.h -------------------------------------------------------------------------------- /include/sddl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/sddl.h -------------------------------------------------------------------------------- /include/secext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/secext.h -------------------------------------------------------------------------------- /include/sensapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/sensapi.h -------------------------------------------------------------------------------- /include/sfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/sfc.h -------------------------------------------------------------------------------- /include/shlguid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/shlguid.h -------------------------------------------------------------------------------- /include/shlobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/shlobj.h -------------------------------------------------------------------------------- /include/shlwapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/shlwapi.h -------------------------------------------------------------------------------- /include/sipbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/sipbase.h -------------------------------------------------------------------------------- /include/slerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/slerror.h -------------------------------------------------------------------------------- /include/snmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/snmp.h -------------------------------------------------------------------------------- /include/softpub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/softpub.h -------------------------------------------------------------------------------- /include/sperror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/sperror.h -------------------------------------------------------------------------------- /include/sql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/sql.h -------------------------------------------------------------------------------- /include/sqlext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/sqlext.h -------------------------------------------------------------------------------- /include/sspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/sspi.h -------------------------------------------------------------------------------- /include/stamp-h.in: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /include/stgprop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/stgprop.h -------------------------------------------------------------------------------- /include/sti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/sti.h -------------------------------------------------------------------------------- /include/storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/storage.h -------------------------------------------------------------------------------- /include/strsafe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/strsafe.h -------------------------------------------------------------------------------- /include/svrapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/svrapi.h -------------------------------------------------------------------------------- /include/tapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/tapi.h -------------------------------------------------------------------------------- /include/tchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/tchar.h -------------------------------------------------------------------------------- /include/tcpmib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/tcpmib.h -------------------------------------------------------------------------------- /include/tom.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/tom.idl -------------------------------------------------------------------------------- /include/tpcshrd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/tpcshrd.h -------------------------------------------------------------------------------- /include/traffic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/traffic.h -------------------------------------------------------------------------------- /include/twain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/twain.h -------------------------------------------------------------------------------- /include/txdtc.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/txdtc.idl -------------------------------------------------------------------------------- /include/udpmib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/udpmib.h -------------------------------------------------------------------------------- /include/userenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/userenv.h -------------------------------------------------------------------------------- /include/usp10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/usp10.h -------------------------------------------------------------------------------- /include/uuids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/uuids.h -------------------------------------------------------------------------------- /include/uxtheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/uxtheme.h -------------------------------------------------------------------------------- /include/vdmdbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/vdmdbg.h -------------------------------------------------------------------------------- /include/ver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/ver.h -------------------------------------------------------------------------------- /include/verrsrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/verrsrc.h -------------------------------------------------------------------------------- /include/vfw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/vfw.h -------------------------------------------------------------------------------- /include/vfwmsgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/vfwmsgs.h -------------------------------------------------------------------------------- /include/vmr9.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/vmr9.idl -------------------------------------------------------------------------------- /include/vss.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/vss.idl -------------------------------------------------------------------------------- /include/vsstyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/vsstyle.h -------------------------------------------------------------------------------- /include/vssym32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/vssym32.h -------------------------------------------------------------------------------- /include/wct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/wct.h -------------------------------------------------------------------------------- /include/werapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/werapi.h -------------------------------------------------------------------------------- /include/wfext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/wfext.h -------------------------------------------------------------------------------- /include/wia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/wia.h -------------------------------------------------------------------------------- /include/wiadef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/wiadef.h -------------------------------------------------------------------------------- /include/wimgapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/wimgapi.h -------------------------------------------------------------------------------- /include/winbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/winbase.h -------------------------------------------------------------------------------- /include/wincon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/wincon.h -------------------------------------------------------------------------------- /include/wincred.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/wincred.h -------------------------------------------------------------------------------- /include/windef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/windef.h -------------------------------------------------------------------------------- /include/windns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/windns.h -------------------------------------------------------------------------------- /include/windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/windows.h -------------------------------------------------------------------------------- /include/winevt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/winevt.h -------------------------------------------------------------------------------- /include/wingdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/wingdi.h -------------------------------------------------------------------------------- /include/winhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/winhttp.h -------------------------------------------------------------------------------- /include/wininet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/wininet.h -------------------------------------------------------------------------------- /include/winldap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/winldap.h -------------------------------------------------------------------------------- /include/winnls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/winnls.h -------------------------------------------------------------------------------- /include/winnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/winnt.h -------------------------------------------------------------------------------- /include/winnt.rh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/winnt.rh -------------------------------------------------------------------------------- /include/winperf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/winperf.h -------------------------------------------------------------------------------- /include/winreg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/winreg.h -------------------------------------------------------------------------------- /include/winsnmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/winsnmp.h -------------------------------------------------------------------------------- /include/winsock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/winsock.h -------------------------------------------------------------------------------- /include/winsvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/winsvc.h -------------------------------------------------------------------------------- /include/wintab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/wintab.h -------------------------------------------------------------------------------- /include/wintabx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/wintabx.h -------------------------------------------------------------------------------- /include/winuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/winuser.h -------------------------------------------------------------------------------- /include/winver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/winver.h -------------------------------------------------------------------------------- /include/wlanapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/wlanapi.h -------------------------------------------------------------------------------- /include/wmistr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/wmistr.h -------------------------------------------------------------------------------- /include/wmium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/wmium.h -------------------------------------------------------------------------------- /include/wmp.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/wmp.idl -------------------------------------------------------------------------------- /include/wmpids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/wmpids.h -------------------------------------------------------------------------------- /include/wmsdk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/wmsdk.h -------------------------------------------------------------------------------- /include/wownt32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/wownt32.h -------------------------------------------------------------------------------- /include/ws2def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/ws2def.h -------------------------------------------------------------------------------- /include/ws2spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/ws2spi.h -------------------------------------------------------------------------------- /include/wsdapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/wsdapi.h -------------------------------------------------------------------------------- /include/wsdutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/wsdutil.h -------------------------------------------------------------------------------- /include/wsipx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/wsipx.h -------------------------------------------------------------------------------- /include/wuapi.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/wuapi.idl -------------------------------------------------------------------------------- /include/xact3.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/xact3.idl -------------------------------------------------------------------------------- /include/xact3wb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/xact3wb.h -------------------------------------------------------------------------------- /include/xapo.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/xapo.idl -------------------------------------------------------------------------------- /include/xapofx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/xapofx.h -------------------------------------------------------------------------------- /include/xcmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/xcmc.h -------------------------------------------------------------------------------- /include/xinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/xinput.h -------------------------------------------------------------------------------- /include/xmldom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/xmldom.h -------------------------------------------------------------------------------- /include/zmouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/include/zmouse.h -------------------------------------------------------------------------------- /libs/port/ffs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/libs/port/ffs.c -------------------------------------------------------------------------------- /libs/port/isinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/libs/port/isinf.c -------------------------------------------------------------------------------- /libs/port/isnan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/libs/port/isnan.c -------------------------------------------------------------------------------- /libs/port/lstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/libs/port/lstat.c -------------------------------------------------------------------------------- /libs/port/poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/libs/port/poll.c -------------------------------------------------------------------------------- /libs/port/pread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/libs/port/pread.c -------------------------------------------------------------------------------- /libs/port/rint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/libs/port/rint.c -------------------------------------------------------------------------------- /libs/port/spawn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/libs/port/spawn.c -------------------------------------------------------------------------------- /libs/port/stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/libs/port/stubs.c -------------------------------------------------------------------------------- /libs/port/xattr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/libs/port/xattr.c -------------------------------------------------------------------------------- /libs/wine/c_037.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/libs/wine/c_037.c -------------------------------------------------------------------------------- /libs/wine/c_437.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/libs/wine/c_437.c -------------------------------------------------------------------------------- /libs/wine/c_500.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/libs/wine/c_500.c -------------------------------------------------------------------------------- /libs/wine/c_737.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/libs/wine/c_737.c -------------------------------------------------------------------------------- /libs/wine/c_775.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/libs/wine/c_775.c -------------------------------------------------------------------------------- /libs/wine/c_850.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/libs/wine/c_850.c -------------------------------------------------------------------------------- /libs/wine/c_852.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/libs/wine/c_852.c -------------------------------------------------------------------------------- /libs/wine/c_855.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/libs/wine/c_855.c -------------------------------------------------------------------------------- /libs/wine/c_857.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/libs/wine/c_857.c -------------------------------------------------------------------------------- /libs/wine/c_860.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/libs/wine/c_860.c -------------------------------------------------------------------------------- /libs/wine/c_861.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/libs/wine/c_861.c -------------------------------------------------------------------------------- /libs/wine/c_862.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/libs/wine/c_862.c -------------------------------------------------------------------------------- /libs/wine/c_863.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/libs/wine/c_863.c -------------------------------------------------------------------------------- /libs/wine/c_864.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/libs/wine/c_864.c -------------------------------------------------------------------------------- /libs/wine/c_865.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/libs/wine/c_865.c -------------------------------------------------------------------------------- /libs/wine/c_866.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/libs/wine/c_866.c -------------------------------------------------------------------------------- /libs/wine/c_869.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/libs/wine/c_869.c -------------------------------------------------------------------------------- /libs/wine/c_874.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/libs/wine/c_874.c -------------------------------------------------------------------------------- /libs/wine/c_875.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/libs/wine/c_875.c -------------------------------------------------------------------------------- /libs/wine/c_932.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/libs/wine/c_932.c -------------------------------------------------------------------------------- /libs/wine/c_936.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/libs/wine/c_936.c -------------------------------------------------------------------------------- /libs/wine/c_949.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/libs/wine/c_949.c -------------------------------------------------------------------------------- /libs/wine/c_950.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/libs/wine/c_950.c -------------------------------------------------------------------------------- /libs/wine/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/libs/wine/debug.c -------------------------------------------------------------------------------- /libs/wine/fold.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/libs/wine/fold.c -------------------------------------------------------------------------------- /libs/wine/ldt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/libs/wine/ldt.c -------------------------------------------------------------------------------- /libs/wine/mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/libs/wine/mmap.c -------------------------------------------------------------------------------- /libs/wine/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/libs/wine/port.c -------------------------------------------------------------------------------- /libs/wine/utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/libs/wine/utf8.c -------------------------------------------------------------------------------- /libs/wpp/ppl.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/libs/wpp/ppl.l -------------------------------------------------------------------------------- /libs/wpp/ppy.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/libs/wpp/ppy.y -------------------------------------------------------------------------------- /libs/wpp/wpp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/libs/wpp/wpp.c -------------------------------------------------------------------------------- /loader/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/loader/main.c -------------------------------------------------------------------------------- /loader/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/loader/main.h -------------------------------------------------------------------------------- /nls/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/Makefile.in -------------------------------------------------------------------------------- /nls/c_037.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_037.nls -------------------------------------------------------------------------------- /nls/c_10000.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_10000.nls -------------------------------------------------------------------------------- /nls/c_10001.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_10001.nls -------------------------------------------------------------------------------- /nls/c_10002.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_10002.nls -------------------------------------------------------------------------------- /nls/c_10003.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_10003.nls -------------------------------------------------------------------------------- /nls/c_10004.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_10004.nls -------------------------------------------------------------------------------- /nls/c_10005.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_10005.nls -------------------------------------------------------------------------------- /nls/c_10006.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_10006.nls -------------------------------------------------------------------------------- /nls/c_10007.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_10007.nls -------------------------------------------------------------------------------- /nls/c_10008.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_10008.nls -------------------------------------------------------------------------------- /nls/c_10010.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_10010.nls -------------------------------------------------------------------------------- /nls/c_10017.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_10017.nls -------------------------------------------------------------------------------- /nls/c_10021.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_10021.nls -------------------------------------------------------------------------------- /nls/c_10029.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_10029.nls -------------------------------------------------------------------------------- /nls/c_10079.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_10079.nls -------------------------------------------------------------------------------- /nls/c_10081.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_10081.nls -------------------------------------------------------------------------------- /nls/c_10082.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_10082.nls -------------------------------------------------------------------------------- /nls/c_1026.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_1026.nls -------------------------------------------------------------------------------- /nls/c_1250.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_1250.nls -------------------------------------------------------------------------------- /nls/c_1251.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_1251.nls -------------------------------------------------------------------------------- /nls/c_1252.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_1252.nls -------------------------------------------------------------------------------- /nls/c_1253.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_1253.nls -------------------------------------------------------------------------------- /nls/c_1254.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_1254.nls -------------------------------------------------------------------------------- /nls/c_1255.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_1255.nls -------------------------------------------------------------------------------- /nls/c_1256.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_1256.nls -------------------------------------------------------------------------------- /nls/c_1257.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_1257.nls -------------------------------------------------------------------------------- /nls/c_1258.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_1258.nls -------------------------------------------------------------------------------- /nls/c_1361.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_1361.nls -------------------------------------------------------------------------------- /nls/c_20127.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_20127.nls -------------------------------------------------------------------------------- /nls/c_20866.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_20866.nls -------------------------------------------------------------------------------- /nls/c_20932.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_20932.nls -------------------------------------------------------------------------------- /nls/c_21866.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_21866.nls -------------------------------------------------------------------------------- /nls/c_28591.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_28591.nls -------------------------------------------------------------------------------- /nls/c_28592.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_28592.nls -------------------------------------------------------------------------------- /nls/c_28593.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_28593.nls -------------------------------------------------------------------------------- /nls/c_28594.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_28594.nls -------------------------------------------------------------------------------- /nls/c_28595.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_28595.nls -------------------------------------------------------------------------------- /nls/c_28596.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_28596.nls -------------------------------------------------------------------------------- /nls/c_28597.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_28597.nls -------------------------------------------------------------------------------- /nls/c_28598.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_28598.nls -------------------------------------------------------------------------------- /nls/c_28599.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_28599.nls -------------------------------------------------------------------------------- /nls/c_28603.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_28603.nls -------------------------------------------------------------------------------- /nls/c_28605.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_28605.nls -------------------------------------------------------------------------------- /nls/c_437.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_437.nls -------------------------------------------------------------------------------- /nls/c_500.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_500.nls -------------------------------------------------------------------------------- /nls/c_737.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_737.nls -------------------------------------------------------------------------------- /nls/c_775.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_775.nls -------------------------------------------------------------------------------- /nls/c_850.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_850.nls -------------------------------------------------------------------------------- /nls/c_852.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_852.nls -------------------------------------------------------------------------------- /nls/c_855.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_855.nls -------------------------------------------------------------------------------- /nls/c_857.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_857.nls -------------------------------------------------------------------------------- /nls/c_860.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_860.nls -------------------------------------------------------------------------------- /nls/c_861.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_861.nls -------------------------------------------------------------------------------- /nls/c_862.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_862.nls -------------------------------------------------------------------------------- /nls/c_863.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_863.nls -------------------------------------------------------------------------------- /nls/c_864.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_864.nls -------------------------------------------------------------------------------- /nls/c_865.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_865.nls -------------------------------------------------------------------------------- /nls/c_866.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_866.nls -------------------------------------------------------------------------------- /nls/c_869.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_869.nls -------------------------------------------------------------------------------- /nls/c_874.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_874.nls -------------------------------------------------------------------------------- /nls/c_875.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_875.nls -------------------------------------------------------------------------------- /nls/c_932.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_932.nls -------------------------------------------------------------------------------- /nls/c_936.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_936.nls -------------------------------------------------------------------------------- /nls/c_949.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_949.nls -------------------------------------------------------------------------------- /nls/c_950.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/c_950.nls -------------------------------------------------------------------------------- /nls/l_intl.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/l_intl.nls -------------------------------------------------------------------------------- /nls/normidna.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/normidna.nls -------------------------------------------------------------------------------- /nls/normnfc.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/normnfc.nls -------------------------------------------------------------------------------- /nls/normnfd.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/normnfd.nls -------------------------------------------------------------------------------- /nls/normnfkc.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/normnfkc.nls -------------------------------------------------------------------------------- /nls/normnfkd.nls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/nls/normnfkd.nls -------------------------------------------------------------------------------- /po/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/po/Makefile.in -------------------------------------------------------------------------------- /po/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/po/ar.po -------------------------------------------------------------------------------- /po/ast.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/po/ast.po -------------------------------------------------------------------------------- /po/bg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/po/bg.po -------------------------------------------------------------------------------- /po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/po/ca.po -------------------------------------------------------------------------------- /po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/po/cs.po -------------------------------------------------------------------------------- /po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/po/da.po -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/po/de.po -------------------------------------------------------------------------------- /po/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/po/el.po -------------------------------------------------------------------------------- /po/en.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/po/en.po -------------------------------------------------------------------------------- /po/en_US.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/po/en_US.po -------------------------------------------------------------------------------- /po/eo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/po/eo.po -------------------------------------------------------------------------------- /po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/po/es.po -------------------------------------------------------------------------------- /po/fa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/po/fa.po -------------------------------------------------------------------------------- /po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/po/fi.po -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/po/fr.po -------------------------------------------------------------------------------- /po/he.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/po/he.po -------------------------------------------------------------------------------- /po/hi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/po/hi.po -------------------------------------------------------------------------------- /po/hr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/po/hr.po -------------------------------------------------------------------------------- /po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/po/hu.po -------------------------------------------------------------------------------- /po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/po/it.po -------------------------------------------------------------------------------- /po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/po/ja.po -------------------------------------------------------------------------------- /po/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/po/ko.po -------------------------------------------------------------------------------- /po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/po/lt.po -------------------------------------------------------------------------------- /po/ml.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/po/ml.po -------------------------------------------------------------------------------- /po/nb_NO.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/po/nb_NO.po -------------------------------------------------------------------------------- /po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/po/nl.po -------------------------------------------------------------------------------- /po/or.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/po/or.po -------------------------------------------------------------------------------- /po/pa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/po/pa.po -------------------------------------------------------------------------------- /po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/po/pl.po -------------------------------------------------------------------------------- /po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/po/pt_BR.po -------------------------------------------------------------------------------- /po/pt_PT.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/po/pt_PT.po -------------------------------------------------------------------------------- /po/rm.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/po/rm.po -------------------------------------------------------------------------------- /po/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/po/ro.po -------------------------------------------------------------------------------- /po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/po/ru.po -------------------------------------------------------------------------------- /po/si.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/po/si.po -------------------------------------------------------------------------------- /po/sk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/po/sk.po -------------------------------------------------------------------------------- /po/sl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/po/sl.po -------------------------------------------------------------------------------- /po/sr_RS@latin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/po/sr_RS@latin.po -------------------------------------------------------------------------------- /po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/po/sv.po -------------------------------------------------------------------------------- /po/ta.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/po/ta.po -------------------------------------------------------------------------------- /po/te.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/po/te.po -------------------------------------------------------------------------------- /po/th.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/po/th.po -------------------------------------------------------------------------------- /po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/po/tr.po -------------------------------------------------------------------------------- /po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/po/uk.po -------------------------------------------------------------------------------- /po/wa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/po/wa.po -------------------------------------------------------------------------------- /po/wine.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/po/wine.pot -------------------------------------------------------------------------------- /po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/po/zh_CN.po -------------------------------------------------------------------------------- /po/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/po/zh_TW.po -------------------------------------------------------------------------------- /programs/fc/fc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/programs/fc/fc.c -------------------------------------------------------------------------------- /programs/hh/hh.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/programs/hh/hh.rc -------------------------------------------------------------------------------- /programs/sc/sc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/programs/sc/sc.c -------------------------------------------------------------------------------- /server/async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/server/async.c -------------------------------------------------------------------------------- /server/atom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/server/atom.c -------------------------------------------------------------------------------- /server/change.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/server/change.c -------------------------------------------------------------------------------- /server/class.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/server/class.c -------------------------------------------------------------------------------- /server/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/server/console.c -------------------------------------------------------------------------------- /server/debugger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/server/debugger.c -------------------------------------------------------------------------------- /server/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/server/device.c -------------------------------------------------------------------------------- /server/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/server/device.h -------------------------------------------------------------------------------- /server/esync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/server/esync.c -------------------------------------------------------------------------------- /server/esync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/server/esync.h -------------------------------------------------------------------------------- /server/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/server/event.c -------------------------------------------------------------------------------- /server/fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/server/fd.c -------------------------------------------------------------------------------- /server/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/server/file.c -------------------------------------------------------------------------------- /server/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/server/file.h -------------------------------------------------------------------------------- /server/handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/server/handle.c -------------------------------------------------------------------------------- /server/handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/server/handle.h -------------------------------------------------------------------------------- /server/hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/server/hook.c -------------------------------------------------------------------------------- /server/mach.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/server/mach.c -------------------------------------------------------------------------------- /server/mailslot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/server/mailslot.c -------------------------------------------------------------------------------- /server/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/server/main.c -------------------------------------------------------------------------------- /server/mapping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/server/mapping.c -------------------------------------------------------------------------------- /server/mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/server/mutex.c -------------------------------------------------------------------------------- /server/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/server/object.c -------------------------------------------------------------------------------- /server/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/server/object.h -------------------------------------------------------------------------------- /server/process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/server/process.c -------------------------------------------------------------------------------- /server/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/server/process.h -------------------------------------------------------------------------------- /server/procfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/server/procfs.c -------------------------------------------------------------------------------- /server/ptrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/server/ptrace.c -------------------------------------------------------------------------------- /server/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/server/queue.c -------------------------------------------------------------------------------- /server/region.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/server/region.c -------------------------------------------------------------------------------- /server/registry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/server/registry.c -------------------------------------------------------------------------------- /server/request.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/server/request.c -------------------------------------------------------------------------------- /server/request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/server/request.h -------------------------------------------------------------------------------- /server/security.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/server/security.h -------------------------------------------------------------------------------- /server/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/server/serial.c -------------------------------------------------------------------------------- /server/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/server/signal.c -------------------------------------------------------------------------------- /server/snapshot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/server/snapshot.c -------------------------------------------------------------------------------- /server/sock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/server/sock.c -------------------------------------------------------------------------------- /server/symlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/server/symlink.c -------------------------------------------------------------------------------- /server/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/server/thread.c -------------------------------------------------------------------------------- /server/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/server/thread.h -------------------------------------------------------------------------------- /server/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/server/timer.c -------------------------------------------------------------------------------- /server/token.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/server/token.c -------------------------------------------------------------------------------- /server/trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/server/trace.c -------------------------------------------------------------------------------- /server/unicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/server/unicode.c -------------------------------------------------------------------------------- /server/unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/server/unicode.h -------------------------------------------------------------------------------- /server/user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/server/user.c -------------------------------------------------------------------------------- /server/user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/server/user.h -------------------------------------------------------------------------------- /server/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/server/window.c -------------------------------------------------------------------------------- /tools/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/tools/Makefile.in -------------------------------------------------------------------------------- /tools/buildimage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/tools/buildimage -------------------------------------------------------------------------------- /tools/c2man.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/tools/c2man.pl -------------------------------------------------------------------------------- /tools/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/tools/config.sub -------------------------------------------------------------------------------- /tools/findfunc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/tools/findfunc -------------------------------------------------------------------------------- /tools/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/tools/install-sh -------------------------------------------------------------------------------- /tools/makedep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/tools/makedep.c -------------------------------------------------------------------------------- /tools/runtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/tools/runtest -------------------------------------------------------------------------------- /tools/widl/expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/tools/widl/expr.c -------------------------------------------------------------------------------- /tools/widl/expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/tools/widl/expr.h -------------------------------------------------------------------------------- /tools/widl/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/tools/widl/hash.c -------------------------------------------------------------------------------- /tools/widl/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/tools/widl/hash.h -------------------------------------------------------------------------------- /tools/widl/widl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/tools/widl/widl.c -------------------------------------------------------------------------------- /tools/widl/widl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/tools/widl/widl.h -------------------------------------------------------------------------------- /tools/winewrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/tools/winewrapper -------------------------------------------------------------------------------- /tools/wmc/lang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/tools/wmc/lang.c -------------------------------------------------------------------------------- /tools/wmc/lang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/tools/wmc/lang.h -------------------------------------------------------------------------------- /tools/wmc/mcl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/tools/wmc/mcl.c -------------------------------------------------------------------------------- /tools/wmc/mcy.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/tools/wmc/mcy.y -------------------------------------------------------------------------------- /tools/wmc/po.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/tools/wmc/po.c -------------------------------------------------------------------------------- /tools/wmc/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/tools/wmc/utils.c -------------------------------------------------------------------------------- /tools/wmc/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/tools/wmc/utils.h -------------------------------------------------------------------------------- /tools/wmc/wmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/tools/wmc/wmc.c -------------------------------------------------------------------------------- /tools/wmc/wmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/tools/wmc/wmc.h -------------------------------------------------------------------------------- /tools/wmc/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/tools/wmc/write.c -------------------------------------------------------------------------------- /tools/wmc/write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/tools/wmc/write.h -------------------------------------------------------------------------------- /tools/wrc/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/tools/wrc/CHANGES -------------------------------------------------------------------------------- /tools/wrc/po.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/tools/wrc/po.c -------------------------------------------------------------------------------- /tools/wrc/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/tools/wrc/utils.c -------------------------------------------------------------------------------- /tools/wrc/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/tools/wrc/utils.h -------------------------------------------------------------------------------- /tools/wrc/wrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/tools/wrc/wrc.c -------------------------------------------------------------------------------- /tools/wrc/wrc.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/tools/wrc/wrc.doc -------------------------------------------------------------------------------- /tools/wrc/wrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Guy1524/wine/HEAD/tools/wrc/wrc.h --------------------------------------------------------------------------------