mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-01-07 12:42:00 -05:00
16 lines
240 B
C++
16 lines
240 B
C++
#ifndef _LOADLIB_H
|
|
#define _LOADLIB_H
|
|
|
|
//UNDER CONSTRUCTION
|
|
|
|
class NOVTABLE svc_loadLib
|
|
{
|
|
public:
|
|
int isMine(const char *filename);
|
|
|
|
int load(const char *filename);
|
|
void unload();
|
|
void *getProcAddress(const char *name);
|
|
};
|
|
|
|
#endif
|