mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-20 16:13:21 +00:00
19 lines
216 B
C
19 lines
216 B
C
![]() |
/*
|
||
|
* Copyright (c) 2025, stasoid <stasoid@yahoo.com>
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <AK/Types.h>
|
||
|
|
||
|
namespace IPC {
|
||
|
|
||
|
enum class HandleType : u8 {
|
||
|
Generic,
|
||
|
Socket
|
||
|
};
|
||
|
|
||
|
}
|