LOWPASS.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  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. #define LOADSTRBUFSIZE 256 // 255 + nul is biggest stringtable string.
  12. /* Constants for dialogs.
  13.  */
  14. #define IDM_ABOUT       11          // menu items
  15. #define ID_INPUTFILEEDIT    101     // input file name edit box
  16. #define ID_OUTPUTFILEEDIT   102     // output file name edit box
  17. /* Function Prototypes
  18.  */
  19. // WinMain is prototyped in windows.h or its children
  20. void DoLowPass(HWND hwnd);
  21. BOOL FAR PASCAL AboutDlgProc(HWND hwnd, UINT wMsg,
  22. WPARAM wParam, LPARAM lParam);
  23. BOOL WINAPI LowPassDlgProc(HWND hwnd, UINT wMsg,
  24. WPARAM wParam, LPARAM lParam);