mirror of
https://github.com/kennethreitz-archive/pyinstaller.git
synced 2026-06-05 23:50:17 +00:00
c9f3f42f4b
git-svn-id: http://svn.pyinstaller.org/trunk@599 8dd32b29-ccff-0310-8a9a-9233e24343b1
8 lines
122 B
Python
8 lines
122 B
Python
#!/usr/bin/env python
|
|
|
|
from ctypes import *
|
|
|
|
def dummy(arg):
|
|
tct = CDLL("testctypes.dylib")
|
|
return tct.dummy(arg)
|