2022-06-09 21:19:02 +02:00
|
|
|
/*
|
|
|
|
lib_win.h - common win32 dll definitions
|
|
|
|
Copyright (C) 2022 Flying With Gauss
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "library.h"
|
|
|
|
#include <winnt.h>
|
|
|
|
#include <psapi.h>
|
2023-08-29 18:18:22 +02:00
|
|
|
#include STDINT_H
|
2022-06-09 21:19:02 +02:00
|
|
|
|
2023-08-29 18:18:22 +02:00
|
|
|
#define CALCULATE_ADDRESS( base, offset ) ((uint8_t *)( base ) + (uintptr_t)( offset ))
|
2022-06-09 21:19:02 +02:00
|
|
|
|
|
|
|
FARPROC MemoryGetProcAddress( void *module, const char *name );
|
|
|
|
void MemoryFreeLibrary( void *hInstance );
|
2023-08-29 18:18:22 +02:00
|
|
|
void *MemoryLoadLibrary( const char *name );
|