Hi guys, I use VB.Net and I need to convert this VB 6 code to VB.Net.
vb Code:
  1. Type WAVEINCAPS
  2.    wMid As Integer
  3.    wPid As Integer
  4.    vDriverVersion As Long
  5.    szPname As String * 32
  6.    dwFormats As Long
  7.    wChannels As Integer
  8. End Type
The only problem I have is this line
vb Code:
  1. szPname As String * 32
Is this some sort of indication of a size?
Thanks in advance!