1 Views
0 Downloads
0 Favorites
mt_tray_v1
#import "mt_tray.dll"
void Initialize(int wnd);
void FreeResources();

int init() {
   Initialize(WindowHandle(Symbol(),Period()));   
   return(0);
}

int deinit() {
   FreeResources();
   return(0);
}

int start() {
   return(0);
}

Comments