Changeset 11 for trunk/txlib/include/txlib.h
- Timestamp:
- 05/09/06 22:21:53 (3 years ago)
- Files:
-
- 1 modified
-
trunk/txlib/include/txlib.h (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/txlib/include/txlib.h
r10 r11 1048 1048 #define TXA_O_LIST 139 // predefined 'list' 1049 1049 #define TXA_O_SCREEN 140 // predefined 'screen' 1050 #define TXA_O_TEST1 141 1051 #define TXA_O_TEST2 142 1052 #define TXA_O_TEST3 143 // predefined 'test1' .. 5 1053 #define TXA_O_TEST4 144 1054 #define TXA_O_TEST5 145 1055 #define TXA_O_APP0 146 1056 #define TXA_O_APP1 147 // application defined 1057 #define TXA_O_APP2 148 // options/switches 1058 #define TXA_O_APP3 149 1059 #define TXA_O_APP4 150 1060 #define TXA_O_APP5 151 1061 1062 #define TXA_LSIZE 29 // number of long options 1063 #define TXA_SIZE 120 // total number of options 1050 #define TXA_O_LABEL 141 // predefined 'label' 1051 #define TXA_O_TEST1 142 1052 #define TXA_O_TEST2 143 1053 #define TXA_O_TEST3 144 // predefined 'test1' .. 5 1054 #define TXA_O_TEST4 145 1055 #define TXA_O_TEST5 146 1056 #define TXA_O_APP0 147 1057 #define TXA_O_APP1 148 // application defined 1058 #define TXA_O_APP2 149 // options/switches 1059 #define TXA_O_APP3 150 1060 #define TXA_O_APP4 151 1061 #define TXA_O_APP5 152 1062 1063 #define TXA_LSIZE 30 // number of long options 1064 #define TXA_SIZE 121 // total number of options 1064 1065 1065 1066 #define TXA_O_LEN 31 // maximum length long name … … 1343 1344 1344 1345 //- definitions for flags that apply to the whole list (list->flags) 1346 1345 1347 #define TXSL_MULTI_QUICK 0x00000001 // use itemtext for quickselect 1346 1348 // not just the item-index char 1349 // (used in directory listing) 1350 1351 #define TXSL_ITEM_DELETE 0x00000010 // allow item delete (Ctrl-D) 1352 // del from list, send Ctrl-D 1353 // to the owner as well ... 1347 1354 1348 1355 //- definitions for Alloc-Status of selist objects (Static/Shared or Dynamic) … … 1548 1555 ); 1549 1556 1557 // Delete current item from the list (like Ctrl-D on a history :-) 1558 ULONG TxSelDeleteCurrent // RET resulting selected 1559 ( 1560 TXSELIST *list // INOUT selection list 1561 ); 1562 1550 1563 // Create static selist from existing Txt list 1551 1564 ULONG TxSelistFromTxt // RET result … … 1751 1764 char *text, // IN leading string 1752 1765 LLONG data, // IN size data 1766 char *trail // IN trailing text 1767 ); 1768 1769 // Format time in seconds in an HHH:MM:SS string (Elapsed/ETA) 1770 char *txStrSec2hms // RET resulting string 1771 ( 1772 char *str, // OUT resulting string 1773 char *text, // IN leading string 1774 ULONG sec, // IN seconds 1753 1775 char *trail // IN trailing text 1754 1776 );