Skip to content

Latest commit

 

History

3 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 

Repository files navigation

API Set Resolver

C++ License

A lightweight C++ library to resolve Windows API Set mappings to their actual DLL names.

Usage

#include "ApiSetResolver.h"
#include <iostream>

int main() {
    std::string resolvedDll = ApiSetResolver::Resolve("api-ms-win-core-file-l1-1-0.dll");
    std::cout << "Resolved DLL: " << resolvedDll << std::endl;
    return 0;
}

Building

Build using CMake:

mkdir build && cd build
cmake ..
make

or just add

FetchContent_Declare(
    api_set_resolver
    GIT_REPOSITORY https://github.com/error56/ApiSetResolver
    GIT_TAG        [current git commit tag]
)

to your CMakeLists.txt.

License

This project is licensed under the MIT License - see the LICENSE file for details.

About

A lightweight C++ library to resolve Windows API Set mappings to their actual DLL names.

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages