Make d3d_make_d3dpp public

This commit is contained in:
twinaphex 2015-04-11 21:56:38 +02:00
parent f50b208ec8
commit 5dfdeba58f
2 changed files with 4 additions and 1 deletions

View File

@ -111,7 +111,7 @@ static void d3d_deinitialize(d3d_video_t *d3d)
#endif
}
static void d3d_make_d3dpp(void *data,
void d3d_make_d3dpp(void *data,
const video_info_t *info, D3DPRESENT_PARAMETERS *d3dpp)
{
d3d_video_t *d3d = (d3d_video_t*)data;

View File

@ -143,6 +143,9 @@ typedef struct d3d_video
bool resolution_hd_enable;
} d3d_video_t;
void d3d_make_d3dpp(void *data,
const video_info_t *info, D3DPRESENT_PARAMETERS *d3dpp);
#ifndef _XBOX
extern "C" bool dinput_handle_message(void *dinput, UINT message, WPARAM wParam, LPARAM lParam);
#endif