I hereby claim:
- I am thekingofatlantis on github.
- I am kingofatlantis (https://keybase.io/kingofatlantis) on keybase.
- I have a public key ASBIKo5bdQMGr8R7aE2qIrxnQMiPgnisD08Lc3me6WRmqwo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| # <type>:<subject> (Max 50 char) | |
| # -------------------- | |
| # Type can be: | |
| # Feature (new feature) | |
| # Fix (bug fix) | |
| # Refactor (refactoring production code) | |
| # Style (formatting, missing semi colons, etc; no code change) | |
| # Docs (changes to documentation) | |
| # Test (adding or refactoring tests; no production code change) | |
| # Chore (updating grunt tasks etc; no production code change) |
| /*******************************************************************************\ | |
| * @brief Defines whether a type is a C-style string type | |
| *** | |
| * @tparam Type - The type to check | |
| \*******************************************************************************/ | |
| template<template Type> struct is_c_string_type | |
| : std::integral_constant<bool, | |
| std::is_same<Type, CString>::value || | |
| std::is_same<Type, WCString>::value || | |
| std::is_same<Type, CString16>::value || |
| #include "Zleep.h" | |
| #include <Windows.h> | |
| void zleep(unsigned int period) { | |
| #if defined(_WIN32) | |
| sleep(period) | |
| #elif defined(__unix__) | |
| sleep(period/1000); | |
| #endif |