Bug 1916262 - Remove AbortFollower inheritance from AbortSignal r=smaug
[gecko.git] / ipc / glue / IPCTypes.h
blobfc6bf765e27158bc7579811e0653b6291dd0c2b7
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef IPC_GLUE_IPCTYPES_H_
8 #define IPC_GLUE_IPCTYPES_H_
10 #include <cstdint>
12 namespace mozilla {
14 // This is a cross-platform approximation to HANDLE, which we expect
15 // to be typedef'd to void* or thereabouts.
16 typedef uintptr_t WindowsHandle;
18 } // namespace mozilla
20 #endif // IPC_GLUE_IPCTYPES_H_