home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / Reference / Includes_and_Autodocs_3.5 / include / clib / nonvolatile_protos.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-10-30  |  1.1 KB  |  40 lines

  1. #ifndef  CLIB_NONVOLATILE_PROTOS_H
  2. #define  CLIB_NONVOLATILE_PROTOS_H
  3.  
  4. /*
  5. **    $VER: nonvolatile_protos.h 40.1 (17.5.1996)
  6. **
  7. **    C prototypes. For use with 32 bit integers only.
  8. **
  9. **    Copyright © 1999 Amiga, Inc.
  10. **        All Rights Reserved
  11. */
  12.  
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif /* __cplusplus */
  16.  
  17. #ifndef  EXEC_TYPES_H
  18. #include <exec/types.h>
  19. #endif
  20. #ifndef  EXEC_LISTS_H
  21. #include <exec/lists.h>
  22. #endif
  23. #ifndef  LIBRARIES_NONVOLATILE_H
  24. #include <libraries/nonvolatile.h>
  25. #endif
  26. /*--- functions in V40 or higher (Release 3.1) ---*/
  27. APTR GetCopyNV( CONST_STRPTR appName, CONST_STRPTR itemName, LONG killRequesters );
  28. VOID FreeNVData( APTR data );
  29. UWORD StoreNV( CONST_STRPTR appName, CONST_STRPTR itemName, CONST APTR data, ULONG length, LONG killRequesters );
  30. BOOL DeleteNV( CONST_STRPTR appName, CONST_STRPTR itemName, LONG killRequesters );
  31. struct NVInfo *GetNVInfo( LONG killRequesters );
  32. struct MinList *GetNVList( CONST_STRPTR appName, LONG killRequesters );
  33. BOOL SetNVProtection( CONST_STRPTR appName, CONST_STRPTR itemName, LONG mask, LONG killRequesters );
  34.  
  35. #ifdef __cplusplus
  36. }
  37. #endif /* __cplusplus */
  38.  
  39. #endif   /* CLIB_NONVOLATILE_PROTOS_H */
  40.