blob: 5a1ff4f4fa73a920a3f54d38a478156ec7011e3d [file] [log] [blame]
[email protected]01cca0042012-04-16 19:13:021// Copyright (c) 2012 The Chromium Authors. All rights reserved.
[email protected]6476c72c2011-02-11 18:46:192// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5// No include guard, may be included multiple times.
6
7// NULL out all the macros that need NULLing, so that multiple includes of
8// the XXXX_messages_internal.h files will not generate noise.
[email protected]6766b172011-11-21 18:29:369#undef IPC_STRUCT_BEGIN_WITH_PARENT
[email protected]6476c72c2011-02-11 18:46:1910#undef IPC_STRUCT_MEMBER
11#undef IPC_STRUCT_END
12#undef IPC_STRUCT_TRAITS_BEGIN
13#undef IPC_STRUCT_TRAITS_MEMBER
[email protected]94dc971d2011-03-05 19:08:3214#undef IPC_STRUCT_TRAITS_PARENT
[email protected]6476c72c2011-02-11 18:46:1915#undef IPC_STRUCT_TRAITS_END
[email protected]dedd0a92013-06-04 07:20:3216#undef IPC_ENUM_TRAITS_VALIDATE
[email protected]d7a5e3e2011-03-12 16:28:3617#undef IPC_MESSAGE_DECL
[email protected]6476c72c2011-02-11 18:46:1918
[email protected]6766b172011-11-21 18:29:3619#define IPC_STRUCT_BEGIN_WITH_PARENT(struct_name, parent)
[email protected]01cca0042012-04-16 19:13:0220#define IPC_STRUCT_MEMBER(type, name, ...)
[email protected]6476c72c2011-02-11 18:46:1921#define IPC_STRUCT_END()
22#define IPC_STRUCT_TRAITS_BEGIN(struct_name)
23#define IPC_STRUCT_TRAITS_MEMBER(name)
[email protected]94dc971d2011-03-05 19:08:3224#define IPC_STRUCT_TRAITS_PARENT(type)
[email protected]6476c72c2011-02-11 18:46:1925#define IPC_STRUCT_TRAITS_END()
[email protected]dedd0a92013-06-04 07:20:3226#define IPC_ENUM_TRAITS_VALIDATE(enum_name, validation_expression)
[email protected]d7a5e3e2011-03-12 16:28:3627#define IPC_MESSAGE_DECL(sync, kind, msg_class, \
28 in_cnt, out_cnt, in_list, out_list)
29