| Commit message (Expand) | Author | Age | Files | Lines |
| * | Merge the two verifiers into two VEngine classes. There is still a little bit | Armin Rigo | 2012-08-04 | 1 | -3/+19 |
| * | As discussed on the mailing list: str() -> ffi.string() | Armin Rigo | 2012-08-03 | 1 | -2/+2 |
| * | Improve the test | Armin Rigo | 2012-07-27 | 1 | -0/+1 |
| * | Draft the future test for calling convention of callbacks | Armin Rigo | 2012-07-18 | 1 | -0/+19 |
| * | Delete all the mess about _need_size. Instead, document the "proper" | Armin Rigo | 2012-07-17 | 1 | -1/+3 |
| * | Change ffi.new() to take a pointer-to-X instead of directly X, | Armin Rigo | 2012-07-16 | 1 | -12/+12 |
| * | Add and document some control over the temporary directory. | Armin Rigo | 2012-07-16 | 1 | -2/+13 |
| * | Test and painful fix. | Armin Rigo | 2012-07-15 | 1 | -0/+13 |
| * | Add a test. | Armin Rigo | 2012-07-13 | 1 | -0/+13 |
| * | Tests, and fix for enums. | Armin Rigo | 2012-07-11 | 1 | -0/+19 |
| * | Functions and function pointers as arguments. | Armin Rigo | 2012-07-11 | 1 | -0/+8 |
| * | verify: Function pointer as argument | Armin Rigo | 2012-07-11 | 1 | -0/+8 |
| * | verifier support for wchar_t. | Armin Rigo | 2012-07-09 | 1 | -1/+1 |
| * | Fix tests, part 1 | Armin Rigo | 2012-07-09 | 1 | -2/+15 |
| * | A test: how you should(?) write a function pointer that you want | Armin Rigo | 2012-07-08 | 1 | -0/+13 |
| * | typo | Armin Rigo | 2012-07-04 | 1 | -1/+1 |
| * | Test and implementation (again) for verify(). | Armin Rigo | 2012-06-29 | 1 | -0/+20 |
| * | hg backout 0ed9b03dd40d, f0cdef5768b5, 95c88bfbf9f7. | Armin Rigo | 2012-06-29 | 1 | -24/+0 |
| * | Support the baseline case of functions returning structs. | Armin Rigo | 2012-06-28 | 1 | -0/+24 |
| * | Fix the issue by declaring it illegal. See comment in _cffi_backend.c for why. | Armin Rigo | 2012-06-28 | 1 | -4/+4 |
| * | Tweak the test until it fails on 64-bit. | Armin Rigo | 2012-06-28 | 1 | -15/+15 |
| * | Test and fix | Armin Rigo | 2012-06-28 | 1 | -0/+18 |
| * | Test and fix: passing structures to functions through ffi.verify() | Armin Rigo | 2012-06-28 | 1 | -0/+21 |
| * | Add a passing test. | Armin Rigo | 2012-06-26 | 1 | -0/+19 |
| * | Allow the syntax "a[...];", for now only on struct fields. | Armin Rigo | 2012-06-26 | 1 | -0/+8 |
| * | Fix(?) the ctypes backend, as far as the tests are concerned. | Armin Rigo | 2012-06-26 | 1 | -4/+4 |
| * | Missing case: verify() with a function with varargs. | Armin Rigo | 2012-06-17 | 1 | -0/+26 |
| * | Test and fix. | Armin Rigo | 2012-06-17 | 1 | -2/+17 |
| * | Remove the limitation about "typedef ... foo_t", and change the test. | Armin Rigo | 2012-06-17 | 1 | -11/+17 |
| * | A non-passing test, a bit annoying: how are we supposed to fill in | Armin Rigo | 2012-06-16 | 1 | -0/+11 |
| * | Check extra spaces around #define. | Armin Rigo | 2012-06-16 | 1 | -1/+1 |
| * | Add a passing test. | Armin Rigo | 2012-06-16 | 1 | -0/+12 |
| * | Skip the remaining tests on Windows, and document its existence. | Armin Rigo | 2012-06-16 | 1 | -0/+4 |
| * | Fix tests for windows. | Armin Rigo | 2012-06-16 | 1 | -6/+7 |
| * | Test and explicit exception in case we call verify() with the ctypes | Armin Rigo | 2012-06-15 | 1 | -0/+6 |
| * | A test with a global callback that we set from a Python function. | Armin Rigo | 2012-06-15 | 1 | -0/+14 |
| * | Access global structures, why not | Armin Rigo | 2012-06-15 | 1 | -0/+25 |
| * | Accessing global array variables. C is fun :-/ | Armin Rigo | 2012-06-15 | 1 | -0/+17 |
| * | Global variables. Needed a bit of refactoring: we cannot return | Armin Rigo | 2012-06-15 | 1 | -1/+18 |
| * | Add support for constants, either via "static sometype const x;" | Armin Rigo | 2012-06-15 | 1 | -0/+16 |
| * | - Fixes to silence all -Wall warnings that now show up. | Armin Rigo | 2012-06-15 | 1 | -1/+8 |
| * | Save and restore 'errno' also across verify()ed functions. | Armin Rigo | 2012-06-14 | 1 | -0/+14 |
| * | Test and fix: initialize things in a different order. | Armin Rigo | 2012-06-14 | 1 | -0/+11 |
| * | Insert spaces around '__dotdotdot__'. | Armin Rigo | 2012-06-14 | 1 | -1/+1 |
| * | "Opaque" types, which become just non-filled structs in the backend. | Armin Rigo | 2012-06-14 | 1 | -3/+3 |
| * | Opaque structs. | Armin Rigo | 2012-06-14 | 1 | -0/+7 |
| * | Full enums. | Armin Rigo | 2012-06-14 | 1 | -8/+5 |
| * | - One more step in the test. | Armin Rigo | 2012-06-14 | 1 | -1/+28 |
| * | Non-full enums, starting | Armin Rigo | 2012-06-14 | 1 | -0/+6 |
| * | More tweaks, preventing a compiler warning | Armin Rigo | 2012-06-14 | 1 | -2/+4 |