+ forgot to commit (part of r16908)

git-svn-id: trunk@16909 -
This commit is contained in:
Jonas Maebe 2011-02-12 12:38:16 +00:00
parent d6e7023038
commit c87a7c3d3b
2 changed files with 53 additions and 0 deletions
.gitattributes
packages/cocoaint/src/webkit

1
.gitattributes vendored
View File

@ -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/DOMAbstractView.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/DOMCSS.inc svneol=native#text/plain
packages/cocoaint/src/webkit/DOMCSSCharsetRule.inc svneol=native#text/plain

View File

@ -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}