2 * A simple interface to test the RPC server.
4 * Copyright (C) Google 2007 (Dan Hipschman)
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #include
"server_defines.h"
23 typedef struct tag_vector
31 uuid(00000000-4114-0704-2301-000000000000),
32 implicit_handle
(handle_t IServer_IfHandle
)
63 [case(SUN_F1
, SUN_F2
)] float f
;
64 [case(SUN_PI
)] int *pi
;
72 int sum
(int x
, int y
);
73 void square_out
(int x
, [out] int *y
);
74 void square_ref
([in, out] int *x
);
75 int str_length
([string] const char *s
);
76 int dot_self
(vector_t
*v
);
77 double square_half
(double x
, [out] double *y
);
78 float square_half_float
(float x
, [out] float *y
);
79 long square_half_long
(long x
, [out] long *y
);
80 int sum_fixed_array
(int a
[5]);
81 int pints_sum
(pints_t
*pints
);
82 double ptypes_sum
(ptypes_t
*ptypes
);
83 int dot_pvectors
(pvectors_t
*pvectors
);
85 /* don't use this anywhere except in sp_t */
98 double square_sun
(sun_t
*su
);
100 typedef struct test_list
105 [case(TL_NULL
)] int x
; /* end of list */
106 [case(TL_LIST
)] struct test_list
*tail
;
110 int test_list_length
(test_list_t
*ls
);
111 int sum_fixed_int_3d
(int m
[2][3][4]);
112 int sum_conf_array
([size_is(n
)] int x
[], int n
);
113 int sum_var_array
([length_is(n
)] int x
[20], int n
);
114 int dot_two_vectors
(vector_t vs
[2]);