Window creation/X11: Difference between revisions

m
m (syntax highlighting fixup automation)
m (→‎{{header|Wren}}: Minor tidy)
Line 2,210:
<br>
As it's not currently possible for Wren-cli to access Xlib directly, we embed a Wren script in a C application to complete this task.
<syntaxhighlight lang="ecmascriptwren">/* window_creation_x11Window_creation_X11.wren */
 
var KeyPressMask = 1 << 0
Line 2,276:
<br>
We now embed this Wren script in the following C program, compile and run it.
<syntaxhighlight lang="c">#include/* <stdiogcc Window_creation_X11.h>c -o Window_creation_X11 -lX11 -lwren -lm */
 
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
Line 2,477 ⟶ 2,479:
WrenVM* vm = wrenNewVM(&config);
const char* module = "main";
const char* fileName = "window_creation_x11Window_creation_X11.wren";
char *script = readFile(fileName);
WrenInterpretResult result = wrenInterpret(vm, module, script);
9,476

edits