LeviLamina
Loading...
Searching...
No Matches
RefCountReleaseStatus.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace webrtc {
6
7enum class RefCountReleaseStatus : int {
8 KDroppedLastRef = 0,
9 KOtherRefsRemained = 1,
10};
11
12}