| 1 | // LAF Base Library |
|---|---|
| 2 | // Copyright (c) 2021 Igara Studio S.A. |
| 3 | // Copyright (c) 2016 David Capello |
| 4 | // |
| 5 | // This file is released under the terms of the MIT license. |
| 6 | // Read LICENSE.txt for more information. |
| 7 | |
| 8 | #ifdef HAVE_CONFIG_H |
| 9 | #include "config.h" |
| 10 | #endif |
| 11 | |
| 12 | #include "base/dll.h" |
| 13 | |
| 14 | #if LAF_WINDOWS |
| 15 | #include "base/dll_win32.h" |
| 16 | #else |
| 17 | #include "base/dll_unix.h" |
| 18 | #endif |
| 19 |