CallConstants.h 387 B

12345678910111213141516171819
  1. //
  2. /**
  3. * SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
  4. * SPDX-License-Identifier: GPL-3.0-or-later
  5. */
  6. #ifndef CallConstants_h
  7. #define CallConstants_h
  8. typedef NS_ENUM(NSInteger, CallFlag) {
  9. CallFlagDisconnected = 0,
  10. CallFlagInCall = 1,
  11. CallFlagWithAudio = 2,
  12. CallFlagWithVideo = 4,
  13. CallFlagWithPhone = 8
  14. };
  15. #endif /* CallConstants_h */