From 0b3d69976819219e71350b6a988d1704fd5f0746 Mon Sep 17 00:00:00 2001 From: talha Date: Thu, 27 Nov 2025 13:18:57 +0500 Subject: Added files to git. Current State: - hot reloading - math library (calcify) - triangle rendering (unbatched) - orthographic projection (no camera) - layer isolation setup (platform vs game) --- source/fswatcher/fswatcher_osx.cpp | 43 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 source/fswatcher/fswatcher_osx.cpp (limited to 'source/fswatcher/fswatcher_osx.cpp') diff --git a/source/fswatcher/fswatcher_osx.cpp b/source/fswatcher/fswatcher_osx.cpp new file mode 100644 index 0000000..433bdd2 --- /dev/null +++ b/source/fswatcher/fswatcher_osx.cpp @@ -0,0 +1,43 @@ +/* + A small drop-in library for watching the filesystem for changes. + + version 0.1, february, 2015 + + Copyright (C) 2015- Fredrik Kihlander + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + + Fredrik Kihlander +*/ + +#include + +fswatcher_t fswatcher_create( fswatcher_create_flags flags, fswatcher_event_type types, const char* watch_dir, fswatcher_allocator* allocator ) +{ + (void)flags; (void)types; (void)watch_dir; (void)allocator; + return 0x0; +} + +void fswatcher_destroy( fswatcher_t watcher ) +{ + (void)watcher; +} + +void fswatcher_poll( fswatcher_t watcher, fswatcher_event_handler* handler, fswatcher_allocator* allocator ) +{ + (void)watcher; (void)handler; (void)allocator; +} -- cgit v1.2.3