pub const drwrap_global_flags_t_DRWRAP_SAFE_READ_ARGS: drwrap_global_flags_t = 2;Expand description
By default function arguments stored in memory are read and written directly. A more conservative and safe approach would use a safe read or write to avoid crashing when the stack is unsafe to access. This flag will cause all arguments in memory to be read and written safely. If any call to drwrap_set_global_flags() sets this flag, no later call can remove it.