home *** CD-ROM | disk | FTP | other *** search
/ Isometric Game Programming with DirectX 7.0 / Isometric Game Programming.iso / directx / dxf / samples / multimedia / directshow / common / dshowutil.h < prev    next >
Encoding:
Text File  |  2000-10-02  |  939 b   |  39 lines

  1. //------------------------------------------------------------------------------
  2. // File: DShowUtil.h
  3. //
  4. // Desc: DirectShow sample code - prototypes for utility functions.
  5. //
  6. // Copyright (c) 1996 - 2000, Microsoft Corporation.  All rights reserved.
  7. //------------------------------------------------------------------------------
  8.  
  9.  
  10. //
  11. // Function prototypes for util.cpp
  12. //
  13.  
  14. HRESULT GetPin( 
  15.     IBaseFilter * pFilter, 
  16.     PIN_DIRECTION dirrequired, 
  17.     int iNum, 
  18.     IPin **ppPin);
  19.     
  20. HRESULT FindOtherSplitterPin(
  21.     IPin *pPinIn, 
  22.     GUID guid, 
  23.     int nStream, 
  24.     IPin **ppSplitPin);
  25.     
  26. HRESULT SeekNextFrame( 
  27.     IMediaSeeking * pSeeking, 
  28.     double FPS, 
  29.     long Frame );
  30.     
  31. IPin * GetInPin( IBaseFilter * pFilter, int Num );
  32. IPin * GetOutPin( IBaseFilter * pFilter, int Num );
  33.  
  34. void TurnOnDebugDllDebugging( );
  35.  
  36. void DbgPrint( char * pText );
  37. void ErrPrint( char * pText );
  38.  
  39.