CoGetApartmentType function ole32

int CoGetApartmentType(
  1. Pointer<Int32> pAptType,
  2. Pointer<Int32> pAptQualifier
)

Returns the current apartment type and type qualifier.

HRESULT CoGetApartmentType(
  [out] APTTYPE          *pAptType,
  [out] APTTYPEQUALIFIER *pAptQualifier
);

Implementation

int CoGetApartmentType(Pointer<Int32> pAptType, Pointer<Int32> pAptQualifier) =>
    _CoGetApartmentType(pAptType, pAptQualifier);