
// ---------------------------------------------------------------------
//
// LibMain.c - Picture Viewer - QuickTime for Windows
//
//             Version 1.0
//
//             (c) 1988-1992 Apple Computer, Inc. All Rights Reserved.
//
// ---------------------------------------------------------------------


// Includes
// --------
#include <Windows.H> // Required by Windows


// Function: LibMain - Generic Windows "LibMain" Routine
// --------------------------------------------------------------------
// Parameters: As required by Microsoft Windows
//
// Returns:    As required by Microsoft Windows
// --------------------------------------------------------------------
int CALLBACK LibMain
  (HANDLE hInstance, WORD wDataSeg, WORD wHeapSize, LPSTR lpszCmdLine)

{
    if (wHeapSize > 0)
        UnlockData (0);

    // Return to Windows

    return 1;

}
