1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 2<html> 3 4<head> 5<LINK rel="stylesheet" type="text/css" href="../../CSS/revolution.css"> 6<TITLE>AXFXSetHooks</TITLE> 7<META http-equiv="Content-Type" content="text/html; charset=windows-1252"> 8<META http-equiv="Content-Style-Type" content="text/css"> 9</head> 10 11<BODY> 12 13<H1 align="left">AXFXSetHooks</H1> 14 15<H2>C Specification</H2> 16<BLOCKQUOTE> 17<PRE><CODE>#include <revolution.h> 18#include <revolution/axfx.h> 19 20typedef void* (*AXFXAlloc) (u32); 21typedef void (*AXFXFree) (void*); 22 23void AXFXSetHooks(AXFXAlloc alloc, AXFXFree free);</CODE></PRE> 24</BLOCKQUOTE> 25 26<H2>Arguments</H2> 27<TABLE border="1" cellpadding="3" cellspacing="0.1"> 28 <TBODY> 29 <TR> 30<TD width="120" bgcolor="#ffffe8"><EM><STRONG><code>alloc </code></STRONG></EM></TD> 31<TD width="520">Pointer to the function for allocating memory.</TD> 32 </TR> 33 <TR> 34<TD width="120" bgcolor="#ffffe8"><EM><STRONG><code>free</code></STRONG></EM></TD> 35<TD width="520">Pointer to the function for freeing memory.</TD> 36 </TR> 37 </TBODY> 38</TABLE> 39 40<H2>Return Values</H2> 41<P>None.</P> 42 43<H2>Description</H2> 44<P>Call <code>AXFXSetHooks</code> to install custom memory allocation routines for the AXFX effects engines. This function must be called prior to any other AXFX function calls.</P> 45 46<P>If hooks are not specified by the your application, AXFX defaults to the standard <code>OSAlloc()</code> and <code>OSFree()</code> functions. If this function is not called, AXFX will by default use <code>OSAlloc</code> and <code>OSFree</code> for memory allocation.</P> 47 48<H2>See Also</H2> 49 50<H2>Revision History</H2> 51<P>03/01/2006 Initial version.</P> 52 53</BODY> 54</HTML> 55