blob: aca47f66ef17d4c10f724bae35bfe5f9777d8c43 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
//
// jawt_md.h
//
// Copyright (c) 2002 Apple computer Inc. All rights reserved.
//
#ifndef _JAVASOFT_JAWT_MD_H_
#define _JAVASOFT_JAWT_MD_H_
#include <jawt.h>
#include <AppKit/NSView.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef struct JAWT_MacOSXDrawingSurfaceInfo
{
NSView *cocoaViewRef; // the view is guaranteed to be valid only for the duration of Component.paint method
}
JAWT_MacOSXDrawingSurfaceInfo;
#ifdef __cplusplus
}
#endif
#endif /* !_JAVASOFT_JAWT_MD_H_ */
|