OpenFAM is an MIT-licensed version of the SGI-developed libFAM developed through an extensive decompile, document, then reverse engineer process. It replicates the version 1 of libFAM, utilized by IRIX 5.3 to 6.5.10 (ostensibly).
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
OpenFAM/helpers.h

11 lines
242 B

#ifndef _HELPERS_H_
#define _HELPERS_H_
void FAMInit();
int FAMFindFreeReqnum();
void* FAMReqnumToUserData(int reqnum);
int FAMReqnumToIndex(int reqnum);
void FAMStoreUserData(int reqnum, void* p);
void FAMFreeUserData(int reqnum);
#endif