#ifndef WORKBENCH_STARTUP_H
#define WORKBENCH_STARTUP_H
/*
** $Filename: workbench/startup.h $
** $Release: 2.04 Includes, V37.4 $
** $Revision: 36.3 $
** $Date: 90/07/11 $
**
** workbench startup definitions
**
** (C) Copyright 1985-1991 Commodore-Amiga, Inc.
** All Rights Reserved
*/

#ifndef EXEC_TYPES_H
#include "exec/types.h"
#endif

#ifndef EXEC_PORTS_H
#include "exec/ports.h"
#endif

#ifndef LIBRARIES_DOS_H
#include "libraries/dos.h"
#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 
