Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
#include <pro_ext.h>
#define C_HELLOWORLD "Hello World!"
void MyTest()
{
_RetChar(C_HELLOWORLD);
}
void MyTest2()
{
HWND hWndMain = _WhToHwnd(_WMainWindow());
char szCaption[128];
GetWindowText(hWndMain,szCaption,128);
MessageBox(
hWndMain,
C_HELLOWORLD,
szCaption,
MB_ICONINFORMATION);
_RetChar(C_HELLOWORLD);
}
FoxInfo myFoxInfo[] =
{
{"TEST", (FPFI) MyTest, 0, ""},
{"TEST2", (FPFI) MyTest2, 0, ""}
};
#ifdef __cplusplus
extern "C"
#endif
FoxTable _FoxTable = {
(FoxTable *)0, sizeof(myFoxInfo)/sizeof(FoxInfo), myFoxInfo
};