WinSetTitle.c - Example code: Difference between revisions
Appearance
Created page with " <PRE> #define INCL_BASE #include <os2.h> #include <conio.h> APIRET16 APIENTRY16 WinSetTitle ( PSZ szTitle ) ; void main ( void ) { WinSetTitle ( "Test of WinSetTitle..." |
mNo edit summary |
||
Line 1: | Line 1: | ||
<code> | |||
#define INCL_BASE | |||
#include <os2.h> | |||
#include <conio.h> | |||
APIRET16 APIENTRY16 WinSetTitle (PSZ szTitle); | |||
void main(void) { | |||
WinSetTitle("Test of WinSetTitle"); | |||
getch(); | |||
} | |||
</code> | |||
WinSetTitle ( "Test of WinSetTitle" ) ; | |||
getch ( ) ; | |||
} | |||
</ | |||
[[Category:The OS/2 API Project]] | [[Category:The OS/2 API Project]] |
Revision as of 21:37, 26 July 2017
#define INCL_BASE
#include <os2.h>
#include <conio.h>
APIRET16 APIENTRY16 WinSetTitle (PSZ szTitle);
void main(void) {
WinSetTitle("Test of WinSetTitle");
getch();
}