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 / lowpass / lowpass.h < prev    next >
Text File  |  1997-10-05  |  1KB  |  30 lines

  1. /***********************************************************************
  2.  *  lowpass.h - Header file for LOWPASS sample application.
  3.  *
  4.  *  THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
  5.  *  ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED
  6.  *  TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR
  7.  *  A PARTICULAR PURPOSE.
  8.  *
  9.  *  Copyright (C) 1993 - 1997 Microsoft Corporation. All Rights Reserved.
  10.  ***********************************************************************/
  11.  
  12. #define LOADSTRBUFSIZE 256    // 255 + nul is biggest stringtable string.
  13.  
  14. /* Constants for dialogs.
  15.  */
  16. #define IDM_ABOUT       11          // menu items
  17.  
  18. #define ID_INPUTFILEEDIT    101     // input file name edit box
  19. #define ID_OUTPUTFILEEDIT   102     // output file name edit box
  20.  
  21.  
  22. /* Function Prototypes
  23.  */
  24. // WinMain is prototyped in windows.h or its children
  25. void DoLowPass(HWND hwnd);
  26. BOOL FAR PASCAL AboutDlgProc(HWND hwnd, UINT wMsg,
  27.     WPARAM wParam, LPARAM lParam);
  28. BOOL WINAPI LowPassDlgProc(HWND hwnd, UINT wMsg,
  29.     WPARAM wParam, LPARAM lParam);
  30.