This file contains hidden or 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
| Phones / handhelds | |
| =========================== | |
| pixel | |
| iphone 6 | |
| one plus 3t | |
| iphone 6s | |
| iphone 3gs | |
| iphone 4s | |
| iphone 7 | |
| blackberry 10? |
This file contains hidden or 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
| // 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); | |
| } | |
| //--------------------------------------------------------------------------- |