home *** CD-ROM | disk | FTP | other *** search
-
- // ---------------------------------------------------------------------
- //
- // PROTOTYP.HP - QuickTime for Windows Sample Decompressor
- //
- // Version 1.1
- //
- // (c) 1988-1993 Apple Computer, Inc. All Rights Reserved.
- //
- // ---------------------------------------------------------------------
-
-
- #if !defined __PROTOTYP_HP
- #define __PROTOTYP_HP
-
- // Compiler header files
- #include <stdlib.h>
-
- // Application header files
- #include <qtcodec.h>
-
- // Data definitions
-
- // C++ Functions
- HINSTANCE GetInstOfThisMod() ;
-
- // Assembler functions
- extern "C" {
- VOID PASCAL DecompressRaw16( LPVOID lpCompressed
- , LPVOID lpUncompressed
- , DWORD dwBufferSize
- ) ;
- } // extern "C"
-
- #endif
-