getPointer.lua 404 B

123456789101112131415
  1. return {
  2. summary = 'Get a raw pointer to the Blob\'s data.',
  3. description = [[
  4. Returns a raw pointer to the Blob's data. This can be used to interface with other C libraries
  5. using the LuaJIT FFI. Use this only if you know what you're doing!
  6. ]],
  7. arguments = {},
  8. returns = {
  9. {
  10. name = 'pointer',
  11. type = 'userdata',
  12. description = 'A pointer to the data.'
  13. }
  14. }
  15. }