Fix it!Wait. So you're saying that in the next release you'll have debug messages output to the screen? That doesn't make sense. Am I missing something here?
Where is this text output so I can just comment out those lines? And why, if I'm doing a release compile, is it outputting debug messages? Sounds like a bug to me...
You did not read the explanation, did you?Wait. So you're saying that in the next release you'll have debug messages output to the screen? That doesn't make sense. Am I missing something here?
Code: Select all
man 3 setenv
Code: Select all
int
setenv(const char *name, const char *value, int overwrite);
int
unsetenv(const char *name);
DESCRIPTION
These functions set, unset and fetch environment variables from the host environment list. For compatibility with
differing environment conventions, the given arguments name and value may be appended and prepended, respectively,
with an equal sign ``=''.
The getenv() function obtains the current value of the environment variable, name.
The setenv() function inserts or resets the environment variable name in the current environment list. If the
variable name does not exist in the list, it is inserted with the given value. If the variable does exist, the
argument overwrite is tested; if overwrite is zero, the variable is not reset, otherwise it is reset to the given
value.
Please read how much replies you had to your topics. And even if you haven't always get the answers you wanted, you have had answers with some hints.Holy cow I actually got an answer...
Was my post off-topic? The responses I got had nothing to do with the question and were therefore trolling. "Fix it!" has the intention of baiting another into an emotional response. So it's the pot calling the kettle black (La pelle se moque du fourgon).An Internet troll, or simply troll in Internet slang, is someone who posts controversial and usually irrelevant or off-topic messages in an online community, such as an online discussion forum or chat room, with the intention of baiting other users into an emotional response or to generally disrupt normal on-topic discussion.
Code: Select all
SetEnvironmentVariable
The SetEnvironmentVariable function sets the value of an environment
variable for the current process.
BOOL SetEnvironmentVariable(
LPCTSTR lpName, // address of environment variable name
LPCTSTR lpValue // address of new value for variable
);
Actually that something we do want. I'll try to implement something.Okay, I was hoping VLC had some function call somewhere that already abstracted that out for me and I could just use it. This will do, though. Thanks again!
Return to “General VLC media player Troubleshooting”
Users browsing this forum: No registered users and 22 guests