fix extern C usage for msvc2005
This commit is contained in:
parent
ff98730906
commit
5d12368c83
|
@ -75,7 +75,10 @@ static void ui_window_win32_set_title(void *data, char *buf)
|
|||
SetWindowText(window->hwnd, buf);
|
||||
}
|
||||
|
||||
extern "C" VOID (WINAPI *DragAcceptFiles_func)(HWND, BOOL);
|
||||
extern "C"
|
||||
{
|
||||
VOID (WINAPI *DragAcceptFiles_func)(HWND, BOOL);
|
||||
}
|
||||
|
||||
void ui_window_win32_set_droppable(void *data, bool droppable)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue