(svn r2028) Added detection of SVN version (rev.c generation) for OS/2, updated readme, initial clipboard support (orudge)

This commit is contained in:
celestar
2005-03-19 22:36:13 +00:00
parent d2ae7dd186
commit fe8313159a
4 changed files with 347 additions and 284 deletions

16
os2.c
View File

@@ -15,6 +15,7 @@
#define INCL_DOS
#define INCL_OS2MM
#define INCL_WIN
#define INCL_WINCLIPBOARD
#include <os2.h>
#include <os2me.h>
@@ -687,6 +688,21 @@ const HalMusicDriver _os2_music_driver = {
bool InsertTextBufferClipboard(Textbuf *tb)
{
#if 0
HAB hab = 0; // anchor-block handle
PSZ pszClipText, pszLocalText;
if (WinOpenClipbrd(hab))
{
if (pszClipText = (PSZ) WinQueryClipbrdData(hab, CF_TEXT))
{
while (*pszLocalText++ = *pszClipText++);
}
WinCloseClipbrd(hab);
}
// text is now in pszLocalText, do something with it!
#endif
// TODO
return false;
}