[ First ]  [ Previous ]  [ Next ]  [ Last ]  [ Manuals ]


SIOUXSetTitle

To set the title of the SIOUX output window.

Compatibility:

This function is compatible with the following targets:

ANSI
BeOS
EMB/RTOS

Mac OS

Palm OS
Win32

Prototype:
include <SIOUX.h>
extern void SIOUXSetTitle
  (unsigned char title[256])
Parameters:

Parameters for this facility are:

title  
unsigned char []  
A pascal string  

Remarks:

You must call the SIOUXSetTitle() function after an output to the SIOUX window. The function SIOUXSetTitle() does not return an error if the title is not set. A write to console is not performed until a new line is written, the stream is flushed or the end of the program occurs.


WARNING!

The argument for SIOUXSetTitle() is a pascal string, not a C style string.
Return:

There is no return value from SIOUXSetTitle()

Example of SIOUXSetTitle() usage.:
#include <stdio.h>
#include <SIOUX.h>

int main(void)
{
	printf("Hello World\n");
	SIOUXSetTitle("\pMy Title");

	return 0;
}


[ First ]  [ Previous ]  [ Next ]  [ Last ]  [ Manuals ]

Visit the Metrowerks website at: http://www.metrowerks.com
For assistance contact Metrowerks Technical Support at: cw_support@metrowerks.com
Copyright © 2000, Metrowerks Corp. All rights reserved.

Last updated: August 16, 2000