home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Multimedia Jumpstart 1.1a / CD_ROM.BIN / develpmt / source / hotspot / viewer / avihapp.h < prev    next >
Encoding:
Text File  |  1993-10-05  |  1.1 KB  |  29 lines

  1. /**************************************************************************
  2.  *
  3.  *  THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  4.  *  KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  5.  *  IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR
  6.  *  PURPOSE.
  7.  *
  8.  *  Copyright (c) 1993  Microsoft Corporation.  All Rights Reserved.
  9.  * 
  10.  **************************************************************************/
  11. /********
  12.         Copyright (c) 1993 Microsoft Corporation.
  13.  
  14.         avihapp.h --
  15.  
  16.         Include this in your standalone application.  You MUST also define
  17.         an exported procedure that takes two LPSTR as parameters, such
  18.         as the following:
  19.  
  20.         BOOL __export CALLBACK hspAVICallback(LPSTR pszHotspotID, 
  21.                                                 LPSTR pszCommand)
  22.  
  23.         Pass the address of this function as the third parameter when you
  24.         call hspPlayAVI, by using MakeProcAddress.
  25. ********/
  26.  
  27. LONG CALLBACK __export hspPlayAVI(HWND hwnd, LPSTR szAVIFile, LPSTR szIniFile, FARPROC);
  28.  
  29.