1/*
2 * Copyright (c) 2006-2008, The RubyCocoa Project.
3 * Copyright (c) 2001-2006, FUJIMOTO Hisakuni.
4 * All Rights Reserved.
5 *
6 * RubyCocoa is free software, covered under either the Ruby's license or the
7 * LGPL. See the COPYRIGHT file for more information.
8 */
9
10#import "osx_ruby.h"
11
12/** class methods **/
13VALUE objcptr_s_class ();
14VALUE objcptr_s_new_with_cptr (void* cptr, const char *encoding);
15
16/** instance methods **/
17void* objcptr_cptr (VALUE rcv);
18long objcptr_allocated_size(VALUE rcv);
19
20/** initial loading **/
21VALUE init_cls_ObjcPtr (VALUE outer);
22