# # # Nim's Runtime Library # (c) Copyright 2022 Emery Hemingway # # See the file "copying.txt", included in this # distribution, for details about the copyright. # ## See `Genode Foundations - Entrypoint ` ## for a description of Entrypoints. type EntrypointObj {. importcpp: "Genode::Entrypoint", header: "", pure.} = object Entrypoint* = ptr EntrypointObj ## Opaque Entrypoint object. proc ep*(env: GenodeEnv): Entrypoint {.importcpp: "(&#->ep())".} ## Access the entrypoint associated with `env`.