#ifdef HAVE_CONFIG_H # include #endif #include #include //#include //#include #include #ifdef HAVE_UNISTD_H # include #endif #ifdef HAVE_STRING_H # include #endif //class Handle(Standard_Type); //extern const Handle(Standard_Transient) Standard_TransientNullHandle; //extern const Handle(Standard_Persistent) Standard_PersistentNullHandle; //const Handle(Standard_Transient) Standard_TransientNullHandle; //const Handle(Standard_Persistent) Standard_PersistentNullHandle; //--------------------------------------------------- #ifdef WNT # include # include #endif //======================================================================= //function : CSFDB_Allocate //purpose : //======================================================================= Standard_Address StandardCSFDB_Allocate(const Standard_Size aSize) { return Standard::Allocate( aSize ); } //======================================================================= //function : Free //purpose : //======================================================================= void StandardCSFDB_Free(Standard_Address& aStorage ) { Standard::Free( aStorage ); } //======================================================================= //function : Reallocate //purpose : //======================================================================= Standard_EXPORT Standard_Address StandardCSFDB_Reallocate (Standard_Address& aStorage, const Standard_Size , const Standard_Size newSize) { return Standard::Reallocate( aStorage, newSize ); }