我必須從VBScript
的ASP
頁面獲取命令接口和狀態接口,如下所示。 COM將部署在Windows CE設備中從另一個COM對象中獲取COM對象
Set polyColdObj=CreateObject("PolyCold.Main")
Set statusObj = polyColdObj.StatusInterface()
Set commandObj = polyColdObj.CommandInterface()
我打算使用Atl開發COM對象。我的疑問是
- ATL COM中`StatusInterface`和`CommandInterface`的簽名應該是什麼?
- 在將對象返回給自動化客戶端(VBScript)之前,我應該在`StatusInterface`和`CommandInterface`上調用AddRef()嗎?
- 每次調用StatusInterface或創建'PolyCold.Main'對象時,是否應該創建對象?
- 這是爲`StatusInterface`和`CommandInterface`命名的標準方式嗎?