Changeset 526 in xtideuniversalbios for trunk/Serial_Server/win32/Win32.cpp


Ignore:
Timestamp:
Mar 15, 2013, 1:38:58 AM (11 years ago)
Author:
krille_n_@…
google:author:
krille_n_@hotmail.com
Message:

Changes:

  • Update of the copyright notices to include the year 2013.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Serial_Server/win32/Win32.cpp

    r488 r526  
    77// This file contains the entry point for the Win32 version of the server.
    88// 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-2012 by 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.
    1414//
    1515// This program is free software; you can redistribute it and/or modify
     
    1717// the Free Software Foundation; either version 2 of the License, or
    1818// (at your option) any later version.
    19 // 
     19//
    2020// This program is distributed in the hope that it will be useful,
    2121// but WITHOUT ANY WARRANTY; without even the implied warranty of
    2222// 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.
    2424// Visit http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
    2525//
     
    3737char *bannerStrings[] = {
    3838    "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",
    4040    "Released under GNU GPL v2, with ABSOLUTELY NO WARRANTY",
    4141    ROM_VERSION_STRING,
    42     "", 
     42    "",
    4343    NULL };
    4444
     
    5858    "",
    5959    "  -n [megabytes]      Create new disk with given size or use -g geometry",
    60     "                      Maximum size is " USAGE_MAXSECTORS, 
     60    "                      Maximum size is " USAGE_MAXSECTORS,
    6161    "                      Floppy images can also be created, such as \"360K\"",
    6262    "                      (default is a 32 MB disk, with CHS geometry 65:16:63)",
     
    152152            char *c;
    153153            unsigned long a;
    154             for( c = &argv[t][1]; *c && !isdigit( *c ); c++ ) 
     154            for( c = &argv[t][1]; *c && !isdigit( *c ); c++ )
    155155                ;
    156156            a = atol(c);
     
    190190                if( !baudRate )
    191191                    baudRate = baudRateMatchString( "115200" );
    192                 break;           
     192                break;
    193193            case 'g': case 'G':
    194194                if( next && atol(next) != 0 )
Note: See TracChangeset for help on using the changeset viewer.