diff options
author | Lubomir I. Ivanov <neolit123@gmail.com> | 2012-10-20 02:31:06 +0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2012-10-19 21:14:00 -0700 |
commit | 5b3e480be3c61ea790ee2a39727ffad1c3487178 (patch) | |
tree | 235fba45e16d13408dad2fe939dd813387d045c0 /macos.c | |
parent | a75b04473fdca8fa494f18966d06d28fb096646a (diff) | |
download | subsurface-5b3e480be3c61ea790ee2a39727ffad1c3487178.tar.gz |
Added a function to check if specific OS features are available
linux.c, macos.c, windows.c now contain
subsurface_os_feature_available() that can accept an enum type
os_feature_t defined in dive.h.
The function can be useful to check if a specific global feature
is available on a certain OS version.
Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'macos.c')
-rw-r--r-- | macos.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -172,3 +172,8 @@ void subsurface_command_line_exit(gint *argc, gchar ***argv) { /* this is a no-op */ } + +gboolean subsurface_os_feature_available(os_feature_t f) +{ + return TRUE; +} |