mirror of https://github.com/encounter/SDL.git
Include standard wrapping for SDL public headers in SDL_hidapi.h
This commit is contained in:
parent
b9b0df40bf
commit
1e159bc6fa
|
@ -62,6 +62,14 @@
|
||||||
#ifndef SDL_hidapi_h_
|
#ifndef SDL_hidapi_h_
|
||||||
#define SDL_hidapi_h_
|
#define SDL_hidapi_h_
|
||||||
|
|
||||||
|
#include "SDL_stdinc.h"
|
||||||
|
|
||||||
|
#include "begin_code.h"
|
||||||
|
/* Set up for C function definitions, even when using C++ */
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \brief A handle representing an open HID device
|
* \brief A handle representing an open HID device
|
||||||
*/
|
*/
|
||||||
|
@ -113,6 +121,7 @@ typedef struct SDL_hid_device_info
|
||||||
struct SDL_hid_device_info *next;
|
struct SDL_hid_device_info *next;
|
||||||
} SDL_hid_device_info;
|
} SDL_hid_device_info;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Initialize the HIDAPI library.
|
* Initialize the HIDAPI library.
|
||||||
*
|
*
|
||||||
|
@ -423,6 +432,12 @@ extern DECLSPEC int SDLCALL SDL_hid_get_serial_number_string(SDL_hid_device *dev
|
||||||
*/
|
*/
|
||||||
extern DECLSPEC int SDLCALL SDL_hid_get_indexed_string(SDL_hid_device *dev, int string_index, wchar_t *string, size_t maxlen);
|
extern DECLSPEC int SDLCALL SDL_hid_get_indexed_string(SDL_hid_device *dev, int string_index, wchar_t *string, size_t maxlen);
|
||||||
|
|
||||||
|
/* Ends C function definitions when using C++ */
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
#include "close_code.h"
|
||||||
|
|
||||||
#endif /* SDL_hidapi_h_ */
|
#endif /* SDL_hidapi_h_ */
|
||||||
|
|
||||||
/* vi: set sts=4 ts=4 sw=4 expandtab: */
|
/* vi: set sts=4 ts=4 sw=4 expandtab: */
|
||||||
|
|
Loading…
Reference in New Issue