21 lines
870 B
C
21 lines
870 B
C
|
|
||
|
/*******************************************************************************
|
||
|
* Copyright 1991-1996 by ORCA Software, Inc. *
|
||
|
* *
|
||
|
* All rights reserved. May not be reproduced or distributed, in printed or *
|
||
|
* electronic form, without permission of ORCA Software, Inc. May not be *
|
||
|
* distributed as object code, separately or linked with other object modules, *
|
||
|
* without permission. *
|
||
|
*******************************************************************************/
|
||
|
|
||
|
#include "xiport.h"
|
||
|
|
||
|
void
|
||
|
XinAppSystemSetupInit( XinSystemSetup * SystemSetup )
|
||
|
{
|
||
|
SystemSetup->task_win_title = "DUMMY";
|
||
|
SystemSetup->appl_name = "dummy";
|
||
|
SystemSetup->menu_bar_rid = 0;
|
||
|
SystemSetup->eh = NULL;
|
||
|
}
|