aboutsummaryrefslogtreecommitdiff
path: root/textures/base/pack/cdb_queued.png
diff options
context:
space:
mode:
authorAlex <24834740+GreenXenith@users.noreply.github.com>2022-01-15 08:45:33 -0800
committerGitHub <noreply@github.com>2022-01-15 17:45:33 +0100
commit7c93b2d7a3b681bcb10450229140858c4ba54c3c (patch)
tree47a9288018644303545e29fbbd8a233964afed0f /textures/base/pack/cdb_queued.png
parent9a12e4499ecf5c1a3467af9c831d0d350a21923d (diff)
downloadminetest-7c93b2d7a3b681bcb10450229140858c4ba54c3c.tar.gz
minetest-7c93b2d7a3b681bcb10450229140858c4ba54c3c.tar.bz2
minetest-7c93b2d7a3b681bcb10450229140858c4ba54c3c.zip
Give the ASCII console splash a facelift
Diffstat (limited to 'textures/base/pack/cdb_queued.png')
0 files changed, 0 insertions, 0 deletions
s="hl com"> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef JMUTEX_H #define JMUTEX_H #if (defined(WIN32) || defined(_WIN32_WCE)) #ifndef _WIN32_WINNT #define _WIN32_WINNT 0x0501 #endif #ifndef _WIN32_WCE #include <process.h> #endif // _WIN32_WCE #include <winsock2.h> #include <windows.h> // CriticalSection is way faster than the alternative #define JMUTEX_CRITICALSECTION #else // using pthread #include <pthread.h> #endif // WIN32 #define ERR_JMUTEX_ALREADYINIT -1 #define ERR_JMUTEX_NOTINIT -2 #define ERR_JMUTEX_CANTCREATEMUTEX -3 class JMutex { public: JMutex(); ~JMutex(); int Lock(); int Unlock(); private: #if (defined(WIN32) || defined(_WIN32_WCE)) #ifdef JMUTEX_CRITICALSECTION CRITICAL_SECTION mutex; #else // Use standard mutex