1 /* -*- mode: c ; c-file-style: "canonware-c-style" -*-
2  ******************************************************************************
3  *
4  * Copyright (C) 1996-2005 Jason Evans <jasone@canonware.com>.
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice(s), this list of conditions and the following disclaimer
12  *    unmodified other than the allowable addition of one or more
13  *    copyright notices.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice(s), this list of conditions and the following disclaimer in
16  *    the documentation and/or other materials provided with the
17  *    distribution.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) ``AS IS'' AND ANY
20  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) BE
23  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
26  * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
27  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
28  * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
29  * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30  *
31  ******************************************************************************
32  *
33  * Version: Onyx 5.1.2
34  *
35  ******************************************************************************/
36 
37 typedef cw_nxoe_t *cw_nxo_class_ref_iter_t (void *a_opaque, bool a_reset);
38 
39 typedef bool cw_nxo_class_delete_t (void *a_opaque, uint32_t a_iter);
40 
41 void
42 nxo_class_new(cw_nxo_t *a_nxo, void *a_opaque,
43 	      cw_nxo_class_ref_iter_t *a_ref_iter_f,
44 	      cw_nxo_class_delete_t *a_delete_f);
45 
46 cw_nxo_t *
47 nxo_class_name_get(const cw_nxo_t *a_nxo);
48 
49 cw_nxo_t *
50 nxo_class_super_get(const cw_nxo_t *a_nxo);
51 
52 cw_nxo_t *
53 nxo_class_methods_get(const cw_nxo_t *a_nxo);
54 
55 cw_nxo_t *
56 nxo_class_data_get(const cw_nxo_t *a_nxo);
57 
58 void *
59 nxo_class_opaque_get(const cw_nxo_t *a_nxo);
60 
61 void
62 nxo_class_opaque_set(cw_nxo_t *a_nxo, void *a_opaque);
63