I hereby claim:
- I am dimenus on github.
- I am rsaunderson88 (https://keybase.io/rsaunderson88) on keybase.
- I have a public key ASBFI8b7eRth3BO3h9594uxRdaVrbN9sYK-e4L_RSilvewo
To claim this, I am signing this object:
using System; | |
using System.Data.Common; | |
using System.Net.Mime; | |
using System.Threading; | |
using System.Threading.Tasks; | |
using FastEndpoints; | |
using i3Hcs.ModelApi; | |
using i3v.Esi.OData; | |
using i3v.Esi.OData.Serialization; | |
using Microsoft.OData.UriParser; |
I hereby claim:
To claim this, I am signing this object:
package sample | |
import "core:sys/win32" | |
import "core:fmt" | |
import plat "./d3d" | |
WIN_STYLE :: win32.WS_CLIPSIBLINGS | win32.WS_CLIPCHILDREN | win32.WS_CAPTION | | |
win32.WS_SYSMENU | win32.WS_MINIMIZEBOX | win32.WS_MAXIMIZEBOX | win32.WS_SIZEBOX; |
if(counter == buf_len) { | |
//this bit (31) gets set when we've hit the end of a valid word | |
*current_slot |= (1 << 31); | |
break; | |
} | |
//if we're not at the end of a word and memory hasn't been allocated for the next level | |
//set bit 30 and get memory from the pool | |
if((*current_slot & (1 << 30)) == 0) { | |
*current_slot += MemoryPoolOffset + (1 << 30); |
struct IntArray | |
{ | |
int Length; | |
int MaxLength; | |
int *Data; | |
}; | |
void PushToIntArray(struct IntArray *int_array, int value) | |
{ | |
if((int_array->Length + 1) >= int_array->MaxLength) { |