module_syms.h 215 B

1234567891011
  1. /*
  2. * Copyright (c) 2020, the SerenityOS developers.
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. extern "C" const char module_name[];
  8. extern "C" void module_init();
  9. extern "C" void module_fini();