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

#ifndef _WIAREGME_H
#define _WIAREGME_H
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "resource.h"
#define _ERROR_POPUP // Error dialogs will popup to the user
LRESULT CALLBACK MainDlg(HWND, UINT, WPARAM, LPARAM);
#ifdef _OVERRIDE_LIST_BOXES // to override the list box functionality
LRESULT CALLBACK DeviceListBox(HWND, UINT, WPARAM, LPARAM);
LRESULT CALLBACK EventListBox(HWND, UINT, WPARAM, LPARAM);
WNDPROC DefDeviceListBox;
WNDPROC DefEventListBox;
#endif
#endif