-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconstant.go
44 lines (32 loc) · 1.56 KB
/
constant.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package libeuicc
import "C"
type ProfileState string
type NotificationProfileManagementOperation string
type ProfileIconType string
type ProfilceClass string
type DownloadProgress int
const (
ProfileStateEnabled ProfileState = "enabled"
ProfileStateDisabled ProfileState = "disabled"
ProfileIconTypeNone ProfileIconType = "none"
ProfileIconTypeJPG ProfileIconType = "jpeg"
ProfileIconTypePNG ProfileIconType = "png"
ProfileClassOperational ProfilceClass = "operational"
ProfileClassTest ProfilceClass = "test"
ProfileClassProvisioning ProfilceClass = "provisioning"
DownloadProgressGetChallenge DownloadProgress = 1
DownloadProgressInitiateAuthentication DownloadProgress = 2
DownloadProgressAuthenticateServer DownloadProgress = 3
DownloadProgressAuthenticateClient DownloadProgress = 4
DownloadProgressConfirmationCodeRequired DownloadProgress = 5
DownloadProgressConfirmDownload DownloadProgress = 6
DownloadProgressPrepareDownload DownloadProgress = 7
DownloadProgressGetBoundProfile DownloadProgress = 9
DownloadProgressLoadBoundProfile DownloadProgress = 10
NotificationProfileManagementOperationDisable NotificationProfileManagementOperation = "disable"
NotificationProfileManagementOperationEnable NotificationProfileManagementOperation = "enable"
NotificationProfileManagementOperationInstall NotificationProfileManagementOperation = "install"
NotificationProfileManagementOperationDelete NotificationProfileManagementOperation = "delete"
CError C.int = -1
CSuccess C.int = 0
)