Skip to content

Latest commit

 

History

History
42 lines (32 loc) · 1.59 KB

README.md

File metadata and controls

42 lines (32 loc) · 1.59 KB

api-ms-win-core-path-l1-1-0

A minimal implementation of api-ms-win-core-path-l1-1-0.dll for Windows 7.

The DLL is roughly 4 KiB, no CRT required.

Build Instructions

clang-cl -Brepro -LD -O2 -Zl -fuse-ld=lld api-ms-win-core-path-l1-1-0.c -link -def:api-ms-win-core-path-l1-1-0.def -noimplib shlwapi.lib

Compatibility

Implementation Details

Function Implementation
PathAllocCanonicalize not implemented
PathAllocCombine not implemented
PathCchAddBackslash[Ex] PathAddBackslashW
PathCchAddExtension PathAddExtensionW
PathCchAppend[Ex] PathAppendW
PathCchCanonicalize[Ex] PathCanonicalizeW
PathCchCombine[Ex] PathCombineW
PathCchFindExtension PathFindExtensionW
PathCchIsRoot PathIsRootW
PathCchRemoveBackslash[Ex] PathRemoveBackslashW
PathCchRemoveExtension PathRemoveExtensionW
PathCchRemoveFileSpec PathRemoveFileSpecW
PathCchRenameExtension PathRenameExtensionW
PathCchSkipRoot PathSkipRootW
PathCchStripPrefix not implemented
PathCchStripToRoot PathStripToRootW
PathIsUNCEx PathIsUNCW

Similar projects