├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature-request.md └── workflows │ └── build.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── COREDLL ├── COREDLL.vcxproj ├── COREDLL.vcxproj.filters ├── Exports.def ├── commctrl_wcecl.cpp ├── dbgapi_wcecl.cpp ├── dllmain.cpp ├── excpt_wcecl.cpp ├── imm_wcecl.cpp ├── mmsystem_wcecl.cpp ├── other.cpp ├── shellapi_wcecl.cpp ├── stdafx.cpp ├── stdafx.h ├── stdio_wcecl.cpp ├── stdio_wcecl.h ├── stringapiset_wcecl.cpp ├── strsafe_wcecl.cpp ├── targetver.h ├── wcecl_dialogs.cpp ├── wcecl_memtools.cpp ├── winbase_wcecl.cpp ├── windows_wcecl.cpp ├── wingdi_wcecl.cpp ├── winnls_wcecl.cpp ├── winreg_wcecl.cpp ├── winuser_wcecl.cpp └── winuser_wcecl.h ├── CoredllTest ├── CoredllTest.cpp ├── CoredllTest.vcxproj ├── CoredllTest.vcxproj.filters ├── pch.cpp └── pch.h ├── HeaderToFunction ├── HeaderSearch.cs ├── HeaderToFunction.csproj ├── MainWindow.Designer.cs ├── MainWindow.cs ├── MainWindow.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── SearchCfgDlg.Designer.cs ├── SearchCfgDlg.cs ├── SearchCfgDlg.resx ├── SearchDlg.Designer.cs ├── SearchDlg.cs ├── SearchDlg.resx ├── SearchProcessDlg.Designer.cs ├── SearchProcessDlg.cs └── SearchProcessDlg.resx ├── LICENSE ├── README.md ├── SubsystemTool ├── SubsystemTool.cpp ├── SubsystemTool.vcxproj ├── SubsystemTool.vcxproj.filters ├── pch.cpp └── pch.h ├── WinCeCompatLayer.sln └── logo.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COREDLL/COREDLL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/COREDLL/COREDLL.vcxproj -------------------------------------------------------------------------------- /COREDLL/COREDLL.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/COREDLL/COREDLL.vcxproj.filters -------------------------------------------------------------------------------- /COREDLL/Exports.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/COREDLL/Exports.def -------------------------------------------------------------------------------- /COREDLL/commctrl_wcecl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/COREDLL/commctrl_wcecl.cpp -------------------------------------------------------------------------------- /COREDLL/dbgapi_wcecl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/COREDLL/dbgapi_wcecl.cpp -------------------------------------------------------------------------------- /COREDLL/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/COREDLL/dllmain.cpp -------------------------------------------------------------------------------- /COREDLL/excpt_wcecl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/COREDLL/excpt_wcecl.cpp -------------------------------------------------------------------------------- /COREDLL/imm_wcecl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/COREDLL/imm_wcecl.cpp -------------------------------------------------------------------------------- /COREDLL/mmsystem_wcecl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/COREDLL/mmsystem_wcecl.cpp -------------------------------------------------------------------------------- /COREDLL/other.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/COREDLL/other.cpp -------------------------------------------------------------------------------- /COREDLL/shellapi_wcecl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/COREDLL/shellapi_wcecl.cpp -------------------------------------------------------------------------------- /COREDLL/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /COREDLL/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/COREDLL/stdafx.h -------------------------------------------------------------------------------- /COREDLL/stdio_wcecl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/COREDLL/stdio_wcecl.cpp -------------------------------------------------------------------------------- /COREDLL/stdio_wcecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/COREDLL/stdio_wcecl.h -------------------------------------------------------------------------------- /COREDLL/stringapiset_wcecl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/COREDLL/stringapiset_wcecl.cpp -------------------------------------------------------------------------------- /COREDLL/strsafe_wcecl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/COREDLL/strsafe_wcecl.cpp -------------------------------------------------------------------------------- /COREDLL/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/COREDLL/targetver.h -------------------------------------------------------------------------------- /COREDLL/wcecl_dialogs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/COREDLL/wcecl_dialogs.cpp -------------------------------------------------------------------------------- /COREDLL/wcecl_memtools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/COREDLL/wcecl_memtools.cpp -------------------------------------------------------------------------------- /COREDLL/winbase_wcecl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/COREDLL/winbase_wcecl.cpp -------------------------------------------------------------------------------- /COREDLL/windows_wcecl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/COREDLL/windows_wcecl.cpp -------------------------------------------------------------------------------- /COREDLL/wingdi_wcecl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/COREDLL/wingdi_wcecl.cpp -------------------------------------------------------------------------------- /COREDLL/winnls_wcecl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/COREDLL/winnls_wcecl.cpp -------------------------------------------------------------------------------- /COREDLL/winreg_wcecl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/COREDLL/winreg_wcecl.cpp -------------------------------------------------------------------------------- /COREDLL/winuser_wcecl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/COREDLL/winuser_wcecl.cpp -------------------------------------------------------------------------------- /COREDLL/winuser_wcecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/COREDLL/winuser_wcecl.h -------------------------------------------------------------------------------- /CoredllTest/CoredllTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/CoredllTest/CoredllTest.cpp -------------------------------------------------------------------------------- /CoredllTest/CoredllTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/CoredllTest/CoredllTest.vcxproj -------------------------------------------------------------------------------- /CoredllTest/CoredllTest.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/CoredllTest/CoredllTest.vcxproj.filters -------------------------------------------------------------------------------- /CoredllTest/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/CoredllTest/pch.cpp -------------------------------------------------------------------------------- /CoredllTest/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/CoredllTest/pch.h -------------------------------------------------------------------------------- /HeaderToFunction/HeaderSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/HeaderToFunction/HeaderSearch.cs -------------------------------------------------------------------------------- /HeaderToFunction/HeaderToFunction.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/HeaderToFunction/HeaderToFunction.csproj -------------------------------------------------------------------------------- /HeaderToFunction/MainWindow.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/HeaderToFunction/MainWindow.Designer.cs -------------------------------------------------------------------------------- /HeaderToFunction/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/HeaderToFunction/MainWindow.cs -------------------------------------------------------------------------------- /HeaderToFunction/MainWindow.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/HeaderToFunction/MainWindow.resx -------------------------------------------------------------------------------- /HeaderToFunction/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/HeaderToFunction/Program.cs -------------------------------------------------------------------------------- /HeaderToFunction/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/HeaderToFunction/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /HeaderToFunction/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/HeaderToFunction/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /HeaderToFunction/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/HeaderToFunction/Properties/Resources.resx -------------------------------------------------------------------------------- /HeaderToFunction/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/HeaderToFunction/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /HeaderToFunction/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/HeaderToFunction/Properties/Settings.settings -------------------------------------------------------------------------------- /HeaderToFunction/SearchCfgDlg.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/HeaderToFunction/SearchCfgDlg.Designer.cs -------------------------------------------------------------------------------- /HeaderToFunction/SearchCfgDlg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/HeaderToFunction/SearchCfgDlg.cs -------------------------------------------------------------------------------- /HeaderToFunction/SearchCfgDlg.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/HeaderToFunction/SearchCfgDlg.resx -------------------------------------------------------------------------------- /HeaderToFunction/SearchDlg.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/HeaderToFunction/SearchDlg.Designer.cs -------------------------------------------------------------------------------- /HeaderToFunction/SearchDlg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/HeaderToFunction/SearchDlg.cs -------------------------------------------------------------------------------- /HeaderToFunction/SearchDlg.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/HeaderToFunction/SearchDlg.resx -------------------------------------------------------------------------------- /HeaderToFunction/SearchProcessDlg.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/HeaderToFunction/SearchProcessDlg.Designer.cs -------------------------------------------------------------------------------- /HeaderToFunction/SearchProcessDlg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/HeaderToFunction/SearchProcessDlg.cs -------------------------------------------------------------------------------- /HeaderToFunction/SearchProcessDlg.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/HeaderToFunction/SearchProcessDlg.resx -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/README.md -------------------------------------------------------------------------------- /SubsystemTool/SubsystemTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/SubsystemTool/SubsystemTool.cpp -------------------------------------------------------------------------------- /SubsystemTool/SubsystemTool.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/SubsystemTool/SubsystemTool.vcxproj -------------------------------------------------------------------------------- /SubsystemTool/SubsystemTool.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/SubsystemTool/SubsystemTool.vcxproj.filters -------------------------------------------------------------------------------- /SubsystemTool/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/SubsystemTool/pch.cpp -------------------------------------------------------------------------------- /SubsystemTool/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/SubsystemTool/pch.h -------------------------------------------------------------------------------- /WinCeCompatLayer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/WinCeCompatLayer.sln -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dz333n/wcecl/HEAD/logo.png --------------------------------------------------------------------------------