home *** CD-ROM | disk | FTP | other *** search
/ Programming Win32 Under the API / ProgrammingWin32UnderTheApiPatVillani.iso / Chapter9 / cmd32 / Copy.c < prev    next >
C/C++ Source or Header  |  2000-05-17  |  1KB  |  53 lines

  1. /****************************************************************/
  2. /*                                */
  3. /*                  copy.c                */
  4. /*                                */
  5. /*                Copyright (c) 2000            */
  6. /*            Pasquale J. Villani            */
  7. /*            All Rights Reserved            */
  8. /*                                */
  9. /* This file is part of CMD32.                    */
  10. /*                                */
  11. /* CMD32 is free software; you can redistribute it and/or    */
  12. /* modify it under the terms of the GNU General Public License    */
  13. /* as published by the Free Software Foundation; either version    */
  14. /* 2, or (at your option) any later version.            */
  15. /*                                */
  16. /* CMD32 is distributed in the hope that it will be useful, but    */
  17. /* WITHOUT ANY WARRANTY; without even the implied warranty of    */
  18. /* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See    */
  19. /* the GNU General Public License for more details.        */
  20. /*                                */
  21. /* You should have received a copy of the GNU General Public    */
  22. /* License along with CMD32; see the file COPYING.  If not,    */
  23. /* write to the Free Software Foundation, 675 Mass Ave,        */
  24. /* Cambridge, MA 02139, USA.                    */
  25. /****************************************************************/
  26.  
  27.  
  28. /* $Logfile$ */
  29.  
  30. /* $Log$ 
  31.  * $EndLog$ */
  32.  
  33. #include <windows.h>
  34. #include "globals.h"
  35. #include "proto.h"
  36.  
  37. #ifdef VERSION_STRINGS
  38. static BYTE *RcsId = "$Header$";
  39. #endif
  40.  
  41.  
  42. BOOL copy(INT argc, BYTE *argv[])
  43. {
  44.     if(argc != 3)
  45.     {
  46.         printf("syntax: copy <source> <destination>\n");
  47.         return FALSE;
  48.     }
  49.  
  50.     return CopyFile(argv[1], argv[2], FALSE);
  51. }
  52.  
  53.