Updated PCI IDs to latest snapshot.
[tangerine.git] / compiler / include / workbench / startup.h
blobc25f9397029b2a55bb008d838073d2173c2c8c42
1 #ifndef WORKBENCH_STARTUP_H
2 #define WORKBENCH_STARTUP_H
4 /*
5 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
6 $Id$
8 Desc: Workbench startup handling
9 Lang: english
12 #ifndef EXEC_PORTS_H
13 # include <exec/ports.h>
14 #endif
15 #ifndef EXEC_TYPES_H
16 # include <exec/types.h>
17 #endif
18 #ifndef DOS_DOS_H
19 # include <dos/dos.h>
20 #endif
22 struct WBStartup
24 struct Message sm_Message;
25 struct MsgPort * sm_Process;
26 BPTR sm_Segment;
27 LONG sm_NumArgs;
28 char * sm_ToolWindow;
29 struct WBArg * sm_ArgList;
32 struct WBArg
34 BPTR wa_Lock;
35 BYTE * wa_Name;
38 #endif /* WORKBENCH_STARTUP_H */