mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-27 13:42:28 -06:00
28 lines
948 B
C++
28 lines
948 B
C++
|
// Filename: pandafx.cxx
|
||
|
// Created by: drose (11Dec01)
|
||
|
//
|
||
|
////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
#include "pandafx.h"
|
||
|
|
||
|
#include "config_distort.h"
|
||
|
|
||
|
// By including checkPandaVersion.h, we guarantee that runtime
|
||
|
// attempts to load libpandafx.so/.dll will fail if they inadvertently
|
||
|
// link with the wrong version of libdtool.so/.dll.
|
||
|
|
||
|
#include "checkPandaVersion.h"
|
||
|
|
||
|
////////////////////////////////////////////////////////////////////
|
||
|
// Function: init_libpandafx
|
||
|
// Description: Initializes the library. This must be called at
|
||
|
// least once before any of the functions or classes in
|
||
|
// this library can be used. Normally it will be
|
||
|
// called by the static initializers and need not be
|
||
|
// called explicitly, but special cases exist.
|
||
|
////////////////////////////////////////////////////////////////////
|
||
|
void
|
||
|
init_libpandafx() {
|
||
|
init_libdistort();
|
||
|
}
|