Home
last modified time | relevance | path

Searched refs:S2H (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython2/Lib/ctypes/test/
Dtest_functions.py335 class S2H(Structure): class
338 dll.ret_2h_func.restype = S2H
339 dll.ret_2h_func.argtypes = [S2H]
340 inp = S2H(99, 88)
346 class S2H(Structure): class
350 windll.s_ret_2h_func.restype = S2H
351 windll.s_ret_2h_func.argtypes = [S2H]
352 s2h = windll.s_ret_2h_func(S2H(99, 88))
Dtest_as_parameter.py163 class S2H(Structure): class
166 dll.ret_2h_func.restype = S2H
167 dll.ret_2h_func.argtypes = [S2H]
168 inp = S2H(99, 88)
/external/python/cpython2/Modules/_ctypes/
D_ctypes_test.c602 } S2H; typedef
604 EXPORT(S2H) ret_2h_func(S2H inp) in ret_2h_func()
646 EXPORT(S2H) __stdcall s_ret_2h_func(S2H inp) { return ret_2h_func(inp); } in EXPORT() argument