view dstep/foundation/NSHashTable_bindings.d @ 16:19885b43130e

Huge update, the bridge actually works now
author Jacob Carlborg <doob@me.com>
date Sun, 03 Jan 2010 22:06:11 +0100
parents 89f3c3ef1fd2
children
line wrap: on
line source

module dstep.foundation.NSHashTable_bindings;

import dstep.foundation.NSHashTable;
import dstep.foundation.NSObjCRuntime;
import dstep.foundation.NSZone;
import dstep.objc.objc;

extern (C)
{
	package void NSFreeHashTable (id table);
	package void NSResetHashTable (id table);
	package bool NSCompareHashTables (id table1, id table2);
	package id NSCopyHashTableWithZone (id table, NSZone* zone);
	package void* NSHashGet (id table, void* pointer);
	package void NSHashInsert (id table, void* pointer);
	package void NSHashInsertKnownAbsent (id table, void* pointer);
	package void* NSHashInsertIfAbsent (id table, void* pointer);
	package void NSHashRemove (id table, void* pointer);
	package NSHashEnumerator NSEnumerateHashTable (id table);
	package NSUInteger NSCountHashTable (id table);
	package id NSStringFromHashTable (id table);
	package id NSAllHashTableObjects (id table);
	package id NSCreateHashTableWithZone (NSHashTableCallBacks callBacks, NSUInteger capacity, NSZone* zone);
	package id NSCreateHashTable (NSHashTableCallBacks callBacks, NSUInteger capacity);
}