Browse Source

+ forgot to commit (part of r16908)

git-svn-id: trunk@16909 -
Jonas Maebe 14 years ago
parent
commit
c87a7c3d3b
2 changed files with 53 additions and 0 deletions
  1. 1 0
      .gitattributes
  2. 52 0
      packages/cocoaint/src/webkit/DOMBlob.inc

+ 1 - 0
.gitattributes

@@ -1402,6 +1402,7 @@ packages/cocoaint/src/webkit/CarbonUtils.inc svneol=native#text/plain
 packages/cocoaint/src/webkit/DOM.inc svneol=native#text/plain
 packages/cocoaint/src/webkit/DOM.inc svneol=native#text/plain
 packages/cocoaint/src/webkit/DOMAbstractView.inc svneol=native#text/plain
 packages/cocoaint/src/webkit/DOMAbstractView.inc svneol=native#text/plain
 packages/cocoaint/src/webkit/DOMAttr.inc svneol=native#text/plain
 packages/cocoaint/src/webkit/DOMAttr.inc svneol=native#text/plain
+packages/cocoaint/src/webkit/DOMBlob.inc svneol=native#text/plain
 packages/cocoaint/src/webkit/DOMCDATASection.inc svneol=native#text/plain
 packages/cocoaint/src/webkit/DOMCDATASection.inc svneol=native#text/plain
 packages/cocoaint/src/webkit/DOMCSS.inc svneol=native#text/plain
 packages/cocoaint/src/webkit/DOMCSS.inc svneol=native#text/plain
 packages/cocoaint/src/webkit/DOMCSSCharsetRule.inc svneol=native#text/plain
 packages/cocoaint/src/webkit/DOMCSSCharsetRule.inc svneol=native#text/plain

+ 52 - 0
packages/cocoaint/src/webkit/DOMBlob.inc

@@ -0,0 +1,52 @@
+{ Parsed from Webkit.framework DOMBlob.h }
+{ Version: 2.1.5 - Fri Feb 11 21:46:19 CET 2011 }
+
+
+{$ifdef TYPES}
+{$ifndef DOMBLOB_PAS_T}
+{$define DOMBLOB_PAS_T}
+
+{$endif}
+{$endif}
+
+{$ifdef RECORDS}
+{$ifndef DOMBLOB_PAS_R}
+{$define DOMBLOB_PAS_R}
+
+{$endif}
+{$endif}
+
+{$ifdef FUNCTIONS}
+{$ifndef DOMBLOB_PAS_F}
+{$define DOMBLOB_PAS_F}
+
+{$endif}
+{$endif}
+
+{$ifdef EXTERNAL_SYMBOLS}
+{$ifndef DOMBLOB_PAS_S}
+{$define DOMBLOB_PAS_S}
+
+{$endif}
+{$endif}
+
+{$ifdef FORWARD}
+  DOMBlob = objcclass;
+  DOMBlobPointer = ^DOMBlob;
+  DOMBlobPtr = DOMBlobPointer;
+
+{$endif}
+
+{$ifdef CLASSES}
+{$ifndef DOMBLOB_PAS_C}
+{$define DOMBLOB_PAS_C}
+
+{ DOMBlob }
+  DOMBlob = objcclass external (DOMObject)
+    
+  public
+    function size: cuint; message 'size';
+  end;
+
+{$endif}
+{$endif}