Show
Ignore:
Timestamp:
02/22/06 13:03:35 (3 years ago)
Author:
jvw
Message:

Fix FileDialog? trap, other minor updates

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/txlib/include/txlib.h

    r7 r10  
    550550); 
    551551 
     552// Substitute $n parameters in a string by supplied values; n = 0..9 (maximum) 
     553ULONG 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 
    552562#if   defined (DEV32) 
    553563 
     
    805815); 
    806816 
    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 
    812823// Build string with present volumes 
    813824int TxFsVolumes                                 // RET   nr of drives listed 
     
    847858); 
    848859 
     860// Eject a removable medium specified by driveletter 
     861ULONG TxFsEjectRemovable 
     862( 
     863   char               *drive                    // IN    Driveletter to eject 
     864); 
     865 
     866// Determine if a driveletter represents a removable medium/device 
     867BOOL TxFsIsRemovable                            // RET   drive is removable 
     868( 
     869   char               *drive                    // IN    Driveletter to test 
     870); 
    849871 
    850872// Determine free and total-available space (sectors) on specified drive