comparison dstep/foundation/NSHashTable_bindings.d @ 14:89f3c3ef1fd2

Added the Foundation framework
author Jacob Carlborg <doob@me.com>
date Mon, 03 Aug 2009 15:23:15 +0200
parents
children 19885b43130e
comparison
equal deleted inserted replaced
13:4f583f7e242e 14:89f3c3ef1fd2
1 module dstep.foundation.NSHashTable_bindings;
2
3 import dstep.foundation.NSArray;
4 import dstep.foundation.NSEnumerator;
5 import dstep.foundation.NSHashTable;
6 import dstep.foundation.NSPointerFunctions;
7 import dstep.foundation.NSSet;
8 import dstep.foundation.NSString;
9 import dstep.objc.bridge.Bridge;
10 import dstep.objc.objc : id;
11
12
13 extern (C)
14 {
15 extern
16 {
17 }
18 }
19
20 extern (C)
21 {
22 private void NSFreeHashTable (id table);
23 private void NSResetHashTable (id table);
24 private bool NSCompareHashTables (id table1, id table2);
25 private id NSCopyHashTableWithZone (id table, NSZone* zone);
26 private void* NSHashGet (id table, void* pointer);
27 private void NSHashInsert (id table, void* pointer);
28 private void NSHashInsertKnownAbsent (id table, void* pointer);
29 private void* NSHashInsertIfAbsent (id table, void* pointer);
30 private void NSHashRemove (id table, void* pointer);
31 private NSHashEnumerator NSEnumerateHashTable (id table);
32 private NSUInteger NSCountHashTable (id table);
33 private id NSStringFromHashTable (id table);
34 private id NSAllHashTableObjects (id table);
35 private id NSCreateHashTableWithZone (NSHashTableCallBacks callBacks, NSUInteger capacity, NSZone* zone);
36 private id NSCreateHashTable (NSHashTableCallBacks callBacks, NSUInteger capacity);
37 }