예제 #1
0
 def __init__(self, vfile):
     vsize = unpack('I', vfile.read(4))[0]
     VList.__init__(self)
     count = 0
     while count < vsize:
         try:
             v = VT_LPSTR(vfile)
             self.push_back(v)
         except:
             pass
         count += 1
예제 #2
0
  def __init__(self, vfile):
    vsize = unpack('I', vfile.read(4))[0]
    VList.__init__(self)
    count = 0
    while count < vsize:
      try:
	v = VT_LPSTR(vfile)
	self.push_back(v)
      except :
	pass
      count += 1
예제 #3
0
 def __init__(self, vfile):
     vsize = unpack('I', vfile.read(4))[0]
     VList.__init__(self)
     count = 0
     while count < vsize:
         try:
             msv = MSVariant(vfile)
             v = msv.Value
             self.push_back(v)
         except:
             pass
         count += 1
예제 #4
0
 def __init__(self, vfile):
   vsize = unpack('I', vfile.read(4))[0]
   VList.__init__(self)
   count = 0 
   while count < vsize:
     try:
       msv = MSVariant(vfile)
       v = msv.Value
       self.push_back(v)	
     except :
       pass
     count += 1