picrin/include/picrin/lib.h

26 lines
337 B
C
Raw Normal View History

2014-01-17 06:58:31 -05:00
/**
* See Copyright Notice in picrin.h
*/
2014-01-23 02:47:13 -05:00
#ifndef PICRIN_LIB_H__
#define PICRIN_LIB_H__
2013-12-07 06:58:18 -05:00
2014-01-17 22:41:39 -05:00
#if defined(__cplusplus)
extern "C" {
#endif
2013-12-07 06:58:18 -05:00
struct pic_lib {
PIC_OBJECT_HEADER
2013-12-07 21:59:13 -05:00
pic_value name;
2013-12-07 06:58:18 -05:00
struct pic_senv *senv;
xhash *exports;
2013-12-07 06:58:18 -05:00
};
2013-12-07 10:05:06 -05:00
#define pic_lib_ptr(o) ((struct pic_lib *)pic_ptr(o))
2014-01-17 22:41:39 -05:00
#if defined(__cplusplus)
}
#endif
2013-12-07 06:58:18 -05:00
#endif