We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65c5936 commit a4fb3eeCopy full SHA for a4fb3ee
1 file changed
WebSource/web.cpp
@@ -33,6 +33,9 @@ extern "C"{
33
char* WEB_getStatus();
34
char* WEB_getPatchName();
35
char* WEB_getParameterName(int pid);
36
+
37
+ void *pvPortMalloc( size_t xWantedSize );
38
+ void vPortFree( void *pv );
39
}
40
41
extern "C"{
@@ -222,3 +225,10 @@ void programStatus(ProgramVectorAudioStatus status){}
222
225
int serviceCall(int service, void** params, int len){
223
226
return -1;
224
227
228
229
+void *pvPortMalloc( size_t xWantedSize ){
230
+ return malloc(xWantedSize);
231
+}
232
+void vPortFree( void *pv ){
233
+ free(pv);
234
0 commit comments