Ignore:
Timestamp:
Jan 29, 2010, 1:51:25 PM (16 years ago)
Author:
Silvan Scherrer
Message:

added all remaining changes from 1.5.0 client

Location:
branches/client-1.6/src/rc
Files:
1 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • branches/client-1.6/src/rc/rc.dlg

    r190 r401  
    3030                        WS_VISIBLE
    3131        ENTRYFIELD      "", ENT_MASTER, 147, 33, 90, 8, ES_MARGIN
    32         LTEXT           "Memory buffer:", LBL_MEMLEN, 253, 135, 10, 10,
    33                         DT_BOTTOM | NOT WS_VISIBLE
    34         CONTROL         "", CMB_MEMLEN, 251, 98, 13, 11, WC_COMBOBOX,
    35                         CBS_DROPDOWNLIST | WS_GROUP | WS_TABSTOP
    36         LTEXT           "Logfile:", LBL_LOGFILE, 251, 124, 11, 10, DT_BOTTOM |
    37                         NOT WS_VISIBLE
    38         ENTRYFIELD      "", ENT_LOGFILE, 254, 112, 7, 8, ES_MARGIN | NOT
    39                         WS_VISIBLE
    40         LTEXT           "Loglevel:", LBL_LOGLEVEL, 251, 131, 13, 10,
    41                         DT_BOTTOM | NOT WS_VISIBLE
    42         SPINBUTTON      CMB_LOGLEVEL, 252, 12, 8, 35, SPBS_NUMERICONLY |
    43                         SPBS_MASTER | SPBS_JUSTRIGHT | WS_GROUP | NOT
    44                         WS_VISIBLE
    4532        LTEXT           "Supports EA", LBL_EASUPPORT, 195, 104, 52, 10,
    4633                        DT_WORDBREAK
  • branches/client-1.6/src/rc/rc.h

    r186 r401  
    1515#define ENT_MASTER                  1012
    1616#define CMB_MASTER                  1013
    17 #define LBL_MEMLEN                  1014
    18 #define CMB_MEMLEN                  1015
    1917#define LBL_PROP                    1016
    20 #define LBL_LOGFILE                 1017
    21 #define ENT_LOGFILE                 1018
    22 #define LBL_LOGLEVEL                1019
    23 #define CMB_LOGLEVEL                1020
    2418#define LBL_EASUPPORT               1021
    2519#define CHK_EASUPPORT               1022
  • branches/client-1.6/src/rc/rc.rc

    r189 r401  
    3434   "Help for command line utility:\r\n"
    3535   "\r\n"
    36    "nd mount smbfs s:\\mountpoint ;workgroup=...;server=...;share=...;user=...;password=...;master=...;mastertype=...;memlen=...;logfile=...;loglevel=...;easupport=...\r\n"
     36   "nd mount smbfs s:\\mountpoint ;workgroup=...;server=...;share=...;user=...;password=...;master=...;mastertype=...;easupport=...\r\n"
    3737   "\r\n"
    3838   "    workgroup - name of workgroup\r\n"
     
    4343   "    master - name of master server or master workgroup\r\n"
    4444   "    mastertype - 0 if 'master' is the name of master server, 1 if 'master' is the name of master workgroup\r\n"
    45    "    memlen - the size of shared memory buffer allocated for every NDFS connection in size of 64k blocks\r\n"
    46    "    logfile - file to log records from smbcd.exe. Used only if smbcd.exe is run by ndpsmb.dll plugin, not manually\r\n"
    47    "    loglevel - level of logging (0-9) for smbcd.exe. Used only if smbcd.exe is run by ndpsmb.dll plugin, not manually\r\n"
    4845   "    easupport - 0 to not support EA, 1 to support\r\n"
    4946   "\r\n"
     
    103100RCDATA (DLG_ID + 7)
    104101{
    105     CMB_MEMLEN, PARMTYPE_INT, 1L, 10L, "memlen", "%d", 2L,
    106     "64k",
    107     "128k",
    108     "192k",
    109     "256k",
    110     "320k",
    111     "384k",
    112     "448k",
    113     "512k",
    114     "576k",
    115     "640k"
    116 }
    117 
    118 RCDATA (DLG_ID + 8)
    119 {
    120     ENT_LOGFILE, PARMTYPE_STRING, 1L, 256L, "logfile", "%s", ""
    121 }
    122 
    123 RCDATA (DLG_ID + 9)
    124 {
    125     CMB_LOGLEVEL, PARMTYPE_INT, 0L, 9L, "loglevel", "%d", 0L,
    126     "0",
    127     "1",
    128     "2",
    129     "3",
    130     "4",
    131     "5",
    132     "6",
    133     "7",
    134     "8",
    135     "9"
    136 }
    137 
    138 RCDATA (DLG_ID + 10)
    139 {
    140102    CHK_EASUPPORT, PARMTYPE_INT, 0L, 1L, "easupport", "%d", 1L,
    141103    "0",
     
    143105}
    144106   
    145 RCDATA (DLG_ID + 11)
     107RCDATA (DLG_ID + 8)
    146108{
    147109    ENT_SPASS, PARMTYPE_STRING, 1L, 255L, "spassword", "%s", ""
    148110}
    149111
    150 RCDATA (DLG_ID + 12)
     112RCDATA (DLG_ID + 9)
    151113{
    152114    1
Note: See TracChangeset for help on using the changeset viewer.