Skip to content

Instantly share code, notes, and snippets.

@kika123
kika123 / ARMCodeTest.c
Created March 4, 2016 19:33 — forked from Myriachan/ARMCodeTest.c
ARM code support on Windows RT/IoT detection and example.
// ARM code support on Windows RT/IoT detection and example.
// By Myria, 2016/03/03.
#ifndef _M_ARM_NT
#error "This code is for ARMv7-Thumb2 only."
#endif
#define _WIN32_WINNT 0x0602
#include <errno.h>