package ezdl

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module EzdlSource

Sourcetype t
Sourcetype cfunc
Sourceval dlopen : string -> t
Sourceval dlsym : t -> string -> cfunc
Sourceval dlclose : t -> unit
Sourcetype cptr
Sourceval cptr_of : 'a -> cptr
Sourceval f2f : cfunc -> float -> float
Sourceval ff2f : cfunc -> float -> float -> float
Sourceval i2i : cfunc -> int -> int
Sourceval ii2i : cfunc -> int -> int -> int
Sourceval iii2i : cfunc -> int -> int -> int -> int
Sourcetype carg =
  1. | Int_carg of int
  2. | Double_carg of float
  3. | String_carg of string
  4. | Ptr_carg of cptr
Sourceval carg_to_string : carg -> string
Sourcetype cargs = carg list
Sourceval cargs2i : cfunc -> cargs -> int
Sourceval cargs2f : cfunc -> cargs -> float
Sourceval cargs2s : cfunc -> cargs -> string