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

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