INIT.C
上传用户:woweijixie
上传日期:2018-12-11
资源大小:131k
文件大小:4k
源码类别:

TAPI编程

开发平台:

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) 1995  Microsoft Corporation.  All Rights Reserved.
  7. //
  8. //  MODULE:   init.c
  9. //
  10. //  PURPOSE:   Performs application and instance specific initialization.
  11. //
  12. //  FUNCTIONS:
  13. //    InitApplication() - Initializes window data and registers window.
  14. //
  15. //  COMMENTS:
  16. //
  17. #include <windows.h>            // required for all Windows applications
  18. #include "globals.h"            // prototypes specific to this application
  19. HINSTANCE hInst;                // current instance
  20. char szAppName[9];              // The name of this application
  21. char szTitle[40];               // The title bar text
  22. //
  23. //  FUNCTION: InitApplication(HINSTANCE, int)
  24. //
  25. //  PURPOSE: Initializes window data and registers window class.
  26. //
  27. //  PARAMETERS:
  28. //    hInstance - The handle to the instance of this application that
  29. //                is currently being executed.
  30. //    nCmdShow  - Specifies how the main window is to be displayed.
  31. //
  32. //  RETURN VALUE:
  33. //    TRUE  - Success
  34. //    FALSE - Initialization failed
  35. //
  36. //  COMMENTS:
  37. //
  38. //    This function is called at application initialization time.  It
  39. //    performs initialization tasks for the current application instance.
  40. //    Unlike Win16, in Win32, each instance of an application must register
  41. //    window classes.
  42. //
  43. //    In this function, we initialize a window class by filling out a data
  44. //    structure of type WNDCLASS and calling the Windows RegisterClass()
  45. //    function.  Then we create the main window and show it.
  46. //
  47. //
  48. BOOL InitApplication(HINSTANCE hInstance, int nCmdShow)
  49. {
  50.     WNDCLASS  wc;
  51.     HWND      hwnd; // Main window handle.
  52.     // Load the application name and description strings.
  53.     LoadString(hInstance, IDS_APPNAME, szAppName, sizeof(szAppName));
  54.     LoadString(hInstance, IDS_DESCRIPTION, szTitle, sizeof(szTitle));
  55.     // Save the instance handle in static variable, which will be used in
  56.     // many subsequence calls from this application to Windows.
  57.     hInst = hInstance; // Store instance handle in our global variable
  58.     // Fill in window class structure with parameters that describe the
  59.     // main window.
  60.     wc.style         = CS_HREDRAW | CS_VREDRAW; // Class style(s).
  61.     wc.lpfnWndProc   = (WNDPROC)WndProc;        // Window Procedure
  62.     wc.cbClsExtra    = 0;                       // No per-class extra data.
  63.     wc.cbWndExtra    = 0;                       // No per-window extra data.
  64.     wc.hInstance     = hInstance;               // Owner of this class
  65.     wc.hIcon         = LoadIcon (hInstance, szAppName); // Icon name from .RC
  66.     wc.hCursor       = LoadCursor(NULL, IDC_ARROW); // Cursor
  67.     wc.hbrBackground = CreateSolidBrush(GetSysColor(COLOR_3DFACE));
  68.     wc.lpszMenuName  = szAppName;               // Menu name from .RC
  69.     wc.lpszClassName = szAppName;               // Name to register as
  70.     // Register the window class and return FALSE if unsuccesful.
  71.     if (!RegisterClass(&wc))
  72.     {
  73.         return FALSE;
  74.     }
  75.     // Create a main window for this application instance.
  76.     hwnd = CreateWindow(szAppName,           // See RegisterClass() call
  77.                         szTitle,             // Text for window title bar
  78.                         WS_OVERLAPPEDWINDOW, // Window style
  79.                         CW_USEDEFAULT, 0,    // Use default positioning
  80.                         CW_USEDEFAULT, 0,    // Use default size
  81.                         NULL,                // Overlapped has no parent
  82.                         NULL,                // Use the window class menu
  83.                         hInstance,           // This instance owns this window
  84.                         NULL                 // Don't need data in WM_CREATE
  85.     );
  86.     // If window could not be created, return "failure"
  87.     if (!hwnd)
  88.         return FALSE;
  89.     // Make the window visible; update its client area; and return "success"
  90.     ShowWindow(hwnd, nCmdShow);  // Show the window
  91.     UpdateWindow(hwnd);          // Sends WM_PAINT message
  92.     return TRUE;                 // We succeeded...
  93. }