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.

23 lines
498 B

  1. #ifndef _WIAREGME_H
  2. #define _WIAREGME_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. LRESULT CALLBACK EventListBox(HWND, UINT, WPARAM, LPARAM);
  12. WNDPROC DefDeviceListBox;
  13. WNDPROC DefEventListBox;
  14. #endif
  15. #endif