1*ae771770SStanislav Sedov/* 2*ae771770SStanislav Sedov * Copyright (c) 2009 Kungliga Tekniska H�gskolan 3*ae771770SStanislav Sedov * (Royal Institute of Technology, Stockholm, Sweden). 4*ae771770SStanislav Sedov * All rights reserved. 5*ae771770SStanislav Sedov * 6*ae771770SStanislav Sedov * Portions Copyright (c) 2009 Apple Inc. All rights reserved. 7*ae771770SStanislav Sedov * 8*ae771770SStanislav Sedov * Redistribution and use in source and binary forms, with or without 9*ae771770SStanislav Sedov * modification, are permitted provided that the following conditions 10*ae771770SStanislav Sedov * are met: 11*ae771770SStanislav Sedov * 12*ae771770SStanislav Sedov * 1. Redistributions of source code must retain the above copyright 13*ae771770SStanislav Sedov * notice, this list of conditions and the following disclaimer. 14*ae771770SStanislav Sedov * 15*ae771770SStanislav Sedov * 2. Redistributions in binary form must reproduce the above copyright 16*ae771770SStanislav Sedov * notice, this list of conditions and the following disclaimer in the 17*ae771770SStanislav Sedov * documentation and/or other materials provided with the distribution. 18*ae771770SStanislav Sedov * 19*ae771770SStanislav Sedov * 3. Neither the name of the Institute nor the names of its contributors 20*ae771770SStanislav Sedov * may be used to endorse or promote products derived from this software 21*ae771770SStanislav Sedov * without specific prior written permission. 22*ae771770SStanislav Sedov * 23*ae771770SStanislav Sedov * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND 24*ae771770SStanislav Sedov * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 25*ae771770SStanislav Sedov * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 26*ae771770SStanislav Sedov * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE 27*ae771770SStanislav Sedov * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 28*ae771770SStanislav Sedov * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 29*ae771770SStanislav Sedov * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 30*ae771770SStanislav Sedov * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 31*ae771770SStanislav Sedov * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 32*ae771770SStanislav Sedov * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 33*ae771770SStanislav Sedov * SUCH DAMAGE. 34*ae771770SStanislav Sedov */ 35*ae771770SStanislav Sedov 36*ae771770SStanislav Sedov#include <mach/std_types.defs> 37*ae771770SStanislav Sedov#include <mach/mach_types.defs> 38*ae771770SStanislav Sedov 39*ae771770SStanislav Sedovtype heim_ipc_message_inband_t = array [ * : 2048 ] of char; 40*ae771770SStanislav Sedovtype heim_ipc_message_outband_t = array [] of char; 41*ae771770SStanislav Sedov 42*ae771770SStanislav Sedovimport "heim_ipc_types.h"; 43*ae771770SStanislav Sedov 44*ae771770SStanislav Sedovsubsystem heim_ipc 101; 45*ae771770SStanislav Sedovuserprefix mheim_ripc_; 46*ae771770SStanislav Sedov 47*ae771770SStanislav Sedovsimpleroutine call_reply( 48*ae771770SStanislav Sedov reply_port : mach_port_move_send_once_t; 49*ae771770SStanislav Sedov returnvalue : int; 50*ae771770SStanislav Sedov replyin : heim_ipc_message_inband_t; 51*ae771770SStanislav Sedov replyout : heim_ipc_message_outband_t, dealloc); 52