This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
options: | |
parameters: | |
author: Mictronics | |
category: Custom | |
cmake_opt: '' | |
comment: '' | |
copyright: '' | |
description: '' | |
gen_cmake: 'On' | |
gen_linking: dynamic |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "stdafx.h" | |
#define DIRECTINPUT_VERSION 0x0700 | |
#include <wbemidl.h> | |
#include <dinput.h> | |
#include <xinput.h> | |
#pragma comment(lib,"xinput.lib") | |
#define SAFE_RELEASE(x) if(x) { x->Release(); x = NULL; } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
using std::cout, std::endl; | |
#include <string> | |
using std::string, std::to_string; | |
struct eat { constexpr eat(auto...){} }; | |
constexpr auto Tree(auto left, long val, auto right) { | |
return [=](auto f) { return f(left, val, right); }; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int vasprintf(char** strp, const char* format, va_list ap) | |
{ | |
int len = _vscprintf(format, ap); | |
if (len == -1) | |
return -1; | |
char* str = (char*)malloc((size_t)len + 1); | |
if (!str) | |
return -1; | |
int retval = vsnprintf(str, len + 1, format, ap); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CStringA ConvertUnicodeToUTF8(const CStringW& uni) | |
{ | |
if (uni.IsEmpty()) return ""; // nothing to do | |
CStringA utf8; | |
int cc = 0; | |
// get length (cc) of the new multibyte string excluding the \0 terminator first | |
if ((cc = WideCharToMultiByte(CP_UTF8, 0, uni, -1, NULL, 0, 0, 0) - 1) > 0) | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <array> | |
#include <thread> | |
#include <atomic> | |
#include <emmintrin.h> | |
struct spin_mutex { | |
void lock() noexcept { | |
// approx. 5x5 ns (= 25 ns), 10x40 ns (= 400 ns), and 3000x350 ns | |
// (~ 1 ms), respectively, when measured on a 2.9 GHz Intel i9 | |
constexpr std::array iterations = {5, 10, 3000}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$Path = $env:TEMP; $Installer = "426.23-tesla-desktop-win10-64bit-international.exe"; Invoke-WebRequest "http://us.download.nvidia.com/tesla/426.23/426.23-tesla-desktop-win10-64bit-international.exe" -OutFile $Path\$Installer; Start-Process -FilePath $Path\$Installer -Args "" -Verb RunAs -Wait; Remove-Item $Path\$Installer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$Path = $env:TEMP; $Installer = "chrome_installer.exe"; Invoke-WebRequest "http://dl.google.com/chrome/install/375.126/chrome_installer.exe" -OutFile $Path\$Installer; Start-Process -FilePath $Path\$Installer -Args "/silent /install" -Verb RunAs -Wait; Remove-Item $Path\$Installer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{NOTE_D5, 600, 50}, | |
{NOTE_E5, 600, 50}, | |
{NOTE_G5, 150, 50}, | |
{NOTE_REST, 100, 50}, | |
{NOTE_G5, 150, 50}, | |
{NOTE_REST, 100, 50}, | |
{NOTE_G5, 150, 50}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add rc.exe to path, windows sdk etc, default C:\Program Files (x86)\Windows Kits\10\bin\10.0.17134.0\x64 | |
add nasm.exe https://www.nasm.us/pub/nasm/releasebuilds/2.13.03/win64/ default C:\Program Files\NASM | |
vcvars64.bat from 2017 folder default C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\VC\Auxiliary\Build | |
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\bin\amd64 | |
# no-shared for static libs | |
# inside openssl extracted source folder | |
perl configure VC-WIN64A --openssldir=C:\OpenSSL-Win64 no-asm no-shared | |