NB; (An updated version of this guide can be found on the wiki)
- Visual Studio 2013 or 2015 (Community edition is enough)
- MSYSGit or Git for Windows as it's also called (
cinst git.install
if you have Chocolatey)
#include <vkroots.h> | |
#include <cstdint> | |
#include <algorithm> | |
#include <ranges> | |
#include <string_view> | |
#define VK_EXT_FULL_SCREEN_EXTENSION_NAME "VK_EXT_full_screen_exclusive" | |
#define VK_EXT_FULL_SCREEN_SPEC_VERSION 4 |
#!/bin/bash | |
set -euo pipefail | |
# Drop in /usr/local/bin/run-in-slice | |
# | |
# Requires system to be running systemd and cgroupsv2 | |
SLICE="$1" | |
shift |
NB; (An updated version of this guide can be found on the wiki)
cinst git.install
if you have Chocolatey)diff --git a/dlls/winex11.drv/keyboard.c b/dlls/winex11.drv/keyboard.c | |
index b1c47d5258e..a7a393b5102 100644 | |
--- a/dlls/winex11.drv/keyboard.c | |
+++ b/dlls/winex11.drv/keyboard.c | |
@@ -1402,6 +1402,35 @@ BOOL X11DRV_KeyEvent( HWND hwnd, XEvent *xev ) | |
return TRUE; | |
} | |
+/* From the point of view of this function there are two types of | |
+ * keys: those for which the mapping to vkey and scancode depends on |
class profiles::raspberry_pi::fake_aio { | |
file { | |
default: | |
ensure => file; | |
'/etc/facter/facts.d/aio_agent_version.txt': | |
content => "aio_agent_version=${fact('puppetversion')}"; | |
'/etc/facter/facts.d/aio_fake_agent.txt': | |
content => "aio_fake_agent=true"; | |
} |
# frozen_string_literal: true | |
# Fact to check Raspberry Pi information; | |
Facter.add(:pi) do | |
pi_dtb = '/sys/firmware/devicetree/base' | |
confine { File.exist? pi_dtb } | |
setcode do | |
{ |
#!/bin/bash | |
ls -1 */EasyAntiCheat/Settings.json | xargs -rn 1 sed -e 's/id":\s*"[^L]/id": "LUG/g' -i |
Add a stub for missing Kernel32.SetThreadInformation, needed for Star Citizen 3.17.1 | |
https://bugs.winehq.org/show_bug.cgi?id=52956 | |
https://bugs.winehq.org/attachment.cgi?id=72326 | |
diff --git a/dlls/kernel32/kernel32.spec b/dlls/kernel32/kernel32.spec | |
index 818e7d87a2f..706c518dbe1 100644 | |
--- a/dlls/kernel32/kernel32.spec | |
+++ b/dlls/kernel32/kernel32.spec | |
@@ -1470,6 +1470,7 @@ | |
@ stdcall -import SetThreadGroupAffinity(long ptr ptr) |
diff --git a/dlls/winejoystick.drv/joystick_linux.c b/dlls/winejoystick.drv/joystick_linux.c | |
index 8d1a7b1a25a..4057ec52a1e 100644 | |
--- a/dlls/winejoystick.drv/joystick_linux.c | |
+++ b/dlls/winejoystick.drv/joystick_linux.c | |
@@ -260,9 +260,9 @@ LRESULT driver_joyGetDevCaps(DWORD_PTR dwDevID, LPJOYCAPSW lpCaps, DWORD dwSize) | |
lpCaps->wUmax = 0xFFFF; | |
lpCaps->wVmin = 0; | |
lpCaps->wVmax = 0xFFFF; | |
- lpCaps->wMaxAxes = 6; /* same as MS Joystick Driver */ | |
+ lpCaps->wMaxAxes = 16; /* same as MS Joystick Driver */ |
diff --git a/dlls/joy.cpl/joy.h b/dlls/joy.cpl/joy.h | |
index 64df21963b9..c05880d88ba 100644 | |
--- a/dlls/joy.cpl/joy.h | |
+++ b/dlls/joy.cpl/joy.h | |
@@ -49,8 +49,8 @@ struct Joystick { | |
struct Effect *effects; | |
}; | |
-#define TEST_MAX_BUTTONS 32 | |
-#define TEST_MAX_AXES 4 |