* Added submodule NMesh:
Partially implemented. Most of it comes from opy_nmesh.c, plus needed changes to integrate in into exppython. * Added helper submodule vector, needed by NMesh. * Minor changes in other files.
This commit is contained in:
@@ -88,13 +88,13 @@ PyTypeObject constant_Type =
|
||||
/*****************************************************************************/
|
||||
static PyObject *new_const(void);
|
||||
|
||||
PyObject *constant_New(void) /* can't be static, we call it in other files */
|
||||
PyObject *M_constant_New(void) /* can't be static, we call it in other files */
|
||||
{
|
||||
return new_const();
|
||||
}
|
||||
|
||||
static PyObject *new_const(void)
|
||||
{ /* ... but this function needs to be static */
|
||||
{ /* this is the static one */
|
||||
C_constant *constant;
|
||||
|
||||
printf ("In constant_New()\n");
|
||||
|
Reference in New Issue
Block a user