71
71
extern "C" DECLEXPORT(uint32_t) SomeExportFunction1(void *pvBuf)
73
74
return achBss[0] + achBss[16384];
77
78
extern "C" DECLEXPORT(char *) SomeExportFunction2(void *pvBuf)
79
81
return (char *)memcpy(achBss, szStr1, sizeof(szStr1));
83
85
extern "C" DECLEXPORT(char *) SomeExportFunction3(void *pvBuf)
85
88
return (char *)memcpy(achBss, szStr2, strlen(szStr2));