VC++.net 中CMsg是什么类
谢谢

解决方案 »

  1.   

    CMsg ClassRequirements
    DirectShow applications and DirectShow filters have different include file and link library requirements. For more information, see Setting Up the Build Environment. OS Versions: Windows CE 2.12 and later. Version 2.12 requires DXPAK 1.0 or later.
    Header: The CMsgThread class provides support for a worker thread to which requests can be posted asynchronously instead of sent directly. The CAMThread class provides a worker thread to which single requests can be sent. Only one client can make a request at a time, and the client blocks until the worker thread has completed the request. By contrast, the CMsgThread class provides a worker thread to which any number of requests can be posted. The requests (in the form of a CMsg object) are queued and executed in order, asynchronously. No reply or return value is received.