NEWS APPS DOCS ABOUT | ||||
Autodocs Include classes clib datatypes devices diskfont dos exec gadgets graphics hardware images intuition libraries HDW_CallBackMsgs.h amigaguide.h / .i aml.h asl.h / .i commodities.h / .i configregs.h / .i configvars.h / .i diskfont.h / .i diskfonttag.h dos.h / .i dos_lib.i dosextens.h / .i expansion.h / .i expansionbase.h / .i filehandler.h / .i gadtools.h / .i hdwrench.h iffparse.h / .i locale.h / .i lowlevel.h / .i mathffp.h mathieeedp.h mathieeesp.h mathlibrary.h / .i mathresource.h / .i nonvolatile.h / .i realtime.h / .i resource.h translator.h / .i pragma pragmas prefs proto reaction resources rexx utility workbench GuruMeditation | #ifndef LIBRARIES_NONVOLATILE_H #define LIBRARIES_NONVOLATILE_H /* ** $VER: nonvolatile.h 40.8 (30.7.1993) ** Includes Release 45.1 ** ** nonvolatile.library interface structures and defintions. ** ** (C) Copyright 1992-2001 Amiga, Inc. ** All Rights Reserved */ /*****************************************************************************/ #ifndef EXEC_TYPES_H #include <exec/types.h> #endif #ifndef EXEC_NODES_H #include <exec/nodes.h> #endif /*****************************************************************************/ struct NVInfo { ULONG nvi_MaxStorage; ULONG nvi_FreeStorage; }; /*****************************************************************************/ struct NVEntry { struct MinNode nve_Node; STRPTR nve_Name; ULONG nve_Size; ULONG nve_Protection; }; /* bit definitions for mask in SetNVProtection(). Also used for * NVEntry.nve_Protection. */ #define NVEB_DELETE 0 #define NVEB_APPNAME 31 #define NVEF_DELETE (1<<NVEB_DELETE) #define NVEF_APPNAME (1<<NVEB_APPNAME) /*****************************************************************************/ /* errors from StoreNV() */ #define NVERR_BADNAME 1 #define NVERR_WRITEPROT 2 #define NVERR_FAIL 3 #define NVERR_FATAL 4 /*****************************************************************************/ /* determine the size of data returned by this library */ #define SizeNVData(DataPtr) ((((ULONG *) DataPtr)[-1]) - 4) /*****************************************************************************/ #endif /* LIBRARIES_NONVOLATILE_H */ Comments |
$VER: d0.se 1.14 Copyright © 2011-2024 Tobias Geijersson support at d0 dot se |