Descent3/sndlib
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
..
auddev.h
CMakeLists.txt Windows SDL2 compilation 2024-06-29 18:21:37 +02:00
ddsndgeometry.h Reorganize ddsndgeometry code 2024-05-22 22:03:46 +03:00
ddsoundload.cpp Replace Global* memory functions 2024-06-15 22:07:45 +03:00
ds3dlib_internal.h Modernize struct/enum/unions type declarations 2024-05-30 03:35:17 -04:00
ds3dlib.h Replace "short" with "int16_t" and fix missing headers 2024-05-23 23:49:31 -04:00
hlsoundlib.cpp Windows SDL2 compilation 2024-06-29 18:21:37 +02:00
hlsoundlib.h Replace "ubyte" with "uint8_t" 2024-05-23 23:07:26 -04:00
mixer.cpp Properly format/use variadic macros 2024-05-24 20:57:17 -04:00
mixer.h Modernize struct/enum/unions type declarations 2024-05-30 03:35:17 -04:00
sdlgeometry.cpp Reorganize ddsndgeometry code 2024-05-22 22:03:46 +03:00
sdlsound.cpp Set SDL_OpenAudioDevice allowed_changes flag to 0 for Windows compatibility. 2024-06-29 18:28:22 +02:00
sdlsound.h Replace "short" with "int16_t" and fix missing headers 2024-05-23 23:49:31 -04:00
sndrender.cpp Add one macro, remove five others 2024-05-31 12:05:12 -04:00
sndrender.h Replace "short" with "int16_t" and fix missing headers 2024-05-23 23:49:31 -04:00
soundload.cpp Programmatically replace all __LINUX__ with POSIX 2024-07-12 18:11:54 -05:00
soundload.h
ssl_lib.cpp
ssl_lib.h Modernize struct/enum/unions type declarations 2024-05-30 03:35:17 -04:00
vmanpset.h Modernize struct/enum/unions type declarations 2024-05-30 03:35:17 -04:00