Newer
Older
Import / projects / Gameloft / glwebtools / source / glwebtools / glwebtools_memorybarrier_win32.cpp
@John John on 29 Dec 2020 262 bytes bulk import from macbookpro checkouts
#include <glwebtools/internal/glwebtools_default_config.h>

#if GLWEBTOOLS_USE_WIN32_MEMORY_BARRIER

#include <glwebtools/os/glwebtools_memorybarrier.h>
#include <windows.h>

namespace glwebtools
{

void MemBar()
{
	MemoryBarrier();
}

}

#endif