我创建了一个创建DLL
的项目。该项目使用WFS
方法,并访问某些硬件(设备)以获取信息或执行某些命令。
在我的项目中,我首先打开这些设备然后注册它们,我稍后使用其他方法来获取信息或执行。
HRESULT extern WINAPI WFSOpen ( LPSTR lpszLogicalName, HAPP hApp, LPSTR lpszAppID, DWORD dwTraceLevel, DWORD dwTimeOut, DWORD dwSrvcVersionsRequired, LPWFSVERSION lpSrvcVersion, LPWFSVERSION lpSPIVersion, LPHSERVICE lphService);
HRESULT extern WINAPI WFSRegister ( HSERVICE hService, DWORD dwEventClass, HWND hWndReg);
如您所见,WFSRegister
需要HWND
作为参数。 WFSRegister
使用此参数向其发送事件或消息。
我的项目不是MFC项目,我没有窗户。我决定创建一个窗口并将HWND
分配给WFSRegister
。我还创建了WndProc
来获取WFS
方法稍后发送给我的消息。
LRESULT CALLBACK WndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)
{
switch(msg)
{
case WFS_EXECUTE_EVENT:
cout<<"WFS_EXECUTE_EVENT";
break;
case WFS_SERVICE_EVENT:
cout<<"WFS_EXECUTE_EVENT";
break;
case WFS_USER_EVENT:
cout<<"WFS_USER_EVENT";
break;
case WFS_SYSTEM_EVENT:
cout<<"WFS_SYSTEM_EVENT";
break;
}
return DefWindowProc(hWnd, msg, wParam, lParam );
}
void Init_Window()
{
WNDCLASS Wclass;
Wclass.hInstance = gHinstance;
Wclass.cbClsExtra = 0;
Wclass.cbWndExtra = 0;
Wclass.lpszClassName = TEXT("Device_Manager_Class_Name");
Wclass.lpszMenuName = NULL;
Wclass.lpfnWndProc = WndProc;
Wclass.hbrBackground = (HBRUSH)GetStockObject(BLACK_BRUSH);
Wclass.hCursor = LoadIcon(NULL, IDC_ARROW);
Wclass.hIcon = LoadIcon(NULL, IDI_APPLICATION);
Wclass.style = CS_OWNDC;
if(!RegisterClass(&Wclass))
{
cout<<"Unable to Register Class";
}
ULONG Window_Width;
ULONG Window_Height;
DWORD style;
Window_Width = SCREEN_WIDTH;
Window_Height = SCREEN_HEIGHT;
style = WS_OVERLAPPED|WS_SYSMENU;
gHwnd = CreateWindow(TEXT("Device_Manager_Class_Name")
, TEXT("Device_Manager_Class_Title")
, style
, 0
, 0
, Window_Width
, Window_Height
, GetDesktopWindow()
, NULL
, gHinstance
, NULL);
if(!gHwnd){
cout<<"Unable to create the main window";
}
ShowWindow(gHwnd, SW_SHOW);
UpdateWindow(gHwnd);
SetFocus(gHwnd);
}
Init_Window()
成功创建窗口,我在这里没有任何疑问。
当我想注册我的设备时,我会调用以下代码来获取正确的HWND
:
HWND windows_handle = FindWindow(TEXT("Device_Manager_Class_Name"), 0);
HRESULT result = WFSRegister(wfsRes.hService, WFS_EXECUTE_EVENT || WFS_SERVICE_EVENT || WFS_USER_EVENT || WFS_SYSTEM_EVENT , windows_handle);
result
为S_OK
(表示设备已成功注册),windows_handle
表示我在HWND
中创建的Init_Window()
。例如,两者都有0x00100a58
个值。
现在我在设备上更改了一些属性,我希望在我的WndProc()
上收到这些消息,但它无效。
WndProc()
以某种方式工作并获取一些消息,但不是我想要的消息(不是设备发送给它的消息)。
我确定设备会发送消息(作为事件),因为我可以通过阅读他们的日志来看到它们。
例如:
日志中的2013/09/25 16:46:29 HService:44事件WFS_SRVE_SIU_PORT_STATUS为HWND = 330d1c发送hResult = WFS_SUCCESS
HWND
是指我在HWND
和Init_Window()
中创建的同一windows_handle
。
另外,你们都得到了我想做的事。如果您有任何其他解决方案,请随时提及。
答案 0 :(得分:1)
亲爱的 Igor Tandetnik
,我找到了解决方案我需要做的就是添加GetMessage()
MSG msg;
BOOL bRet;
HWND windows_handle = FindWindow(TEXT("Device_Manager_Class_Name"), 0);
while( (bRet = GetMessage( &msg, windows_handle, 0, 0 )) != 0)
{
if (bRet == -1)
{
// handle the error and possibly exit
}
else
{
TranslateMessage(&msg);
DispatchMessage(&msg); //<< This line send msg to WndProc()
}
}