File size: 307 Bytes
13170f7
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import ctypes
from ctypes_enum import CtypesEnum
from .CAlgorithms import *
from .EveErrors import *

EVE_ALGORITHMS_SIZE = 20

class EveSupportedAlgorithms(ctypes.Structure):
	_fields_ = [
		("errorCode", ctypes.c_int),
		("count", ctypes.c_uint),
		("algorithms", ctypes.c_int * EVE_ALGORITHMS_SIZE),
	]