Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
16 lines (12 loc) · 556 Bytes

File metadata and controls

16 lines (12 loc) · 556 Bytes
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once
#define DEVS_BUFFER_RO 0
#define DEVS_BUFFER_RW 1
#define DEVS_BUFFER_STRING_OK 2
value_t devs_vm_pop_arg(devs_ctx_t *ctx);
uint32_t devs_vm_pop_arg_u32(devs_ctx_t *ctx);
int32_t devs_vm_pop_arg_i32(devs_ctx_t *ctx);
double devs_vm_pop_arg_f64(devs_ctx_t *ctx);
value_t devs_vm_pop_arg_buffer(devs_ctx_t *ctx, int flags);
extern const void *const devs_vm_op_handlers[];
typedef void (*devs_vm_stmt_handler_t)(devs_activation_t *frame, devs_ctx_t *ctx);
typedef value_t (*devs_vm_expr_handler_t)(devs_activation_t *frame, devs_ctx_t *ctx);
Morty Proxy This is a proxified and sanitized view of the page, visit original site.