39 lines
1002 B
C
39 lines
1002 B
C
/**
|
|
* PANDA 3D SOFTWARE
|
|
* Copyright (c) Carnegie Mellon University. All rights reserved.
|
|
*
|
|
* All use of this software is subject to the terms of the revised BSD
|
|
* license. You should have received a copy of this license along
|
|
* with this source code in a file named "LICENSE."
|
|
*
|
|
* @file plugin_get_x11.h
|
|
* @author drose
|
|
* @date 2011-08-28
|
|
*/
|
|
|
|
#ifndef PLUGIN_GET_X11_H
|
|
#define PLUGIN_GET_X11_H
|
|
|
|
#include "pandabase.h"
|
|
#include "p3d_plugin_config.h"
|
|
|
|
#ifdef HAVE_X11
|
|
// This header file is designed to help work around some of the namespace
|
|
// spamming that X11 causes, by renaming the symbols that X11 declares that
|
|
// are known to conflict with other library names (like Apple's Core Graphics,
|
|
// for instance).
|
|
|
|
// In order for this to work, everyone who uses X11 within Panda should
|
|
// include this file instead of including the X11 headers directly.
|
|
|
|
#include "pre_x11_include.h"
|
|
|
|
#include <X11/Xlib.h>
|
|
#include <X11/Xutil.h>
|
|
|
|
#include "post_x11_include.h"
|
|
|
|
#endif // HAVE_X11
|
|
|
|
#endif
|