2017-07-07 16:15:36 +02:00
|
|
|
#include "pxt.h"
|
2017-07-11 16:58:51 +02:00
|
|
|
#include "ev3const.h"
|
2017-07-07 16:15:36 +02:00
|
|
|
|
|
|
|
namespace output {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new zero-initialized buffer.
|
|
|
|
* @param size number of bytes in the buffer
|
|
|
|
*/
|
|
|
|
//%
|
|
|
|
Buffer createBuffer(int size) {
|
|
|
|
return mkBuffer(NULL, size);
|
|
|
|
}
|
|
|
|
|
2017-07-10 15:16:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
namespace pxt {
|
|
|
|
|
|
|
|
void target_init() {
|
|
|
|
}
|
2017-07-11 16:44:35 +02:00
|
|
|
|
2017-07-07 16:15:36 +02:00
|
|
|
}
|