home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / hensa / programming / wackytalky_2 / Developer / Examples / 1st_Look / WithLIB / !ReadMe < prev    next >
Encoding:
Text File  |  1996-03-25  |  1.9 KB  |  52 lines

  1. Help on writing WT modules using the WTmod library
  2. ==================================================
  3.  
  4. Introduction
  5. ~~~~~~~~~~~~
  6. WTmod is a BASIC library which provides a function to help you start
  7. writing WT modules.
  8.  
  9. The file "base!" is the main file.
  10.  
  11. The rest of the text files into this directory contain templates which
  12. you can include in 'base!' in order to start writing your code without
  13. caring about the module header at all.
  14.  
  15. NOTES: To use WTmod running !WT application is enough.
  16.  
  17.        To speed up things a bit you can use: /WT3rdParty:!GLib
  18.        which will copy WTmod into MEM: or RAM: if any of them
  19.        will be present.
  20.  
  21.  
  22.  
  23. __________________________________________________
  24. (the following information might be seldom needed)
  25.  
  26. Variables set by WTmod
  27. ~~~~~~~~~~~~~~~~~~~~~~
  28. Variable name                 Short dersciption
  29. ----------------------------  ------------------------------------------------
  30. WT_Module_Start%              the module start
  31. WT_Module_Header_End%         (or the header size)
  32. WT_Module_End%                (or the module size)
  33. WT_ModuleHelp%                points to the full name of the module
  34.  
  35.  
  36. Variables set by you and handled by WTmod
  37. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  38. Variable name                 Short dersciption
  39. ----------------------------  ------------------------------------------------
  40. WT_WTService_Handler%         WTService handler
  41. WT_SystemService_Handler%     SystemService handler
  42. WT_BroadcastMsg_Handler%      BroadcastMsg handler
  43. WT_AutomaticVectors%          WT vectors
  44. WT_PrivateMsg_Handler%        PrivateMsg handler
  45. WT_PrivateMsg_DecodingTable%  decoding table for the Private messages
  46. WT_DLR_Handler%               DLR handler
  47. WT_DLR_DecodingTable%         decoding table for the DLRs
  48. WT_DLR_BranchTable%           branch table for the DLRs
  49. WT_DLR_BranchTable_End%       the end of the branch table for the DLRs
  50. WT_CLI_Definitions%           command line command definition table
  51.  
  52.