Skip to content

Instantly share code, notes, and snippets.

View dantmnf's full-sized avatar
💭
🀇🀇🀊🀋🀇🀊🀙🀡🀙🀡🀗🀐🀆

dantmnf

💭
🀇🀇🀊🀋🀇🀊🀙🀡🀙🀡🀗🀐🀆
  • On9 Technologies Ltd.
View GitHub Profile
@dantmnf
dantmnf / stm.c
Last active December 17, 2015 23:39
a small program to show the time spent from Windows startup
#define UNICODE
#include <windows.h>
#ifdef __GNUC__
#define wWinMain WinMain //MinGW does not support wWinMain
#define WINMAIN_CMDLINE_TYPE LPSTR
#else
#define WINMAIN_CMDLINE_TYPE LPWSTR
#endif