the_registry_table.rst 541 B

1234567891011121314
  1. .. _embedding_the_registry_table:
  2. ==================
  3. The registry table
  4. ==================
  5. The registry table is an hidden table shared between vm and all his thread(friend vms).
  6. This table is accessible only through the C API and is ment to be an utility structure
  7. for native C library implementation.
  8. For instance the sqstdlib(squirrel standard library)uses it to store configuration and shared objects
  9. delegates.
  10. The registry is accessible through the API call *sq_pushregistrytable()*.::
  11. void sq_pushregistrytable(HSQUIRRELVM v);