Skip to content

Instantly share code, notes, and snippets.

View StanislavNikolov's full-sized avatar

Stanislav Ch. Nikolov StanislavNikolov

View GitHub Profile
@danluu
danluu / tested.txt
Last active October 31, 2019 07:40
Devices tested
Phones / handhelds
===========================
pixel
iphone 6
one plus 3t
iphone 6s
iphone 3gs
iphone 4s
iphone 7
blackberry 10?
// compile this like g++ go2.c -lgdi32 [if you're using mingw]
#include <windows.h>
#include <stdio.h>
// Helper function to retrieve current position of file pointer:
inline int GetFilePointer(HANDLE FileHandle){
return SetFilePointer(FileHandle, 0, 0, FILE_CURRENT);
}
//---------------------------------------------------------------------------