home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / graphics / audio / acmapp / acmthunk.h < prev    next >
C/C++ Source or Header  |  1997-10-05  |  1KB  |  50 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) 1992 - 1997 Microsoft Corporation.  All Rights Reserved.
  9. //
  10. //--------------------------------------------------------------------------;
  11. //
  12. //  acmthunk.h
  13. //
  14. //  Description:
  15. //      Contains function prototypes for the thunking code in acmthunk.c.
  16. //
  17. //
  18. //==========================================================================;
  19.  
  20. #ifndef _INC_ACMTHUNK
  21. #define _INC_ACMTHUNK
  22.  
  23. #ifdef __cplusplus
  24. extern "C"
  25. {
  26. #endif
  27.  
  28.  
  29. //- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ; 
  30. //
  31. //
  32. //
  33. //- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ; 
  34.  
  35. BOOL FAR PASCAL acmThunkInitialize
  36. (
  37.     void
  38. );
  39.  
  40. BOOL FAR PASCAL acmThunkTerminate
  41. (
  42.     void
  43. );
  44.  
  45.  
  46. #ifdef __cplusplus
  47. }
  48. #endif
  49. #endif  // _INC_ACMTHUNK
  50.