开发者

Threading Model

开发者 https://www.devze.com 2023-03-10 17:03 出处:网络
I am going to develop an ATL COM for my device. We are using Win CE 6.0. My doubts are What threading models are supported by COM dll in WInCE?

I am going to develop an ATL COM for my device. We are using Win CE 6.0. My doubts are

  • What threading models are supported by COM dll in WInCE?
  • What threading models are supported by COM EXE in WInCE?
  • Does WIN CE have support for DCOM?
  • How can I check whether DCOM support开发者_运维百科 is available in the WIN CE device I have?


  • COM in Windows CE supports only in-process, free-threaded automation objects
  • DCOM supports all threading models
  • DCOM Remoting is not supported (removed as of 6.0 IIRC)

To see if your device has support, look in the \Windows folder at ceconfig.h and see if it contains SYSGEN_OLE (for COM support) and/or SYSGEN_DCOM (for DCOM support).

More info can be found here.

0

精彩评论

暂无评论...
验证码 换一张
取 消