a1200   NEWS   APPS   DOCS   ABOUT
a1200
----
a1200
----
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
Docs » Include » exec » avl.h
#ifndef EXEC_AVL_H
#define EXEC_AVL_H
/*
**	$VER: avl.h 45.4 (27.2.2001)
**	Includes Release 45.1
**
**	AVL tree data structure definitions
**
**	(C) Copyright 2001 Amiga, Inc.
**	    All Rights Reserved
*/

#ifndef EXEC_TYPES_H
#include <exec/types.h>
#endif /* EXEC_TYPES_H */

/* Don't even think about the contents of this structure. Just embed it
 * and reference it
 */
struct AVLNode
{
	ULONG reserved[4];
};

/* Note that this is really a totally abstract 32 bit value */
typedef void * AVLKey;

/* Callback functions for the AVL tree handling. They will have to return
 * strcmp like results for the given arguments (<0/0/>0).
 * You can compare to nodes or a node with a key.
 */
#ifdef __SASC
typedef LONG (* __asm AVLNODECOMP)(register __a0 struct AVLNode *avlnode1, register __a1 struct AVLNode *avlnode2);
typedef LONG (* __asm AVLKEYCOMP)(register __a0 struct AVLNode *avlnode1, register __a1 AVLKey avlkey);
#else
typedef APTR AVLNODECOMP;
typedef APTR AVLKEYCOMP;
#endif /* __SASC */

#endif /* EXEC_AVL_H */

Comments

Name:
E-mail: Use this if you want a message if you get a response, will not be shown.
Comment:
Select correct short for:

Paradox

KEF
CSL
TSL
PDX

Comments:

$VER: d0.se 1.14 Copyright © 2011-2024 Tobias Geijersson support at d0 dot se