Changeset 10 for trunk/txlib/include/txlib.h
- Timestamp:
- 02/22/06 13:03:35 (3 years ago)
- Files:
-
- 1 modified
-
trunk/txlib/include/txlib.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/txlib/include/txlib.h
r7 r10 550 550 ); 551 551 552 // Substitute $n parameters in a string by supplied values; n = 0..9 (maximum) 553 ULONG txsSubstituteParams // RET nr of substitutions 554 ( 555 char *string, // IN base string 556 char **values, // IN values to substitute 557 int count, // IN number of values 558 int size, // IN size of output buffer 559 char *result // OUT substituted (MAXLIN) 560 ); 561 552 562 #if defined (DEV32) 553 563 … … 805 815 ); 806 816 807 #define TXFSV_HD 0 808 #define TXFSV_FLOP 1 809 #define TXFSV_LAN 2 810 #define TXFSV_CD 4 811 #define TXFSV_ALL 7 817 #define TXFSV_HD 0x0000 818 #define TXFSV_FLOP 0x0001 819 #define TXFSV_LAN 0x0002 820 #define TXFSV_CD 0x0004 821 #define TXFSV_ALL 0x0007 822 #define TXFSV_REM 0x0100 // removables only 812 823 // Build string with present volumes 813 824 int TxFsVolumes // RET nr of drives listed … … 847 858 ); 848 859 860 // Eject a removable medium specified by driveletter 861 ULONG TxFsEjectRemovable 862 ( 863 char *drive // IN Driveletter to eject 864 ); 865 866 // Determine if a driveletter represents a removable medium/device 867 BOOL TxFsIsRemovable // RET drive is removable 868 ( 869 char *drive // IN Driveletter to test 870 ); 849 871 850 872 // Determine free and total-available space (sectors) on specified drive