Merge pull request #10 from gunyarakun/fix-invalid-return
[cocotron.git] / Security / SecKeychainCursor.h
blob9e73e333dd1e2481750585ab3176329e57307080
1 #import <Foundation/NSObject.h>
2 #import <Security/Security.h>
3 #import <windows.h>
5 @class NSArray;
7 @interface SecKeychainCursor : NSObject {
8 NSArray *_path;
9 SecItemClass _itemClass;
10 HKEY _handle;
11 int _index;
14 - initWithRegistryPath:(NSArray *)path itemClass:(SecItemClass)itemClass handle:(HKEY)handle;
16 - (NSArray *)registryPath;
17 - (SecItemClass)itemClass;
18 - (HKEY)handle;
19 - (int)index;
20 - (void)incrementIndex;
22 @end