Skip to content

Instantly share code, notes, and snippets.

@choonkeat
Created June 6, 2010 03:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save choonkeat/427258 to your computer and use it in GitHub Desktop.
Save choonkeat/427258 to your computer and use it in GitHub Desktop.
//
// UIWindow+MyWindow.h
//
#import <Foundation/Foundation.h>
@interface UIWindow (MyWindow)
- (void)addEventMonitor:(void *)monitor;
- (void)removeEventActivityMonitor:(void *)monitor;
- (void)pendingMouseUpCount;
@end
//
// UIWindow+MyWindow.m
//
#import "UIWindow+MyWindow.h"
@implementation UIWindow (MyWindow)
- (void)addEventMonitor:(void *)monitor {}
- (void)removeEventActivityMonitor:(void *)monitor {}
- (void)pendingMouseUpCount {}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment