I have searched and searched, but I haven't found an example that does what I need to do.
I found 
How can I represent an 'Enum' in Python? 
here on SO, but it doesn't cover ctypes.Structure.
I also found 
Using enums in ctypes.Structure
here on SO, but it includes pointers, which I am not familiar with.
I have a header file that includes typedef enum, that I need to use in a ctypes.Structure in a Python file.
C++ header file:
typedef enum {
        ID_UNUSED,
        ID_DEVICE_NAME,
        ID_SCSI,
        ID_DEVICE_NUM,
} id_type_et; 
Python file (The way I am currently doing it):
class IdTypeEt(ctypes.Structure):
        _pack_ = 1
        _fields_ = [ ("ID_UNUSED", ctypes.c_int32),
            ("ID_DEVICE_NAME", ctypes.c_char*64),
            ("ID_SCSI", ctypes.c_int32),
            ("ID_DEVICE_NUM", ctypes.c_int32) ]
Any advice would be greatly appreciated. The simpler, the better.
 
     
    