Skip to content

LevyCory/Frame

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Frame

A simple loader that is able to load in-memory dlls.

Usage

#include "frame.h"

// Loading a dll from memory. pvDll being the in-memory dll.
HMODULE hDll = FRAME_LoadLibrary(pvDll);

// Getting the address of an exported function from the loaded dll.
FARPROC pfnProc = FRAME_GetProcAddress(hDll, "FunctionName");

// Freeing the dll
FRAME_FreeLibrary(hDll);

About

A simple DLL loader.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published