WINMAIN.C
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:3k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
  2. // ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
  3. // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  4. // PARTICULAR PURPOSE.
  5. //
  6. // Copyright (C) 1993-1997  Microsoft Corporation.  All Rights Reserved.
  7. //
  8. //  MODULE:   winmain.c
  9. //
  10. //  PURPOSE:   Calls initialization functions and processes the message loop
  11. //
  12. //
  13. //  PLATFORMS: Windows 95, Windows NT
  14. //
  15. //  FUNCTIONS:
  16. //    WinMain() - calls initialization functions, processes message loop
  17. //
  18. //  COMMENTS:
  19. //
  20. //
  21. #include <windows.h>            // required for all Windows applications
  22. #include <wsipx.h>              // IPX Socket defs
  23. #include "globals.h"            // prototypes specific to this application
  24. //
  25. //  FUNCTION: WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
  26. //
  27. //  PURPOSE: calls initialization function, processes message loop
  28. //
  29. //  PARAMETERS:
  30. //
  31. //    hInstance - The handle to the instance of this application that
  32. //          is currently being executed.
  33. //
  34. //    hPrevInstance - This parameter is always NULL in Win32
  35. //          applications.
  36. //
  37. //    lpCmdLine - A pointer to a null terminated string specifying the
  38. //          command line of the application.
  39. //
  40. //    nCmdShow - Specifies how the main window is to be diplayed.
  41. //
  42. //  RETURN VALUE:
  43. //    If the function terminates before entering the message loop,
  44. //    return FALSE.
  45. //    Otherwise, return the WPARAM value sent by the WM_QUIT message.
  46. //
  47. //
  48. //  COMMENTS:
  49. //
  50. //    Windows recognizes this function by name as the initial entry point
  51. //    for the program.  This function calls the initialization routine
  52. //    It then executes a message retrieval and dispatch loop that is the
  53. //    top-level control structure for the remainder of execution.  The
  54. //    loop is terminated when a WM_QUIT  message is received, at which
  55. //    time this function exits the application instance by returning the
  56. //    value passed by PostQuitMessage().
  57. //
  58. //    If this function must abort before entering the message loop, it
  59. //    returns the conventional value NULL.
  60. //
  61. int APIENTRY WinMain(HINSTANCE hInstance,
  62.                      HINSTANCE hPrevInstance, 
  63.                      LPSTR     lpCmdLine, 
  64.                      int       nCmdShow)
  65. {
  66.     MSG msg;
  67.     HANDLE hAccelTable;
  68.     // Initialize application by setting up the main window.
  69.     if (!InitApplication(hInstance, nCmdShow))
  70.     {
  71.         return FALSE;           // Exits if unable to initialize
  72.     }
  73.     hAccelTable = LoadAccelerators(hInstance, szAppName);
  74.     // Acquire and dispatch messages until a WM_QUIT message is received.
  75.     while (GetMessage(&msg, NULL, 0, 0))
  76.     {
  77.         if (!TranslateAccelerator(msg.hwnd, hAccelTable, &msg))
  78.         {
  79.             TranslateMessage(&msg);  // Translates virtual key codes
  80.             DispatchMessage(&msg);   // Dispatches message to window
  81.         }
  82.     }
  83.     return msg.wParam;  // Returns the value from PostQuitMessage
  84. }