You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
StreamRead has parameters: FileHandle, Output String, Num Elements, Return Status (Based on my interpretation of their usage in the method), however on line 438 NumElements is configured as an output.
I'd like to propose to swap parameters 2 and 3 and change the prototype definition to: p(i(FileHandle)i(Int32)o(String)o(Int32))
As it's currently: p(i(FileHandle)o(String)o(Int32)o(Int32))
I didn't see any tests referring to StreamRead so I presume it's likely not in use.
The text was updated successfully, but these errors were encountered:
VireoSDK/source/io/FileIO.cpp
Lines 166 to 201 in 439b648
StreamRead has parameters: FileHandle, Output String, Num Elements, Return Status (Based on my interpretation of their usage in the method), however on line 438 NumElements is configured as an output.
I'd like to propose to swap parameters 2 and 3 and change the prototype definition to:
p(i(FileHandle)i(Int32)o(String)o(Int32))
As it's currently:
p(i(FileHandle)o(String)o(Int32)o(Int32))
I didn't see any tests referring to StreamRead so I presume it's likely not in use.
The text was updated successfully, but these errors were encountered: