mirror of
https://github.com/gligli/nulldc-360.git
synced 2025-04-02 11:11:56 -04:00
16 lines
350 B
C
16 lines
350 B
C
#ifndef FAKE_PLUGINSYSTEM_H
|
|
#define FAKE_PLUGINSYSTEM_H
|
|
|
|
#include "nullDC/plugins/plugin_header.h"
|
|
#include "nullDC/plugins/gui_plugin_header.h"
|
|
|
|
#include "stdclass.h"
|
|
|
|
int GetLastError();
|
|
|
|
DLLHANDLE LoadLibrary(char * dllname);
|
|
int FreeLibrary(DLLHANDLE lib);
|
|
void * GetProcAddress(DLLHANDLE lib,char * procname);
|
|
|
|
#endif /* FAKE_PLUGINSYSTEM_H */
|
|
|