Home | History | Annotate | Download | only in test

Lines Matching refs:POINT

23 class POINT(Structure):
316 ptin = POINT(1, 2)
317 ptout = POINT()
318 # EXPORT int _testfunc_byval(point in, point *pout)
325 ptin = POINT(101, 102)
326 ptout = POINT()
327 dll._testfunc_byval.argtypes = (POINT, POINTER(POINT))
394 proto = CFUNCTYPE(c_int, RECT, POINT)
399 self.assertRaises(ArgumentError, lambda: callback((1, 2, 3, 4), POINT()))