Descent3/ui
Chris Sarbora 3da53e567f
Programmatically replace all __LINUX__ with POSIX
Steps:
```sh
srcs=$(mktemp)
find . -name "*.cpp" -or -name "*.c" -or -name "*.h" -or -name "*.hpp" -or -name "*.cc" -or -name "*.hh" > $srcs
xargs sed -i 's/ifndef __LINUX__/if !defined(POSIX)/' < $srcs
xargs sed -i 's/ifdef __LINUX__/if defined(POSIX)/' < $srcs
xargs sed -i 's/defined(__LINUX__)/defined(POSIX)/' < $srcs
```
2024-07-12 18:11:54 -05:00
..
CMakeLists.txt Isolate misc module 2024-06-27 01:26:35 +03:00
UIButton.cpp Programmatically replace all __LINUX__ with POSIX 2024-07-12 18:11:54 -05:00
UICombo.cpp Join license header with historical commentrs 2024-05-08 14:41:19 -04:00
UIConsole.cpp Replace "ubyte" with "uint8_t" 2024-05-23 23:07:26 -04:00
UIDraw.cpp Replace "ubyte" with "uint8_t" 2024-05-23 23:07:26 -04:00
UIEdit.cpp Properly format/use variadic macros 2024-05-24 20:57:17 -04:00
UIGadget.cpp Join license header with historical commentrs 2024-05-08 14:41:19 -04:00
UIGroup.cpp Join license header with historical commentrs 2024-05-08 14:41:19 -04:00
UIHotspot.cpp Join license header with historical commentrs 2024-05-08 14:41:19 -04:00
UIlib.h Modernize struct/enum/unions type declarations 2024-05-30 03:35:17 -04:00
UIListBox.cpp Properly format/use variadic macros 2024-05-24 20:57:17 -04:00
UIObject.cpp Properly format/use variadic macros 2024-05-24 20:57:17 -04:00
UIRes.cpp Properly format/use variadic macros 2024-05-24 20:57:17 -04:00
UISlider.cpp Properly format/use variadic macros 2024-05-24 20:57:17 -04:00
UIStatic.cpp Join license header with historical commentrs 2024-05-08 14:41:19 -04:00
UISystem.cpp Modernize struct/enum/unions type declarations 2024-05-30 03:35:17 -04:00
UIWindow.cpp Properly format/use variadic macros 2024-05-24 20:57:17 -04:00