Changeset 526 in xtideuniversalbios for trunk/Serial_Server/win32
- Timestamp:
- Mar 15, 2013, 1:38:58 AM (12 years ago)
- google:author:
- krille_n_@hotmail.com
- Location:
- trunk/Serial_Server/win32
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Serial_Server/win32/Win32.cpp
r488 r526 7 7 // This file contains the entry point for the Win32 version of the server. 8 8 // It also handles log reporting, timers, and command line parameter parsing. 9 // 10 11 // 12 // XTIDE Universal BIOS and Associated Tools 13 // Copyright (C) 2009-2010 by Tomi Tilli, 2011-201 2by XTIDE Universal BIOS Team.9 // 10 11 // 12 // XTIDE Universal BIOS and Associated Tools 13 // Copyright (C) 2009-2010 by Tomi Tilli, 2011-2013 by XTIDE Universal BIOS Team. 14 14 // 15 15 // This program is free software; you can redistribute it and/or modify … … 17 17 // the Free Software Foundation; either version 2 of the License, or 18 18 // (at your option) any later version. 19 // 19 // 20 20 // This program is distributed in the hope that it will be useful, 21 21 // but WITHOUT ANY WARRANTY; without even the implied warranty of 22 22 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 23 // GNU General Public License for more details. 23 // GNU General Public License for more details. 24 24 // Visit http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 25 25 // … … 37 37 char *bannerStrings[] = { 38 38 "SerDrive - XTIDE Universal BIOS Serial Drive Server", 39 "Copyright (C) 2012 by XTIDE Universal BIOS Team",39 "Copyright (C) 2012-2013 by XTIDE Universal BIOS Team", 40 40 "Released under GNU GPL v2, with ABSOLUTELY NO WARRANTY", 41 41 ROM_VERSION_STRING, 42 "", 42 "", 43 43 NULL }; 44 44 … … 58 58 "", 59 59 " -n [megabytes] Create new disk with given size or use -g geometry", 60 " Maximum size is " USAGE_MAXSECTORS, 60 " Maximum size is " USAGE_MAXSECTORS, 61 61 " Floppy images can also be created, such as \"360K\"", 62 62 " (default is a 32 MB disk, with CHS geometry 65:16:63)", … … 152 152 char *c; 153 153 unsigned long a; 154 for( c = &argv[t][1]; *c && !isdigit( *c ); c++ ) 154 for( c = &argv[t][1]; *c && !isdigit( *c ); c++ ) 155 155 ; 156 156 a = atol(c); … … 190 190 if( !baudRate ) 191 191 baudRate = baudRateMatchString( "115200" ); 192 break; 192 break; 193 193 case 'g': case 'G': 194 194 if( next && atol(next) != 0 ) -
trunk/Serial_Server/win32/Win32File.h
r505 r526 13 13 // 14 14 // XTIDE Universal BIOS and Associated Tools 15 // Copyright (C) 2009-2010 by Tomi Tilli, 2011-201 2by XTIDE Universal BIOS Team.15 // Copyright (C) 2009-2010 by Tomi Tilli, 2011-2013 by XTIDE Universal BIOS Team. 16 16 // 17 17 // This program is free software; you can redistribute it and/or modify -
trunk/Serial_Server/win32/Win32Serial.h
r376 r526 7 7 8 8 // 9 // XTIDE Universal BIOS and Associated Tools 10 // Copyright (C) 2009-2010 by Tomi Tilli, 2011-201 2by XTIDE Universal BIOS Team.9 // XTIDE Universal BIOS and Associated Tools 10 // Copyright (C) 2009-2010 by Tomi Tilli, 2011-2013 by XTIDE Universal BIOS Team. 11 11 // 12 12 // This program is free software; you can redistribute it and/or modify … … 14 14 // the Free Software Foundation; either version 2 of the License, or 15 15 // (at your option) any later version. 16 // 16 // 17 17 // This program is distributed in the hope that it will be useful, 18 18 // but WITHOUT ANY WARRANTY; without even the implied warranty of 19 19 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 20 // GNU General Public License for more details. 20 // GNU General Public License for more details. 21 21 // Visit http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 22 22 //
Note:
See TracChangeset
for help on using the changeset viewer.