mirror of
https://github.com/libretro/RetroArch
synced 2024-12-29 12:31:05 +00:00
Fix some linkage errors with RA MSVC 2010
This commit is contained in:
parent
20bb653f1e
commit
8d5a8355a7
@ -20,12 +20,16 @@
|
||||
#include <stddef.h>
|
||||
|
||||
#include <libretro.h>
|
||||
#include <retro_common_api.h>
|
||||
|
||||
#define RARCH_SOFTFILTER_THREADS_AUTO 0
|
||||
|
||||
RETRO_BEGIN_DECLS
|
||||
|
||||
typedef struct rarch_softfilter rarch_softfilter_t;
|
||||
|
||||
rarch_softfilter_t *rarch_softfilter_new(const char *filter_path,
|
||||
rarch_softfilter_t *rarch_softfilter_new(
|
||||
const char *filter_path,
|
||||
unsigned threads,
|
||||
enum retro_pixel_format in_pixel_format,
|
||||
unsigned max_width, unsigned max_height);
|
||||
@ -48,5 +52,6 @@ void rarch_softfilter_process(rarch_softfilter_t *filt,
|
||||
|
||||
const char *rarch_softfilter_get_name(void *data);
|
||||
|
||||
#endif
|
||||
RETRO_END_DECLS
|
||||
|
||||
#endif
|
||||
|
@ -105,6 +105,8 @@ unsigned state_tracker_get_uniform(state_tracker_t *tracker,
|
||||
struct state_tracker_uniform *uniforms,
|
||||
unsigned elem, unsigned frame_count);
|
||||
|
||||
void state_tracker_update_input(uint16_t *input1, uint16_t *input2);
|
||||
|
||||
RETRO_END_DECLS
|
||||
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user