blob: 5c307f59978a3e481bf2a1fdc622928d6a650a51 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//
// Autostart.h
// VKPC
//
// Created by Eugene on 11/9/14.
// Copyright (c) 2014 Eugene Z. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface Autostart : NSObject
+ (BOOL)isLaunchAtStartup;
+ (void)toggleLaunchAtStartup;
@end
|