• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

C++ "system( )" parameter length limitation!!! (128 char)

Stalker

Member
I am transfering my batch file code to C++ but encounter the limitation. How do I get around it?
My guess is, it is because C++ treat the parameter as unicode else the limitation should be 256
 
Has nothing to do with C++ the language; it has to do with your c library and how it's executing your command. In unix it'd be a shell issue, but I don't know how exactly system() works in windows or anything non-unix.
 
Back
Top