Welcome to mirror list, hosted at ThFree Co, Russian Federation.

SDL_loadso.h « SDL2 « include « sdlew « extern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 942f096a360975e622c2cd29babca7b82a6c985e (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

#ifndef _SDL_loadso_h
#define _SDL_loadso_h

#include "SDL_stdinc.h"
#include "SDL_error.h"

#include "begin_code.h"

#ifdef __cplusplus
extern "C" {
#endif

typedef void * SDLCALL tSDL_LoadObject(const char *sofile);

typedef void * SDLCALL tSDL_LoadFunction(void *handle,
                                               const char *name);

typedef void SDLCALL tSDL_UnloadObject(void *handle);

extern tSDL_LoadObject *SDL_LoadObject;
extern tSDL_LoadFunction *SDL_LoadFunction;
extern tSDL_UnloadObject *SDL_UnloadObject;

#ifdef __cplusplus
}
#endif
#include "close_code.h"

#endif