summaryrefslogtreecommitdiff
path: root/packages/cocoaint/src/webkit/DOMHTMLCollection.inc
diff options
context:
space:
mode:
authorjosef <josef@3ad0048d-3df7-0310-abae-a5850022a9f2>2009-10-03 10:32:49 +0000
committerjosef <josef@3ad0048d-3df7-0310-abae-a5850022a9f2>2009-10-03 10:32:49 +0000
commitd074bef075383ff0bed53943e4aa499a03e06310 (patch)
treea5e9f7ca5bb91876ffb30ee510ad166af59113ed /packages/cocoaint/src/webkit/DOMHTMLCollection.inc
parentebac4a8ffdd23add1d17f5fa92901779b3574f49 (diff)
downloadfpc-d074bef075383ff0bed53943e4aa499a03e06310.tar.gz
* NSRange is defined correctly
+ Added CoreData framework + Added WebKit framework git-svn-id: http://svn.freepascal.org/svn/fpc/branches/objc@13796 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'packages/cocoaint/src/webkit/DOMHTMLCollection.inc')
-rw-r--r--packages/cocoaint/src/webkit/DOMHTMLCollection.inc55
1 files changed, 55 insertions, 0 deletions
diff --git a/packages/cocoaint/src/webkit/DOMHTMLCollection.inc b/packages/cocoaint/src/webkit/DOMHTMLCollection.inc
new file mode 100644
index 0000000000..dfa3810e12
--- /dev/null
+++ b/packages/cocoaint/src/webkit/DOMHTMLCollection.inc
@@ -0,0 +1,55 @@
+{ Parsed from Webkit.framework DOMHTMLCollection.h }
+{ Version FrameworkParser: 1.3. PasCocoa 0.3, Objective-P 0.4 - Sat Oct 3 15:33:51 ICT 2009 }
+
+
+{$ifdef TYPES}
+{$ifndef DOMHTMLCOLLECTION_PAS_T}
+{$define DOMHTMLCOLLECTION_PAS_T}
+
+{$endif}
+{$endif}
+
+{$ifdef RECORDS}
+{$ifndef DOMHTMLCOLLECTION_PAS_R}
+{$define DOMHTMLCOLLECTION_PAS_R}
+
+{$endif}
+{$endif}
+
+{$ifdef FUNCTIONS}
+{$ifndef DOMHTMLCOLLECTION_PAS_F}
+{$define DOMHTMLCOLLECTION_PAS_F}
+
+{$endif}
+{$endif}
+
+{$ifdef EXTERNAL_SYMBOLS}
+{$ifndef DOMHTMLCOLLECTION_PAS_S}
+{$define DOMHTMLCOLLECTION_PAS_S}
+
+{$endif}
+{$endif}
+
+{$ifdef FORWARD}
+ DOMHTMLCollection = objcclass;
+ DOMHTMLCollectionPointer = ^DOMHTMLCollection;
+
+{$endif}
+
+{$ifdef CLASSES}
+{$ifndef DOMHTMLCOLLECTION_PAS_C}
+{$define DOMHTMLCOLLECTION_PAS_C}
+
+{ DOMHTMLCollection }
+ DOMHTMLCollection = objcclass(DOMObject)
+
+ public
+ class function alloc: DOMHTMLCollection; message 'alloc';
+
+ function length: cuint; message 'length';
+ function item(index: cuint): DOMNode; message 'item:';
+ function namedItem(name: NSStringPointer): DOMNode; message 'namedItem:';
+ end; external;
+
+{$endif}
+{$endif}