| 1455 | |
| 1456 | |
| 1457 | Object *ComObject::Base() |
| 1458 | { |
| 1459 | if (mVarType & VT_ARRAY) |
| 1460 | return Object::sComArrayPrototype; |
| 1461 | if (mVarType & VT_BYREF) |
| 1462 | return Object::sComRefPrototype; |
| 1463 | if (mVarType == VT_DISPATCH && mUnknown) |
| 1464 | return Object::sComObjectPrototype; |
| 1465 | return Object::sComValuePrototype; |
| 1466 | } |
| 1467 | |
| 1468 | |
| 1469 | ResultType ComEnum::Next(Var *aOutput, Var *aOutputType) |
nothing calls this directly
no outgoing calls
no test coverage detected