SFS2X Objective-C API  1.7.13
iOS / macOS / tvOS
BanMode.h
1 //
2 // BanMode.h
3 // SFS2X
4 //
5 // Original development by Infosfer Game Technologies Ltd. | http://www.infosfer.com.
6 //
7 // Maintained and developed by A51 Integrated.
8 // Copyright 2012 A51 Integrated | http://a51integrated.com. All rights reserved.
9 //
10 
11 #import "Common.h"
12 
13 
14 /** This class contains constants to specify the banishment modality for a <BanUserRequest>
15 
16  */
17 @interface BanMode : NSObject {
18 
19 }
20 
21 
22 /** User is banned by IP Address */
23 EXTERN NSInteger const BanMode_BY_ADDRESS;
24 /** User is banned by name */
25 EXTERN NSInteger const BanMode_BY_NAME;
26 
27 @end
BanMode::BanMode_BY_ADDRESS
EXTERN const NSInteger BanMode_BY_ADDRESS
Definition: BanMode.h:23
BanMode::BanMode_BY_NAME
EXTERN const NSInteger BanMode_BY_NAME
Definition: BanMode.h:25
BanMode
Definition: BanMode.h:17