#ifndef WORKBENCH_STARTUP_H #define WORKBENCH_STARTUP_H /* Copyright © 1995-2001, The AROS Development Team. All rights reserved. $Id: startup.h 12757 2001-12-08 22:23:57Z chodorowski $ Desc: Workbench startup handling Lang: english */ #ifndef EXEC_PORTS_H # include #endif #ifndef EXEC_TYPES_H # include #endif #ifndef DOS_DOS_H # include #endif struct WBStartup { struct Message sm_Message; struct MsgPort * sm_Process; BPTR sm_Segment; LONG sm_NumArgs; char * sm_ToolWindow; struct WBArg * sm_ArgList; }; struct WBArg { BPTR wa_Lock; BYTE * wa_Name; }; #endif /* WORKBENCH_STARTUP_H */