--- mstools/samples/gdidemo/init.c 2018/08/09 18:20:01 1.1.1.1 +++ mstools/samples/gdidemo/init.c 2018/08/09 18:23:48 1.1.1.2 @@ -1,3 +1,14 @@ + +/******************************************************************************\ +* This is a part of the Microsoft Source Code Samples. +* Copyright (C) 1993 Microsoft Corporation. +* All rights reserved. +* This source code is only intended as a supplement to +* Microsoft Development Tools and/or WinHelp documentation. +* See these sources for detailed information regarding the +* Microsoft samples programs. +\******************************************************************************/ + /*---------------------------------------------------------------------------*\ | INITIALIZATION MODULE | This module contains startup-routines for the creation of windows for this @@ -8,11 +19,6 @@ | CreateAppWindow | CreateMDIClientWindow | -| -| segment: _INIT (DOS16) -| created: 31-Oct-90 -| history: 31-Oct-90 created. -| \*---------------------------------------------------------------------------*/ #include @@ -26,10 +32,6 @@ /*---------------------------------------------------------------------------*\ | REGISTER APPLICATION CLASS | This routine registers all classes necessary for the application. -| -| created: 31-Oct-90 -| history: 31-Oct-90 created. -| \*---------------------------------------------------------------------------*/ BOOL FAR RegisterAppClass(HANDLE hInstance) { @@ -157,10 +159,6 @@ BOOL FAR RegisterAppClass(HANDLE hInstan | UNREGISTER APPLICATION CLASS | This routine unregisters all classes registered for the application. | It is typically called upon termination of the application. -| -| created: 31-Oct-90 -| history: 31-Oct-90 created. -| \*---------------------------------------------------------------------------*/ VOID FAR UnregisterAppClass(HANDLE hInstance) { @@ -178,10 +176,6 @@ VOID FAR UnregisterAppClass(HANDLE hInst /*---------------------------------------------------------------------------*\ | CREATE APPLICATION WINDOW | This routine creates the main top-level window. -| -| created: 31-Oct-90 -| history: 31-Oct-90 created. -| \*---------------------------------------------------------------------------*/ HWND FAR CreateAppWindow(HANDLE hInstance) { @@ -199,10 +193,6 @@ HWND FAR CreateAppWindow(HANDLE hInstanc | This routine creates the client window which handles the MDI windows. | The window will eventually be size to fit into the frame-window's client | area. -| -| created: 31-Oct-90 -| history: 31-Oct-90 created. -| \*---------------------------------------------------------------------------*/ HWND FAR CreateMDIClientWindow(HWND hWndFrame) {