home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / boot / i386 / root / usr / share / YaST2 / modules / LibStorage / VolumeInfo.pm < prev   
Text File  |  2006-11-29  |  3KB  |  58 lines

  1. package LibStorage::VolumeInfo;
  2. BEGIN {
  3.     %TYPEINFO = (
  4.         ALL_METHODS => 0,
  5.         new => ["function", "any", "string"],
  6.         swig_sizeK_get => ["function", "integer", "any"],
  7.         swig_sizeK_set => ["function", "void", "any", "integer"],
  8.         swig_major_get => ["function", "integer", "any"],
  9.         swig_major_set => ["function", "void", "any", "integer"],
  10.         swig_minor_get => ["function", "integer", "any"],
  11.         swig_minor_set => ["function", "void", "any", "integer"],
  12.         swig_name_get => ["function", "string", "any"],
  13.         swig_name_set => ["function", "void", "any", "string"],
  14.         swig_device_get => ["function", "string", "any"],
  15.         swig_device_set => ["function", "void", "any", "string"],
  16.         swig_mount_get => ["function", "string", "any"],
  17.         swig_mount_set => ["function", "void", "any", "string"],
  18.         swig_mount_by_get => ["function", "integer", "any"],
  19.         swig_mount_by_set => ["function", "void", "any", "integer"],
  20.         swig_usedBy_get => ["function", "integer", "any"],
  21.         swig_usedBy_set => ["function", "void", "any", "integer"],
  22.         swig_usedByName_get => ["function", "string", "any"],
  23.         swig_usedByName_set => ["function", "void", "any", "string"],
  24.         swig_fstab_options_get => ["function", "string", "any"],
  25.         swig_fstab_options_set => ["function", "void", "any", "string"],
  26.         swig_uuid_get => ["function", "string", "any"],
  27.         swig_uuid_set => ["function", "void", "any", "string"],
  28.         swig_label_get => ["function", "string", "any"],
  29.         swig_label_set => ["function", "void", "any", "string"],
  30.         swig_mkfs_options_get => ["function", "string", "any"],
  31.         swig_mkfs_options_set => ["function", "void", "any", "string"],
  32.         swig_loop_get => ["function", "string", "any"],
  33.         swig_loop_set => ["function", "void", "any", "string"],
  34.         swig_dtxt_get => ["function", "string", "any"],
  35.         swig_dtxt_set => ["function", "void", "any", "string"],
  36.         swig_encryption_get => ["function", "integer", "any"],
  37.         swig_encryption_set => ["function", "void", "any", "integer"],
  38.         swig_crypt_pwd_get => ["function", "string", "any"],
  39.         swig_crypt_pwd_set => ["function", "void", "any", "string"],
  40.         swig_fs_get => ["function", "integer", "any"],
  41.         swig_fs_set => ["function", "void", "any", "integer"],
  42.         swig_format_get => ["function", "boolean", "any"],
  43.         swig_format_set => ["function", "void", "any", "boolean"],
  44.         swig_create_get => ["function", "boolean", "any"],
  45.         swig_create_set => ["function", "void", "any", "boolean"],
  46.         swig_is_mounted_get => ["function", "boolean", "any"],
  47.         swig_is_mounted_set => ["function", "void", "any", "boolean"],
  48.         swig_resize_get => ["function", "boolean", "any"],
  49.         swig_resize_set => ["function", "void", "any", "boolean"],
  50.         swig_ignore_fs_get => ["function", "boolean", "any"],
  51.         swig_ignore_fs_set => ["function", "void", "any", "boolean"],
  52.         swig_OrigSizeK_get => ["function", "integer", "any"],
  53.         swig_OrigSizeK_set => ["function", "void", "any", "integer"],
  54.     );
  55. }
  56.  
  57. 1;
  58.