2012-05-03 07:15:27 +04:00
|
|
|
//
|
|
|
|
// MRDPCursor.h
|
|
|
|
// MacFreeRDP
|
|
|
|
//
|
2012-06-20 20:57:20 +04:00
|
|
|
// Created by Laxmikant Rashinkar
|
2012-05-03 07:15:27 +04:00
|
|
|
// Copyright (c) 2012 FreeRDP.org All rights reserved.
|
|
|
|
//
|
|
|
|
|
2012-05-11 00:18:29 +04:00
|
|
|
#import <Cocoa/Cocoa.h>
|
2012-05-03 07:15:27 +04:00
|
|
|
|
|
|
|
#include "freerdp/graphics.h"
|
|
|
|
|
|
|
|
@interface MRDPCursor : NSObject
|
|
|
|
{
|
|
|
|
@public
|
|
|
|
rdpPointer *pointer;
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE *cursor_data; // bitmapped pixel data
|
2012-05-03 07:15:27 +04:00
|
|
|
NSBitmapImageRep *bmiRep;
|
|
|
|
NSCursor *nsCursor;
|
|
|
|
NSImage *nsImage;
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|