mirror of
https://github.com/zakk4223/CocoaSplit.git
synced 2026-05-15 14:15:50 -06:00
35 lines
1.1 KiB
Objective-C
35 lines
1.1 KiB
Objective-C
//
|
|
// CSNotifications.m
|
|
// CocoaSplit
|
|
//
|
|
// Created by Zakk on 9/7/14.
|
|
// Copyright (c) 2014 Zakk. All rights reserved.
|
|
//
|
|
|
|
|
|
NSString *const CSNotificationLayoutAdded = @"CSNotificationLayoutAdded";
|
|
NSString *const CSNotificationLayoutDeleted = @"CSNotificationLayoutDeleted";
|
|
|
|
|
|
|
|
|
|
NSString *const CSNotificationStreamStarted = @"CSNotificationStreamStarted";
|
|
NSString *const CSNotificationStreamStopped = @"CSNotificationStreamStopped";
|
|
|
|
|
|
NSString *const CSNotificationOutputAdded = @"CSNotificationOutputAdded";
|
|
NSString *const CSNotificationOutputDeleted = @"CSNotificationOutputDeleted";
|
|
|
|
|
|
NSString *const CSNotificationCompressorAdded = @"CSNotificationCompressorAdded";
|
|
NSString *const CSNotificationCompressorDeleted = @"CSNotificationCompressorDeleted";
|
|
NSString *const CSNotificationCompressorRenamed = @"CSNotificationCompressorRenamed";
|
|
|
|
|
|
NSString *const CSNotificationInputAdded = @"CSNotificationInputAdded";
|
|
NSString *const CSNotificationInputDeleted = @"CSNotificationInputDeleted";
|
|
|
|
NSString *const CSNotificationInputSelected = @"CSNotificationInputSelected";
|
|
|
|
|
|
|