Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
412 B

  1. #ifndef _WIAPEEK_H
  2. #define _WIAPEEK_H
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. #include "resource.h"
  7. #define _ERROR_POPUP // Error dialogs will popup to the user
  8. LRESULT CALLBACK MainDlg(HWND, UINT, WPARAM, LPARAM);
  9. #ifdef _OVERRIDE_LIST_BOXES // to override the list box functionality
  10. LRESULT CALLBACK DeviceListBox(HWND, UINT, WPARAM, LPARAM);
  11. WNDPROC DefDeviceListBox;
  12. #endif
  13. #endif