Howard Kaikow Posted June 22, 2006 Posted June 22, 2006 Are the following equivalent? <DllImport("kernel32", CharSet:=CharSet.Unicode, SetLastError:=True)> _ Private Shared Function FindFirstFile _ (ByVal lpFileName As String, ByVal lpFindFileData As WIN32_FIND_DATA) As Integer End Function <DllImport("kernel32", CharSet:=CharSet.Unicode, SetLastError:=True)> _ Private Shared Function FindFirstFileW _ (ByVal lpFileName As String, ByVal lpFindFileData As WIN32_FIND_DATA) As Integer End Function <DllImport("kernel32", CharSet:=CharSet.Auto, SetLastError:=True)> _ Private Shared Function FindFirstFileW _ (ByVal lpFileName As String, ByVal lpFindFileData As WIN32_FIND_DATA) As Integer End Function Quote
Recommended Posts