The 3 DLLs are to handle block commenting directly from the editor for
assembler, basic and C. They are set up from the INIeditor in the same way
as any other tool.

All three are designed to toggle a block of code as either commented or
not.

Commented text looks like as follows,

 ;     mov esi, src
 ;     mov edi, dst
 ;     mov ecx, ln
 ;     rep movsb

If you reselect the same block of code and run the dll from the menu again,
the code will be uncommented.

    mov esi, src
    mov edi, dst
    mov ecx, ln
    rep movsb

The three DLLs differ only in so far as they use the comment notation for
three different languages, assembler, basic and C.

The comments should not be modified manually as it will prevent the comment
removal from working properly.