|
|
@ -0,0 +1,26 @@ |
|
|
|
|
|
|
|
#include "fxlib.h" |
|
|
|
#include "AldeBasiClib.h" |
|
|
|
|
|
|
|
int AddIn_main(int isAppli, unsigned short OptionNum) |
|
|
|
{ |
|
|
|
Cls; |
|
|
|
Locate(2,3,Test); |
|
|
|
RclVRAM; |
|
|
|
Sleep(5000); |
|
|
|
} |
|
|
|
|
|
|
|
#pragma section _BR_Size |
|
|
|
unsigned long BR_Size; |
|
|
|
#pragma section |
|
|
|
|
|
|
|
|
|
|
|
#pragma section _TOP |
|
|
|
|
|
|
|
int InitializeSystem(int isAppli, unsigned short OptionNum) |
|
|
|
{ |
|
|
|
return INIT_ADDIN_APPLICATION(isAppli, OptionNum); |
|
|
|
} |
|
|
|
|
|
|
|
#pragma section |
|
|
|
|