public static extern void IritHashTableFree(IritHashTableStruct *IHT);
public static extern void *IritHashTableFind(IritHashTableStruct *IHT, void *Data, IritHashCmpFuncType HashCmpFunc, double Key);
public static extern int IritHashTableRemove(IritHashTableStruct *IHT, void *Data, IritHashCmpFuncType HashCmpFunc, double Key);
public static extern int IritHashTableInsert(IritHashTableStruct *IHT, void *Data, IritHashCmpFuncType HashCmpFunc, double Key, int RplcSame);