Skip to content

Instantly share code, notes, and snippets.

@elementbound
Created April 13, 2017 12:26
Show Gist options
  • Save elementbound/70c5cc47903a2a663d080790d1786ee4 to your computer and use it in GitHub Desktop.
Save elementbound/70c5cc47903a2a663d080790d1786ee4 to your computer and use it in GitHub Desktop.
Import only types from ctypes
from ctypes import c_bool, c_char, c_wchar, c_byte
from ctypes import c_ubyte, c_short, c_ushort, c_int
from ctypes import c_uint, c_long, c_ulong, c_longlong
from ctypes import c_ulonglong, c_size_t, c_ssize_t, c_float
from ctypes import c_double, c_longdouble, c_char_p, c_wchar_p
from ctypes import c_void_p
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment