blob: 621db751aab0beab72236b2e024d4f939096ad07 (
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
|
/*
* tkMacOSXEvent.h --
*
* Declarations of Macintosh specific functions for implementing the
* Mac OS X Notifier.
*
* Copyright 2001-2009, Apple Inc.
* Copyright (c) 2005-2009 Daniel A. Steffen <das@users.sourceforge.net>
*
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
* RCS: @(#) $Id: tkMacOSXEvent.h,v 1.14 2009/06/29 14:35:01 das Exp $
*/
#ifndef _TKMACEVENT
#define _TKMACEVENT
#ifndef _TKMACINT
#include "tkMacOSXInt.h"
#endif
MODULE_SCOPE void TkMacOSXFlushWindows(void);
#endif
|