aboutsummaryrefslogtreecommitdiff
path: root/source/tools/loadmodule.c
blob: 48bc8be0787d0c1dc800c279f93dda0f265cb7b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#include <stdio.h>
#include <stdlib.h>
#include <libgen.h>
#include <windows.h>


const char dllpath[] = "libw32miller_pre-shared.dll";


int main(int argc, char** argv) {
    char* path = NULL;
    BOOL hasPathToDLL = FALSE;

    if (argc == 2) {
        path = argv[1];
        hasPathToDLL = TRUE;
    } else if (argc == 1) {
        path = dirname(argv[0]);
    } else {
        printf("usage: %s [|PATH_TO_DLL]\n", path);
        return 1;
    }
 
#ifdef _MILLER_IMAGEBASE
    /* force windows loader to relocate module */
    LPVOID vpointer = VirtualAlloc((LPVOID)_MILLER_IMAGEBASE, 0x1000, MEM_RESERVE, PAGE_READWRITE);
    if (!vpointer) {
        printf("VirtualAlloc..: %ld\n", GetLastError());
    } else {
        printf("Ptr-alloc'd...: 0x%p\n", vpointer);
    }
#else
        printf("WARN..........: Ptr-alloc disabled ( missing macro `-D_MILLER_IMAGEBASE=[HEX-VALUE]` )\n");
#endif


    HANDLE h = NULL;

    if (!hasPathToDLL) {
        SetDllDirectory(path);
        printf("DLL-dir.......: %s\n", path);
        printf("DLL-file......: %s\n", dllpath);
        h = LoadLibrary(dllpath);
    } else {
        printf("DLL-file......: %s\n", path);
        h = LoadLibrary(path);
    }

    if (!h) {
        printf("LoadLibrary...: %ld\n", GetLastError());
    } else {
        printf("LoadLibrary...: %s\n", "SUCCESS");
    }

    printf("Library HANDLE: 0x%p\n", h);
    return 0;
}