winmain.cpp
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:3k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: winmain.cpp,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/28 19:15:48  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.3
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: winmain.cpp,v 1000.0 2003/10/28 19:15:48 gouriano Exp $
  10.  * ===========================================================================
  11.  *
  12.  *                            PUBLIC DOMAIN NOTICE
  13.  *               National Center for Biotechnology Information
  14.  *
  15.  *  This software/database is a "United States Government Work" under the
  16.  *  terms of the United States Copyright Act.  It was written as part of
  17.  *  the author's official duties as a United States Government employee and
  18.  *  thus cannot be copyrighted.  This software/database is freely available
  19.  *  to the public for use. The National Library of Medicine and the U.S.
  20.  *  Government have not placed any restriction on its use or reproduction.
  21.  *
  22.  *  Although all reasonable efforts have been taken to ensure the accuracy
  23.  *  and reliability of the software and data, the NLM and the U.S.
  24.  *  Government do not and cannot warrant the performance or results that
  25.  *  may be obtained by using this software or data. The NLM and the U.S.
  26.  *  Government disclaim all warranties, express or implied, including
  27.  *  warranties of performance, merchantability or fitness for any particular
  28.  *  purpose.
  29.  *
  30.  *  Please cite the author in any work or product based on this material.
  31.  *
  32.  * ===========================================================================
  33.  *
  34.  * Authors:  Mike DiCuccio
  35.  *
  36.  * File Description:
  37.  *    WinMain() - necessary to launch a Win32 app in as a non-console app
  38.  */
  39. #error "Please direct your project files to use compilers/msvc_prj/gui/winmain.cpp instead of this file"
  40. //
  41. // WinMain provided here for Windows compatibility
  42. // This allows us to run our application without a console
  43. //
  44. #include <windows.h>
  45. #include <stdio.h>
  46. #include <stdlib.h>
  47. #ifdef _DEBUG
  48. #  include <crtdbg.h>
  49. #endif
  50. extern int main(int, char**);
  51. int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
  52.                    LPSTR lpCmdLine, int nCmdShow)
  53. {
  54. #ifdef _DEBUG
  55.     //
  56.     // In debug mode, a console will be created to display stdout/stderr
  57.     //
  58.     AllocConsole();
  59.     freopen("conin$",  "r", stdin);
  60.     freopen("conout$", "w", stdout);
  61.     freopen("conout$", "w", stderr);
  62.     int ret_val = main(__argc, __argv);
  63.     fclose(stdin);
  64.     fclose(stdout);
  65.     fclose(stderr);
  66.     return ret_val;
  67. #else
  68.     return main(__argc, __argv);
  69. #endif
  70. }
  71. /*
  72.  * ===========================================================================
  73.  * $Log: winmain.cpp,v $
  74.  * Revision 1000.0  2003/10/28 19:15:48  gouriano
  75.  * PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.3
  76.  *
  77.  * Revision 1.3  2003/08/25 14:17:10  dicuccio
  78.  * General clean-up.  Fixed dependencies and references to all demo projects.
  79.  *
  80.  * Revision 1.2  2003/04/24 13:39:53  dicuccio
  81.  * COnditionally include <crtdbg.h> if _DEBUG is defined
  82.  *
  83.  * Revision 1.1  2003/01/09 21:01:30  dicuccio
  84.  * Moved WinMain into its own .cpp file.  Added winmain.cpp to build
  85.  *
  86.  * ===========================================================================
  87.  */