home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Kyūkyoku!! X68000 Emulator
/
X68000Book.dat
/
mac
/
OLS
/
X68000
/
Ko-Window
/
kow142s.lzh
/
corlib
/
SetTitleLabel.c
< prev
next >
Wrap
C/C++ Source or Header
|
1994-09-06
|
404b
|
23 lines
/*
SetTitle 1991 żè}î┤öÄöV
*/
#include <stdio.h>
#include <wlib.h>
#include <winop.h>
#include "title.h"
asm( " .xdef _SetTitleLabel" );
asm( "_SetTitleLabel equ _TitleSetLabel" );
unsigned char*
TitleSetLabel( wp, title )
TitleClass *wp;
unsigned char *title;
{
unsigned char *p= (unsigned char*)strcpy( wp->title.label, title );
WindowRedraw( (WindowID)wp );
return p;
}