mirror of
https://github.com/CPunch/Laika.git
synced 2024-11-24 05:31:03 +00:00
CPunch
b2f8efc402
- Grabs the functions directly from the loaded library by walking the exported address table and comparing hashes - For now, only ShellExecuteA has been setup, more to come
17 lines
280 B
C
17 lines
280 B
C
#ifndef LAIKA_OBF_H
|
|
#define LAIKA_OBF_H
|
|
|
|
#include "laika.h"
|
|
|
|
#ifdef _WIN32
|
|
# include <windows.h>
|
|
|
|
/* WINAPI types */
|
|
typedef HINSTANCE(WINAPI *_ShellExecuteA)(HWND, LPCSTR, LPCSTR, LPCSTR, LPCSTR, INT);
|
|
|
|
extern _ShellExecuteA oShellExecuteA;
|
|
#endif
|
|
|
|
void laikaO_init();
|
|
|
|
#endif |