ResKnife/Cocoa/Plug-Ins/Hex Editor/HexTextView.h

13 lines
303 B
C
Raw Normal View History

2002-02-11 01:22:17 +00:00
#import <Cocoa/Cocoa.h>
#import "HexEditorDelegate.h"
2002-03-31 17:02:40 +00:00
#import "HexWindowController.h"
2002-02-02 11:48:54 +00:00
@interface HexTextView : NSTextView
{
}
2002-05-31 00:17:53 +00:00
- (void)editData:(NSMutableData *)data replaceBytesInRange:(NSRange)range withData:(NSData *)newData;
2002-02-02 11:48:54 +00:00
@end
2002-02-23 03:40:24 +00:00
@interface NSTextView (HexTextView)
- (void)swapForHexTextView;
@end