mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-01 00:38:48 +00:00
SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
21 lines
361 B
C
21 lines
361 B
C
/*
|
|
* Copyright (c) 2020, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Types.h>
|
|
|
|
struct [[gnu::packed]] InodeWatcherEvent {
|
|
enum class Type {
|
|
Invalid = 0,
|
|
Modified,
|
|
ChildAdded,
|
|
ChildRemoved,
|
|
};
|
|
|
|
Type type { Type::Invalid };
|
|
unsigned inode_index { 0 };
|
|
};
|