// M13_NEWARRAY.cpp #include "M13_NEWARRAY.h" // Function dynamically allocates array of characters of the specified size extern "C" char* __stdcall NEWARRAY( size_t size_ ) { return new char[ size_ ]; }