home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 4
/
FreshFish_May-June1994.bin
/
useful
/
dist
/
cbm
/
v39
/
include
/
exec
/
initializers.h
< prev
next >
Wrap
C/C++ Source or Header
|
1992-09-24
|
806b
|
25 lines
#ifndef EXEC_INITIALIZERS_H
#define EXEC_INITIALIZERS_H
/*
** $VER: initializers.h 39.0 (15.10.91)
** Includes Release 39.108
**
** Macros for use with the InitStruct() function.
**
** (C) Copyright 1985-1992 Commodore-Amiga, Inc.
** All Rights Reserved
*/
#define OFFSET(structName, structEntry) \
(&(((struct structName *) 0)->structEntry))
#define INITBYTE(offset,value) 0xe000,(UWORD) (offset),(UWORD) ((value)<<8)
#define INITWORD(offset,value) 0xd000,(UWORD) (offset),(UWORD) (value)
#define INITLONG(offset,value) 0xc000,(UWORD) (offset), \
(UWORD) ((value)>>16), \
(UWORD) ((value) & 0xffff)
#define INITSTRUCT(size,offset,value,count) \
(UWORD) (0xc000|(size<<12)|(count<<8)| \
((UWORD) ((offset)>>16)), \
((UWORD) (offset)) & 0xffff)
#endif /* EXEC_INITIALIZERS_H */