blob: 86ac74ff1faf14e07328ab444f14624a950f41e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/**
* @file llwindowmacosx-objc.h
* @brief Prototypes for functions shared between llwindowmacosx.cpp
* and llwindowmacosx-objc.mm.
*
* Copyright (c) 2006-$CurrentYear$, Linden Research, Inc.
* $License$
*/
// This will actually hold an NSCursor*, but that type is only available in objective C.
typedef void *CursorRef;
/* Defined in llwindowmacosx-objc.mm: */
void setupCocoa();
CursorRef createImageCursor(const char *fullpath, int hotspotX, int hotspotY);
OSErr releaseImageCursor(CursorRef ref);
OSErr setImageCursor(CursorRef ref);
|