Sha256: 09cd4a9673d25b567cee277355bb1b732832b6ea34cc5402995bcebfb1407f19
Contents?: true
Size: 393 Bytes
Versions: 57
Compression:
Stored size: 393 Bytes
Contents
#include "reflex/reflex.h" #include <windows.h> namespace Reflex { namespace global { static bool init = false; }// global bool initialized () { return global::init; } bool init () { if (global::init) return false; global::init = true; return true; } bool fin () { if (!global::init) return false; global::init = false; return true; } }// Reflex
Version data entries
57 entries across 57 versions & 1 rubygems