Class: Notcurses::NcprogbarOptions
- Inherits:
-
Object
- Object
- Notcurses::NcprogbarOptions
- Defined in:
- ext/notcurses/src/notcurses_wrap.c,
ext/notcurses/src/notcurses_wrap.c
Overview
Proxy of C Notcurses::NcprogbarOptions struct
Instance Method Summary collapse
-
#blchannel(*args) ⇒ Object
call-seq: blchannel -> uint32_t.
-
#blchannel=(*args) ⇒ Object
call-seq: blchannel=(x) -> uint32_t.
-
#brchannel(*args) ⇒ Object
call-seq: brchannel -> uint32_t.
-
#brchannel=(*args) ⇒ Object
call-seq: brchannel=(x) -> uint32_t.
-
#flags(*args) ⇒ Object
call-seq: flags -> uint64_t.
-
#flags=(*args) ⇒ Object
call-seq: flags=(x) -> uint64_t.
-
#initialize(*args) ⇒ Object
constructor
call-seq: NcprogbarOptions.new.
-
#ulchannel(*args) ⇒ Object
call-seq: ulchannel -> uint32_t.
-
#ulchannel=(*args) ⇒ Object
call-seq: ulchannel=(x) -> uint32_t.
-
#urchannel(*args) ⇒ Object
call-seq: urchannel -> uint32_t.
-
#urchannel=(*args) ⇒ Object
call-seq: urchannel=(x) -> uint32_t.
Constructor Details
#initialize(*args) ⇒ Object
59737 59738 59739 59740 59741 59742 59743 59744 59745 59746 59747 59748 59749 |
# File 'ext/notcurses/src/notcurses_wrap.c', line 59737
SWIGINTERN VALUE
_wrap_new_NcprogbarOptions(int argc, VALUE *argv, VALUE self) {
struct ncprogbar_options *result = 0 ;
if ((argc < 0) || (argc > 0)) {
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc); SWIG_fail;
}
result = (struct ncprogbar_options *)calloc(1, sizeof(struct ncprogbar_options));
DATA_PTR(self) = result;
return self;
fail:
return Qnil;
}
|
Instance Method Details
#blchannel(*args) ⇒ Object
call-seq:
blchannel -> uint32_t
Get value of attribute.
59465 59466 59467 59468 59469 59470 59471 59472 59473 59474 59475 59476 59477 59478 59479 59480 59481 59482 59483 59484 59485 59486 59487 59488 59489 59490 59491 59492 59493 59494 59495 59496 59497 59498 59499 59500 59501 59502 |
# File 'ext/notcurses/src/notcurses_wrap.c', line 59465
SWIGINTERN VALUE
_wrap_NcprogbarOptions_blchannel_get(int argc, VALUE *argv, VALUE self) {
struct ncprogbar_options *arg1 = (struct ncprogbar_options *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
uint32_t result;
VALUE vresult = Qnil;
if ((argc < 0) || (argc > 0)) {
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc); SWIG_fail;
}
res1 = SWIG_ConvertPtr(self, &argp1,SWIGTYPE_p_ncprogbar_options, 0 | 0 );
if (!SWIG_IsOK(res1)) {
SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "struct ncprogbar_options *","blchannel", 1, self ));
}
arg1 = (struct ncprogbar_options *)(argp1);
result = (uint32_t) ((arg1)->blchannel);
vresult = SWIG_From_unsigned_SS_int((unsigned int)(result));
{
if (vresult == Qnil) {
vresult = rb_hash_new();
}
if (!RB_TYPE_P(vresult, T_HASH)) {
VALUE temp = rb_hash_new();
rb_hash_aset(temp, ID2SYM(rb_intern("return")), vresult);
vresult = temp;
}
swig_type_info *ty = SWIG_TypeQuery("struct ncprogbar_options *");
if (!ty) ty = SWIGTYPE_p_ncprogbar_options;
VALUE obj = SWIG_NewPointerObj((void *)arg1, ty, 0);
rb_hash_aset(vresult, ID2SYM(rb_intern("self")), obj);
}
return vresult;
fail:
return Qnil;
}
|
#blchannel=(*args) ⇒ Object
call-seq:
blchannel=(x) -> uint32_t
Set new value for attribute.
59419 59420 59421 59422 59423 59424 59425 59426 59427 59428 59429 59430 59431 59432 59433 59434 59435 59436 59437 59438 59439 59440 59441 59442 59443 59444 59445 59446 59447 59448 59449 59450 59451 59452 59453 59454 59455 59456 59457 59458 59459 59460 59461 59462 |
# File 'ext/notcurses/src/notcurses_wrap.c', line 59419
SWIGINTERN VALUE
_wrap_NcprogbarOptions_blchannel_set(int argc, VALUE *argv, VALUE self) {
struct ncprogbar_options *arg1 = (struct ncprogbar_options *) 0 ;
uint32_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
unsigned int val2 ;
int ecode2 = 0 ;
VALUE vresult = Qnil;
if ((argc < 1) || (argc > 1)) {
rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc); SWIG_fail;
}
res1 = SWIG_ConvertPtr(self, &argp1,SWIGTYPE_p_ncprogbar_options, 0 | 0 );
if (!SWIG_IsOK(res1)) {
SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "struct ncprogbar_options *","blchannel", 1, self ));
}
arg1 = (struct ncprogbar_options *)(argp1);
ecode2 = SWIG_AsVal_unsigned_SS_int(argv[0], &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), Ruby_Format_TypeError( "", "uint32_t","blchannel", 2, argv[0] ));
}
arg2 = (uint32_t)(val2);
if (arg1) (arg1)->blchannel = arg2;
{
if (vresult == Qnil) {
vresult = rb_hash_new();
}
if (!RB_TYPE_P(vresult, T_HASH)) {
VALUE temp = rb_hash_new();
rb_hash_aset(temp, ID2SYM(rb_intern("return")), vresult);
vresult = temp;
}
swig_type_info *ty = SWIG_TypeQuery("struct ncprogbar_options *");
if (!ty) ty = SWIGTYPE_p_ncprogbar_options;
VALUE obj = SWIG_NewPointerObj((void *)arg1, ty, 0);
rb_hash_aset(vresult, ID2SYM(rb_intern("self")), obj);
}
return vresult;
fail:
return Qnil;
}
|
#brchannel(*args) ⇒ Object
call-seq:
brchannel -> uint32_t
Get value of attribute.
59569 59570 59571 59572 59573 59574 59575 59576 59577 59578 59579 59580 59581 59582 59583 59584 59585 59586 59587 59588 59589 59590 59591 59592 59593 59594 59595 59596 59597 59598 59599 59600 59601 59602 59603 59604 59605 59606 |
# File 'ext/notcurses/src/notcurses_wrap.c', line 59569
SWIGINTERN VALUE
_wrap_NcprogbarOptions_brchannel_get(int argc, VALUE *argv, VALUE self) {
struct ncprogbar_options *arg1 = (struct ncprogbar_options *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
uint32_t result;
VALUE vresult = Qnil;
if ((argc < 0) || (argc > 0)) {
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc); SWIG_fail;
}
res1 = SWIG_ConvertPtr(self, &argp1,SWIGTYPE_p_ncprogbar_options, 0 | 0 );
if (!SWIG_IsOK(res1)) {
SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "struct ncprogbar_options *","brchannel", 1, self ));
}
arg1 = (struct ncprogbar_options *)(argp1);
result = (uint32_t) ((arg1)->brchannel);
vresult = SWIG_From_unsigned_SS_int((unsigned int)(result));
{
if (vresult == Qnil) {
vresult = rb_hash_new();
}
if (!RB_TYPE_P(vresult, T_HASH)) {
VALUE temp = rb_hash_new();
rb_hash_aset(temp, ID2SYM(rb_intern("return")), vresult);
vresult = temp;
}
swig_type_info *ty = SWIG_TypeQuery("struct ncprogbar_options *");
if (!ty) ty = SWIGTYPE_p_ncprogbar_options;
VALUE obj = SWIG_NewPointerObj((void *)arg1, ty, 0);
rb_hash_aset(vresult, ID2SYM(rb_intern("self")), obj);
}
return vresult;
fail:
return Qnil;
}
|
#brchannel=(*args) ⇒ Object
call-seq:
brchannel=(x) -> uint32_t
Set new value for attribute.
59523 59524 59525 59526 59527 59528 59529 59530 59531 59532 59533 59534 59535 59536 59537 59538 59539 59540 59541 59542 59543 59544 59545 59546 59547 59548 59549 59550 59551 59552 59553 59554 59555 59556 59557 59558 59559 59560 59561 59562 59563 59564 59565 59566 |
# File 'ext/notcurses/src/notcurses_wrap.c', line 59523
SWIGINTERN VALUE
_wrap_NcprogbarOptions_brchannel_set(int argc, VALUE *argv, VALUE self) {
struct ncprogbar_options *arg1 = (struct ncprogbar_options *) 0 ;
uint32_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
unsigned int val2 ;
int ecode2 = 0 ;
VALUE vresult = Qnil;
if ((argc < 1) || (argc > 1)) {
rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc); SWIG_fail;
}
res1 = SWIG_ConvertPtr(self, &argp1,SWIGTYPE_p_ncprogbar_options, 0 | 0 );
if (!SWIG_IsOK(res1)) {
SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "struct ncprogbar_options *","brchannel", 1, self ));
}
arg1 = (struct ncprogbar_options *)(argp1);
ecode2 = SWIG_AsVal_unsigned_SS_int(argv[0], &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), Ruby_Format_TypeError( "", "uint32_t","brchannel", 2, argv[0] ));
}
arg2 = (uint32_t)(val2);
if (arg1) (arg1)->brchannel = arg2;
{
if (vresult == Qnil) {
vresult = rb_hash_new();
}
if (!RB_TYPE_P(vresult, T_HASH)) {
VALUE temp = rb_hash_new();
rb_hash_aset(temp, ID2SYM(rb_intern("return")), vresult);
vresult = temp;
}
swig_type_info *ty = SWIG_TypeQuery("struct ncprogbar_options *");
if (!ty) ty = SWIGTYPE_p_ncprogbar_options;
VALUE obj = SWIG_NewPointerObj((void *)arg1, ty, 0);
rb_hash_aset(vresult, ID2SYM(rb_intern("self")), obj);
}
return vresult;
fail:
return Qnil;
}
|
#flags(*args) ⇒ Object
call-seq:
flags -> uint64_t
Get value of attribute.
59673 59674 59675 59676 59677 59678 59679 59680 59681 59682 59683 59684 59685 59686 59687 59688 59689 59690 59691 59692 59693 59694 59695 59696 59697 59698 59699 59700 59701 59702 59703 59704 59705 59706 59707 59708 59709 59710 |
# File 'ext/notcurses/src/notcurses_wrap.c', line 59673
SWIGINTERN VALUE
_wrap_NcprogbarOptions_flags_get(int argc, VALUE *argv, VALUE self) {
struct ncprogbar_options *arg1 = (struct ncprogbar_options *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
uint64_t result;
VALUE vresult = Qnil;
if ((argc < 0) || (argc > 0)) {
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc); SWIG_fail;
}
res1 = SWIG_ConvertPtr(self, &argp1,SWIGTYPE_p_ncprogbar_options, 0 | 0 );
if (!SWIG_IsOK(res1)) {
SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "struct ncprogbar_options *","flags", 1, self ));
}
arg1 = (struct ncprogbar_options *)(argp1);
result = (uint64_t) ((arg1)->flags);
vresult = SWIG_From_unsigned_SS_long((unsigned long)(result));
{
if (vresult == Qnil) {
vresult = rb_hash_new();
}
if (!RB_TYPE_P(vresult, T_HASH)) {
VALUE temp = rb_hash_new();
rb_hash_aset(temp, ID2SYM(rb_intern("return")), vresult);
vresult = temp;
}
swig_type_info *ty = SWIG_TypeQuery("struct ncprogbar_options *");
if (!ty) ty = SWIGTYPE_p_ncprogbar_options;
VALUE obj = SWIG_NewPointerObj((void *)arg1, ty, 0);
rb_hash_aset(vresult, ID2SYM(rb_intern("self")), obj);
}
return vresult;
fail:
return Qnil;
}
|
#flags=(*args) ⇒ Object
call-seq:
flags=(x) -> uint64_t
Set new value for attribute.
59627 59628 59629 59630 59631 59632 59633 59634 59635 59636 59637 59638 59639 59640 59641 59642 59643 59644 59645 59646 59647 59648 59649 59650 59651 59652 59653 59654 59655 59656 59657 59658 59659 59660 59661 59662 59663 59664 59665 59666 59667 59668 59669 59670 |
# File 'ext/notcurses/src/notcurses_wrap.c', line 59627
SWIGINTERN VALUE
_wrap_NcprogbarOptions_flags_set(int argc, VALUE *argv, VALUE self) {
struct ncprogbar_options *arg1 = (struct ncprogbar_options *) 0 ;
uint64_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
unsigned long val2 ;
int ecode2 = 0 ;
VALUE vresult = Qnil;
if ((argc < 1) || (argc > 1)) {
rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc); SWIG_fail;
}
res1 = SWIG_ConvertPtr(self, &argp1,SWIGTYPE_p_ncprogbar_options, 0 | 0 );
if (!SWIG_IsOK(res1)) {
SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "struct ncprogbar_options *","flags", 1, self ));
}
arg1 = (struct ncprogbar_options *)(argp1);
ecode2 = SWIG_AsVal_unsigned_SS_long(argv[0], &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), Ruby_Format_TypeError( "", "uint64_t","flags", 2, argv[0] ));
}
arg2 = (uint64_t)(val2);
if (arg1) (arg1)->flags = arg2;
{
if (vresult == Qnil) {
vresult = rb_hash_new();
}
if (!RB_TYPE_P(vresult, T_HASH)) {
VALUE temp = rb_hash_new();
rb_hash_aset(temp, ID2SYM(rb_intern("return")), vresult);
vresult = temp;
}
swig_type_info *ty = SWIG_TypeQuery("struct ncprogbar_options *");
if (!ty) ty = SWIGTYPE_p_ncprogbar_options;
VALUE obj = SWIG_NewPointerObj((void *)arg1, ty, 0);
rb_hash_aset(vresult, ID2SYM(rb_intern("self")), obj);
}
return vresult;
fail:
return Qnil;
}
|
#ulchannel(*args) ⇒ Object
call-seq:
ulchannel -> uint32_t
Get value of attribute.
59257 59258 59259 59260 59261 59262 59263 59264 59265 59266 59267 59268 59269 59270 59271 59272 59273 59274 59275 59276 59277 59278 59279 59280 59281 59282 59283 59284 59285 59286 59287 59288 59289 59290 59291 59292 59293 59294 |
# File 'ext/notcurses/src/notcurses_wrap.c', line 59257
SWIGINTERN VALUE
_wrap_NcprogbarOptions_ulchannel_get(int argc, VALUE *argv, VALUE self) {
struct ncprogbar_options *arg1 = (struct ncprogbar_options *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
uint32_t result;
VALUE vresult = Qnil;
if ((argc < 0) || (argc > 0)) {
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc); SWIG_fail;
}
res1 = SWIG_ConvertPtr(self, &argp1,SWIGTYPE_p_ncprogbar_options, 0 | 0 );
if (!SWIG_IsOK(res1)) {
SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "struct ncprogbar_options *","ulchannel", 1, self ));
}
arg1 = (struct ncprogbar_options *)(argp1);
result = (uint32_t) ((arg1)->ulchannel);
vresult = SWIG_From_unsigned_SS_int((unsigned int)(result));
{
if (vresult == Qnil) {
vresult = rb_hash_new();
}
if (!RB_TYPE_P(vresult, T_HASH)) {
VALUE temp = rb_hash_new();
rb_hash_aset(temp, ID2SYM(rb_intern("return")), vresult);
vresult = temp;
}
swig_type_info *ty = SWIG_TypeQuery("struct ncprogbar_options *");
if (!ty) ty = SWIGTYPE_p_ncprogbar_options;
VALUE obj = SWIG_NewPointerObj((void *)arg1, ty, 0);
rb_hash_aset(vresult, ID2SYM(rb_intern("self")), obj);
}
return vresult;
fail:
return Qnil;
}
|
#ulchannel=(*args) ⇒ Object
call-seq:
ulchannel=(x) -> uint32_t
Set new value for attribute.
59211 59212 59213 59214 59215 59216 59217 59218 59219 59220 59221 59222 59223 59224 59225 59226 59227 59228 59229 59230 59231 59232 59233 59234 59235 59236 59237 59238 59239 59240 59241 59242 59243 59244 59245 59246 59247 59248 59249 59250 59251 59252 59253 59254 |
# File 'ext/notcurses/src/notcurses_wrap.c', line 59211
SWIGINTERN VALUE
_wrap_NcprogbarOptions_ulchannel_set(int argc, VALUE *argv, VALUE self) {
struct ncprogbar_options *arg1 = (struct ncprogbar_options *) 0 ;
uint32_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
unsigned int val2 ;
int ecode2 = 0 ;
VALUE vresult = Qnil;
if ((argc < 1) || (argc > 1)) {
rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc); SWIG_fail;
}
res1 = SWIG_ConvertPtr(self, &argp1,SWIGTYPE_p_ncprogbar_options, 0 | 0 );
if (!SWIG_IsOK(res1)) {
SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "struct ncprogbar_options *","ulchannel", 1, self ));
}
arg1 = (struct ncprogbar_options *)(argp1);
ecode2 = SWIG_AsVal_unsigned_SS_int(argv[0], &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), Ruby_Format_TypeError( "", "uint32_t","ulchannel", 2, argv[0] ));
}
arg2 = (uint32_t)(val2);
if (arg1) (arg1)->ulchannel = arg2;
{
if (vresult == Qnil) {
vresult = rb_hash_new();
}
if (!RB_TYPE_P(vresult, T_HASH)) {
VALUE temp = rb_hash_new();
rb_hash_aset(temp, ID2SYM(rb_intern("return")), vresult);
vresult = temp;
}
swig_type_info *ty = SWIG_TypeQuery("struct ncprogbar_options *");
if (!ty) ty = SWIGTYPE_p_ncprogbar_options;
VALUE obj = SWIG_NewPointerObj((void *)arg1, ty, 0);
rb_hash_aset(vresult, ID2SYM(rb_intern("self")), obj);
}
return vresult;
fail:
return Qnil;
}
|
#urchannel(*args) ⇒ Object
call-seq:
urchannel -> uint32_t
Get value of attribute.
59361 59362 59363 59364 59365 59366 59367 59368 59369 59370 59371 59372 59373 59374 59375 59376 59377 59378 59379 59380 59381 59382 59383 59384 59385 59386 59387 59388 59389 59390 59391 59392 59393 59394 59395 59396 59397 59398 |
# File 'ext/notcurses/src/notcurses_wrap.c', line 59361
SWIGINTERN VALUE
_wrap_NcprogbarOptions_urchannel_get(int argc, VALUE *argv, VALUE self) {
struct ncprogbar_options *arg1 = (struct ncprogbar_options *) 0 ;
void *argp1 = 0 ;
int res1 = 0 ;
uint32_t result;
VALUE vresult = Qnil;
if ((argc < 0) || (argc > 0)) {
rb_raise(rb_eArgError, "wrong # of arguments(%d for 0)",argc); SWIG_fail;
}
res1 = SWIG_ConvertPtr(self, &argp1,SWIGTYPE_p_ncprogbar_options, 0 | 0 );
if (!SWIG_IsOK(res1)) {
SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "struct ncprogbar_options *","urchannel", 1, self ));
}
arg1 = (struct ncprogbar_options *)(argp1);
result = (uint32_t) ((arg1)->urchannel);
vresult = SWIG_From_unsigned_SS_int((unsigned int)(result));
{
if (vresult == Qnil) {
vresult = rb_hash_new();
}
if (!RB_TYPE_P(vresult, T_HASH)) {
VALUE temp = rb_hash_new();
rb_hash_aset(temp, ID2SYM(rb_intern("return")), vresult);
vresult = temp;
}
swig_type_info *ty = SWIG_TypeQuery("struct ncprogbar_options *");
if (!ty) ty = SWIGTYPE_p_ncprogbar_options;
VALUE obj = SWIG_NewPointerObj((void *)arg1, ty, 0);
rb_hash_aset(vresult, ID2SYM(rb_intern("self")), obj);
}
return vresult;
fail:
return Qnil;
}
|
#urchannel=(*args) ⇒ Object
call-seq:
urchannel=(x) -> uint32_t
Set new value for attribute.
59315 59316 59317 59318 59319 59320 59321 59322 59323 59324 59325 59326 59327 59328 59329 59330 59331 59332 59333 59334 59335 59336 59337 59338 59339 59340 59341 59342 59343 59344 59345 59346 59347 59348 59349 59350 59351 59352 59353 59354 59355 59356 59357 59358 |
# File 'ext/notcurses/src/notcurses_wrap.c', line 59315
SWIGINTERN VALUE
_wrap_NcprogbarOptions_urchannel_set(int argc, VALUE *argv, VALUE self) {
struct ncprogbar_options *arg1 = (struct ncprogbar_options *) 0 ;
uint32_t arg2 ;
void *argp1 = 0 ;
int res1 = 0 ;
unsigned int val2 ;
int ecode2 = 0 ;
VALUE vresult = Qnil;
if ((argc < 1) || (argc > 1)) {
rb_raise(rb_eArgError, "wrong # of arguments(%d for 1)",argc); SWIG_fail;
}
res1 = SWIG_ConvertPtr(self, &argp1,SWIGTYPE_p_ncprogbar_options, 0 | 0 );
if (!SWIG_IsOK(res1)) {
SWIG_exception_fail(SWIG_ArgError(res1), Ruby_Format_TypeError( "", "struct ncprogbar_options *","urchannel", 1, self ));
}
arg1 = (struct ncprogbar_options *)(argp1);
ecode2 = SWIG_AsVal_unsigned_SS_int(argv[0], &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), Ruby_Format_TypeError( "", "uint32_t","urchannel", 2, argv[0] ));
}
arg2 = (uint32_t)(val2);
if (arg1) (arg1)->urchannel = arg2;
{
if (vresult == Qnil) {
vresult = rb_hash_new();
}
if (!RB_TYPE_P(vresult, T_HASH)) {
VALUE temp = rb_hash_new();
rb_hash_aset(temp, ID2SYM(rb_intern("return")), vresult);
vresult = temp;
}
swig_type_info *ty = SWIG_TypeQuery("struct ncprogbar_options *");
if (!ty) ty = SWIGTYPE_p_ncprogbar_options;
VALUE obj = SWIG_NewPointerObj((void *)arg1, ty, 0);
rb_hash_aset(vresult, ID2SYM(rb_intern("self")), obj);
}
return vresult;
fail:
return Qnil;
}
|