diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-12-26 10:08:33 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-12-26 10:08:33 +0100 |
| commit | 9e746d42d2e3faa526f12ba222f5ee6924dd30f9 (patch) | |
| tree | 7f1a83f69562a2725bb9cda27c31d120640d2c1c /public/tools | |
| parent | 731758b271233b9c11052001ffc20a5a2ca1f365 (diff) | |
feat! breaking API changes, use header guards and libSystem fixes.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'public/tools')
| -rw-r--r-- | public/tools/diutil/vendor/Dialogs.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/public/tools/diutil/vendor/Dialogs.h b/public/tools/diutil/vendor/Dialogs.h index e5e6d83a..d1bbd7a2 100644 --- a/public/tools/diutil/vendor/Dialogs.h +++ b/public/tools/diutil/vendor/Dialogs.h @@ -10,7 +10,8 @@ // See http://www.wtfpl.net/ for more details. // -#pragma once +#ifndef VENDOR_DIALOGS_H +#define VENDOR_DIALOGS_H #if _WIN32 #ifndef WIN32_LEAN_AND_MEAN @@ -1735,4 +1736,6 @@ inline std::string select_folder::result() { #endif // PFD_SKIP_IMPLEMENTATION -} // namespace pfd
\ No newline at end of file +} // namespace pfd + +#endif |
