Skip to content
Snippets Groups Projects
Commit da487b79 authored by deuce's avatar deuce
Browse files

Use the Win32 copy/paste functions from win32cio.c for copy/paste on Win32.

parent 83f725c9
Branches
Tags
No related merge requests found
......@@ -124,8 +124,13 @@ int try_sdl_init(int mode)
cio_api.showmouse=sdl_showmouse;
cio_api.hidemouse=sdl_hidemouse;
cio_api.settitle=sdl_settitle;
#ifdef _WIN32
cio_api.copytext=win32_copytext;
cio_api.getcliptext=win32_getcliptext;
#else
cio_api.copytext=NULL;
cio_api.getcliptext=NULL;
#endif
return(1);
}
return(0);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment