mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-22 04:25:13 +00:00
LibCore: Add includes for S_ISDIR on Windows
This commit is contained in:
parent
777dcdf6d0
commit
c66eb5db11
Notes:
github-actions[bot]
2024-12-09 00:33:15 +00:00
Author: https://github.com/R-Goc Commit: https://github.com/LadybirdBrowser/ladybird/commit/c66eb5db113 Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/2482
2 changed files with 8 additions and 0 deletions
|
@ -9,6 +9,10 @@
|
|||
#include <LibCore/ResourceImplementationFile.h>
|
||||
#include <LibCore/System.h>
|
||||
|
||||
#if defined(AK_OS_WINDOWS)
|
||||
# include <dirent.h>
|
||||
#endif
|
||||
|
||||
namespace Core {
|
||||
|
||||
static OwnPtr<ResourceImplementation> s_the;
|
||||
|
|
|
@ -11,6 +11,10 @@
|
|||
#include <LibCore/ResourceImplementationFile.h>
|
||||
#include <LibCore/System.h>
|
||||
|
||||
#if defined(AK_OS_WINDOWS)
|
||||
# include <dirent.h>
|
||||
#endif
|
||||
|
||||
namespace Core {
|
||||
|
||||
ResourceImplementationFile::ResourceImplementationFile(String base_directory)
|
||||
|
|
Loading…
Add table
Reference in a new issue