29 lines
803 B
C
29 lines
803 B
C
// Filename: config_device.h
|
|
// Created by: drose (04May00)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// 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."
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef CONFIG_DEVICE_H
|
|
#define CONFIG_DEVICE_H
|
|
|
|
#include "pandabase.h"
|
|
#include "notifyCategoryProxy.h"
|
|
#include "configVariableBool.h"
|
|
|
|
NotifyCategoryDecl(device, EXPCL_PANDA_DEVICE, EXPTP_PANDA_DEVICE);
|
|
|
|
extern ConfigVariableBool asynchronous_clients;
|
|
|
|
extern EXPCL_PANDA_DEVICE void init_libdevice();
|
|
|
|
#endif
|