Jump to content

WinSetTitle.c - Example code: Difference between revisions

From EDM2
Ak120 (talk | contribs)
mNo edit summary
Ak120 (talk | contribs)
mNo edit summary
 
Line 7: Line 7:
   
   
  void main(void) {
  void main(void) {
 
   WinSetTitle("Test of WinSetTitle");
   WinSetTitle("Test of WinSetTitle");
   getch();
   getch();
  }
  }

Latest revision as of 12:45, 15 July 2018

#define INCL_BASE
#include <os2.h>
#include <conio.h>

APIRET16 APIENTRY16 WinSetTitle (PSZ szTitle);

void main(void) {

  WinSetTitle("Test of WinSetTitle");
  getch();
}