00001 // Filename: pystub.cxx 00002 // Created by: drose (09Aug00) 00003 // 00004 //////////////////////////////////////////////////////////////////// 00005 // 00006 // PANDA 3D SOFTWARE 00007 // Copyright (c) 2001, Disney Enterprises, Inc. All rights reserved 00008 // 00009 // All use of this software is subject to the terms of the Panda 3d 00010 // Software license. You should have received a copy of this license 00011 // along with this source code; you will also find a current copy of 00012 // the license at http://www.panda3d.org/license.txt . 00013 // 00014 // To contact the maintainers of this program write to 00015 // panda3d@yahoogroups.com . 00016 // 00017 //////////////////////////////////////////////////////////////////// 00018 00019 #include "pystub.h" 00020 00021 extern "C" { 00022 EXPCL_DTOOLCONFIG int PyArg_ParseTuple(...); 00023 EXPCL_DTOOLCONFIG int Py_BuildValue(...); 00024 EXPCL_DTOOLCONFIG int PyInt_FromLong(...); 00025 EXPCL_DTOOLCONFIG int PyFloat_FromDouble(...); 00026 EXPCL_DTOOLCONFIG int PyString_FromString(...); 00027 EXPCL_DTOOLCONFIG int PyString_FromStringAndSize(...); 00028 EXPCL_DTOOLCONFIG int Py_InitModule4(...); 00029 EXPCL_DTOOLCONFIG int PyObject_IsTrue(...); 00030 EXPCL_DTOOLCONFIG int PyErr_SetString(...); 00031 EXPCL_DTOOLCONFIG extern void *PyExc_AssertionError; 00032 }; 00033 00034 int 00035 PyArg_ParseTuple(...) { 00036 return 0; 00037 } 00038 00039 int 00040 Py_BuildValue(...) { 00041 return 0; 00042 } 00043 00044 int 00045 PyInt_FromLong(...) { 00046 return 0; 00047 } 00048 00049 int 00050 PyFloat_FromDouble(...) { 00051 return 0; 00052 } 00053 00054 int 00055 PyString_FromStringAndSize(...) { 00056 return 0; 00057 } 00058 00059 int 00060 PyString_FromString(...) { 00061 return 0; 00062 } 00063 00064 int 00065 Py_InitModule4(...) { 00066 return 0; 00067 } 00068 00069 int 00070 PyObject_IsTrue(...) { 00071 return 0; 00072 } 00073 00074 int 00075 PyErr_SetString(...) { 00076 return 0; 00077 } 00078 00079 void *PyExc_AssertionError = (void *)NULL; 00080 00081 00082 void 00083 pystub() { 00084 }