mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-04 02:42:49 -04:00
47 lines
1.6 KiB
C
47 lines
1.6 KiB
C
// Filename: pystub.h
|
|
// Created by: drose (08Aug00)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// PANDA 3D SOFTWARE
|
|
// Copyright (c) 2001, Disney Enterprises, Inc. All rights reserved
|
|
//
|
|
// All use of this software is subject to the terms of the Panda 3d
|
|
// Software license. You should have received a copy of this license
|
|
// along with this source code; you will also find a current copy of
|
|
// the license at http://www.panda3d.org/license.txt .
|
|
//
|
|
// To contact the maintainers of this program write to
|
|
// panda3d@yahoogroups.com .
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef PYSTUB_H
|
|
#define PYSTUB_H
|
|
|
|
#include "dtoolbase.h"
|
|
|
|
// The sole purpose of this header file is to allow a program other
|
|
// than Python to load in a module that includes Python wrappers.
|
|
|
|
// We need this if we build the Panda libraries with Python wrappers,
|
|
// but want to run a standalone program with those libraries.
|
|
|
|
// This header file just stubs out the Python functions that these
|
|
// wrappers will call. You should include this header file in exactly
|
|
// one .C file in your project, preferably in the .C file that defines
|
|
// main(), and then link with -lpystub. Do not include this header
|
|
// file in a .C or .h file that will become part of an .so that might
|
|
// eventually link with Python.
|
|
|
|
|
|
// You might need to call this function in main() or somewhere to
|
|
// force the .so to be linked in--some OS'es try to be smart about not
|
|
// pulling in shared libraries whose symbols aren't referenced
|
|
// anywhere.
|
|
EXPCL_DTOOLCONFIG void pystub();
|
|
|
|
|
|
#endif
|
|
|