├── .clang-format ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── clang.yml │ ├── codeql.yml │ ├── dependency-review.yml │ ├── devskim.yml │ ├── github-ci.yml │ └── scorecards.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .vsconfig ├── LICENSE ├── README.md ├── binding.gyp ├── docs ├── Building.md ├── DirectlyIncluding.md ├── FAQ.md └── Linking.md ├── include ├── EMSABTAG.H ├── EdkGuid.h ├── EdkMdb.h ├── ExchForm.h ├── IMSCapabilities.h ├── IMessage.h ├── MAPI.h ├── MAPIAux.h ├── MAPICode.h ├── MAPIDbg.h ├── MAPIDefS.h ├── MAPIForm.h ├── MAPIGuid.h ├── MAPIHook.h ├── MAPINls.h ├── MAPIOID.h ├── MAPISPI.h ├── MAPITags.h ├── MAPIUtil.h ├── MAPIVal.h ├── MAPIWin.h ├── MAPIWz.h ├── MAPIX.h ├── MSPST.h ├── abhelp.h ├── actMgmt.h └── mimeole.h ├── library ├── mapiStubLibrary.cpp ├── stubutils.cpp └── stubutils.h ├── mapistub.sln ├── mapistub.sln.DotSettings.user ├── mapistub.vcxproj ├── mapistub.vcxproj.filters ├── mapistub.vcxproj.user ├── package.json ├── packages.config └── scripts └── clang.ps1 /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MAPIStubLibrary/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MAPIStubLibrary/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MAPIStubLibrary/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/clang.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MAPIStubLibrary/HEAD/.github/workflows/clang.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MAPIStubLibrary/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/dependency-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MAPIStubLibrary/HEAD/.github/workflows/dependency-review.yml -------------------------------------------------------------------------------- /.github/workflows/devskim.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MAPIStubLibrary/HEAD/.github/workflows/devskim.yml -------------------------------------------------------------------------------- /.github/workflows/github-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MAPIStubLibrary/HEAD/.github/workflows/github-ci.yml -------------------------------------------------------------------------------- /.github/workflows/scorecards.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MAPIStubLibrary/HEAD/.github/workflows/scorecards.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MAPIStubLibrary/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MAPIStubLibrary/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.vsconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MAPIStubLibrary/HEAD/.vsconfig -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MAPIStubLibrary/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MAPIStubLibrary/HEAD/README.md -------------------------------------------------------------------------------- /binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MAPIStubLibrary/HEAD/binding.gyp -------------------------------------------------------------------------------- /docs/Building.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MAPIStubLibrary/HEAD/docs/Building.md -------------------------------------------------------------------------------- /docs/DirectlyIncluding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MAPIStubLibrary/HEAD/docs/DirectlyIncluding.md -------------------------------------------------------------------------------- /docs/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MAPIStubLibrary/HEAD/docs/FAQ.md -------------------------------------------------------------------------------- /docs/Linking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MAPIStubLibrary/HEAD/docs/Linking.md -------------------------------------------------------------------------------- /include/EMSABTAG.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MAPIStubLibrary/HEAD/include/EMSABTAG.H -------------------------------------------------------------------------------- /include/EdkGuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MAPIStubLibrary/HEAD/include/EdkGuid.h -------------------------------------------------------------------------------- /include/EdkMdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MAPIStubLibrary/HEAD/include/EdkMdb.h -------------------------------------------------------------------------------- /include/ExchForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MAPIStubLibrary/HEAD/include/ExchForm.h -------------------------------------------------------------------------------- /include/IMSCapabilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MAPIStubLibrary/HEAD/include/IMSCapabilities.h -------------------------------------------------------------------------------- /include/IMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MAPIStubLibrary/HEAD/include/IMessage.h -------------------------------------------------------------------------------- /include/MAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MAPIStubLibrary/HEAD/include/MAPI.h -------------------------------------------------------------------------------- /include/MAPIAux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MAPIStubLibrary/HEAD/include/MAPIAux.h -------------------------------------------------------------------------------- /include/MAPICode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MAPIStubLibrary/HEAD/include/MAPICode.h -------------------------------------------------------------------------------- /include/MAPIDbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MAPIStubLibrary/HEAD/include/MAPIDbg.h -------------------------------------------------------------------------------- /include/MAPIDefS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MAPIStubLibrary/HEAD/include/MAPIDefS.h -------------------------------------------------------------------------------- /include/MAPIForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MAPIStubLibrary/HEAD/include/MAPIForm.h -------------------------------------------------------------------------------- /include/MAPIGuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MAPIStubLibrary/HEAD/include/MAPIGuid.h -------------------------------------------------------------------------------- /include/MAPIHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MAPIStubLibrary/HEAD/include/MAPIHook.h -------------------------------------------------------------------------------- /include/MAPINls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MAPIStubLibrary/HEAD/include/MAPINls.h -------------------------------------------------------------------------------- /include/MAPIOID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MAPIStubLibrary/HEAD/include/MAPIOID.h -------------------------------------------------------------------------------- /include/MAPISPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MAPIStubLibrary/HEAD/include/MAPISPI.h -------------------------------------------------------------------------------- /include/MAPITags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MAPIStubLibrary/HEAD/include/MAPITags.h -------------------------------------------------------------------------------- /include/MAPIUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MAPIStubLibrary/HEAD/include/MAPIUtil.h -------------------------------------------------------------------------------- /include/MAPIVal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MAPIStubLibrary/HEAD/include/MAPIVal.h -------------------------------------------------------------------------------- /include/MAPIWin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MAPIStubLibrary/HEAD/include/MAPIWin.h -------------------------------------------------------------------------------- /include/MAPIWz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MAPIStubLibrary/HEAD/include/MAPIWz.h -------------------------------------------------------------------------------- /include/MAPIX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MAPIStubLibrary/HEAD/include/MAPIX.h -------------------------------------------------------------------------------- /include/MSPST.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MAPIStubLibrary/HEAD/include/MSPST.h -------------------------------------------------------------------------------- /include/abhelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MAPIStubLibrary/HEAD/include/abhelp.h -------------------------------------------------------------------------------- /include/actMgmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MAPIStubLibrary/HEAD/include/actMgmt.h -------------------------------------------------------------------------------- /include/mimeole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MAPIStubLibrary/HEAD/include/mimeole.h -------------------------------------------------------------------------------- /library/mapiStubLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MAPIStubLibrary/HEAD/library/mapiStubLibrary.cpp -------------------------------------------------------------------------------- /library/stubutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MAPIStubLibrary/HEAD/library/stubutils.cpp -------------------------------------------------------------------------------- /library/stubutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MAPIStubLibrary/HEAD/library/stubutils.h -------------------------------------------------------------------------------- /mapistub.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MAPIStubLibrary/HEAD/mapistub.sln -------------------------------------------------------------------------------- /mapistub.sln.DotSettings.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MAPIStubLibrary/HEAD/mapistub.sln.DotSettings.user -------------------------------------------------------------------------------- /mapistub.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MAPIStubLibrary/HEAD/mapistub.vcxproj -------------------------------------------------------------------------------- /mapistub.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MAPIStubLibrary/HEAD/mapistub.vcxproj.filters -------------------------------------------------------------------------------- /mapistub.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MAPIStubLibrary/HEAD/mapistub.vcxproj.user -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MAPIStubLibrary/HEAD/package.json -------------------------------------------------------------------------------- /packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MAPIStubLibrary/HEAD/packages.config -------------------------------------------------------------------------------- /scripts/clang.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MAPIStubLibrary/HEAD/scripts/clang.ps1 --------------------------------------------------------------------------------