home *** CD-ROM | disk | FTP | other *** search
- Help on writing WT modules using the WTmod library
- ==================================================
-
- Introduction
- ~~~~~~~~~~~~
- WTmod is a BASIC library which provides a function to help you start
- writing WT modules.
-
- The file "base!" is the main file.
-
- The rest of the text files into this directory contain templates which
- you can include in 'base!' in order to start writing your code without
- caring about the module header at all.
-
- NOTES: To use WTmod running !WT application is enough.
-
- To speed up things a bit you can use: /WT3rdParty:!GLib
- which will copy WTmod into MEM: or RAM: if any of them
- will be present.
-
-
-
- __________________________________________________
- (the following information might be seldom needed)
-
- Variables set by WTmod
- ~~~~~~~~~~~~~~~~~~~~~~
- Variable name Short dersciption
- ---------------------------- ------------------------------------------------
- WT_Module_Start% the module start
- WT_Module_Header_End% (or the header size)
- WT_Module_End% (or the module size)
- WT_ModuleHelp% points to the full name of the module
-
-
- Variables set by you and handled by WTmod
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- Variable name Short dersciption
- ---------------------------- ------------------------------------------------
- WT_WTService_Handler% WTService handler
- WT_SystemService_Handler% SystemService handler
- WT_BroadcastMsg_Handler% BroadcastMsg handler
- WT_AutomaticVectors% WT vectors
- WT_PrivateMsg_Handler% PrivateMsg handler
- WT_PrivateMsg_DecodingTable% decoding table for the Private messages
- WT_DLR_Handler% DLR handler
- WT_DLR_DecodingTable% decoding table for the DLRs
- WT_DLR_BranchTable% branch table for the DLRs
- WT_DLR_BranchTable_End% the end of the branch table for the DLRs
- WT_CLI_Definitions% command line command definition table
-
-