windows-nt/Source/XPSP1/NT/printscan/wia/test/wiaregme/wiaregme.h
2020-09-26 16:20:57 +08:00

24 lines
498 B
C

#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