Additional header file patches for open toolchain
出自iPhone.org.hk
(修訂版本間差異)
第1行: | 第1行: | ||
+ | == GraphicsServices/GraphicsServices.h == | ||
+ | |||
+ | <span style="font-size:8pt"><pre>CGPoint GSEventGetLocationInWindow(GSEvent *ev);</pre></span> | ||
+ | 改為 | ||
+ | <span style="color:blue; font-size:8pt"><pre>struct CGRect GSEventGetLocationInWindow(GSEvent *ev);</pre></span> | ||
+ | <br/> | ||
+ | ---- | ||
+ | |||
== UIKit/UIWebView.h == | == UIKit/UIWebView.h == | ||
第18行: | 第26行: | ||
改為 | 改為 | ||
<span style="color:blue; font-size:8pt"><pre>DOMNode/*<UIFormControl>*/ *element;</pre></span> | <span style="color:blue; font-size:8pt"><pre>DOMNode/*<UIFormControl>*/ *element;</pre></span> | ||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
<br/> | <br/> | ||
---- | ---- | ||
第43行: | 第43行: | ||
<span style="color:blue; font-size:8pt"><pre>#import <UIKit/UIView.h> | <span style="color:blue; font-size:8pt"><pre>#import <UIKit/UIView.h> | ||
@interface UIHardware : UIView</pre></span> | @interface UIHardware : UIView</pre></span> | ||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
<br/> | <br/> |
在2008年6月24日 (二) 08:33所做的修訂版本
目錄 |
GraphicsServices/GraphicsServices.h
CGPoint GSEventGetLocationInWindow(GSEvent *ev);
改為
struct CGRect GSEventGetLocationInWindow(GSEvent *ev);
UIKit/UIWebView.h
#import "UIKeyboardInputProtocol.h"
改為
//#import "UIKeyboardInputProtocol.h"
@class DOMHTMLElement, DOMNode, DOMNode<UIFormControl>, NSTimer, UIAutoscrollTimer, UIInformalDelegate, UITextLoupe, UITextTraits, UITextView, UIView, WebPDFView, WebView;
改為
@class DOMHTMLElement, DOMNode, DOMNode/*<UIFormControl>*/, NSTimer, UIAutoscrollTimer, UIInformalDelegate, UITextLoupe, UITextTraits, UITextView, UIView, WebPDFView, WebView;
@interface UIWebView : UITiledView <UIKeyboardInput>
改為
@interface UIWebView : UITiledView /*<UIKeyboardInput>*/
DOMNode<UIFormControl> *element;
改為
DOMNode/*<UIFormControl>*/ *element;
UIKit/UIKit.h
加這行
#import <GraphicsServices/GraphicsServices.h>
UIKit/UIHardware.h
#import <Foundation/Foundation.h> @interface UIHardware : NSObject
改為
#import <UIKit/UIView.h> @interface UIHardware : UIView