NEWS APPS DOCS ABOUT | ||||
Autodocs Include classes clib datatypes devices diskfont dos exec ables.i alerts.h / .i avl.h devices.h / .i errors.h / .i exec.h / .i exec_lib.i execbase.h / .i initializers.h / .i interrupts.h / .i io.h / .i libraries.h / .i lists.h / .i macros.i memory.h / .i nodes.h / .i ports.h / .i resident.h / .i semaphores.h / .i strings.i tasks.h / .i types.h / .i gadgets graphics hardware images intuition libraries pragma pragmas prefs proto reaction resources rexx utility workbench GuruMeditation | #ifndef EXEC_INITIALIZERS_H #define EXEC_INITIALIZERS_H /* ** $VER: initializers.h 39.0 (15.10.1991) ** Includes Release 45.1 ** ** Macros for use with the InitStruct() function. ** ** (C) Copyright 1985-2001 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 */ Comments |
$VER: d0.se 1.14 Copyright © 2011-2024 Tobias Geijersson support at d0 dot se |