home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1996 December
/
PCWKCD1296.iso
/
wtest
/
macromed
/
action
/
drivers
/
qtw111
/
pviewer
/
libmain.c
< prev
next >
Wrap
C/C++ Source or Header
|
1994-10-29
|
904b
|
36 lines
// ---------------------------------------------------------------------
//
// 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;
}