This is probably not the correct interpretation of this error.
The Win32 error above is more likely to indicate the actual problem.
Flags
Severity
Success
This code indicates success, rather than an error.
This may not be the correct interpretation of this code,
or possibly the program is handling errors incorrectly.
journalctl -b showed me log like this: something something somethng aaa: 0x00000111 bbb: 0x00000222 ccc: 0x00000333 ddd: 0x00000444 something something somethng How to get value of parameter 'ccc'? For example: journalctl -b | awk '/ccc:/{print $1}' showed first word, but I need to get first word after 'ccc': 0x00000333 read more
I have a high dpi setting on my monitor as the monitor is a fairly small 3840 x 2160 monitor. This is causing issues with one of the applications I am writing as I am hosting a control in my main application. I developed it based off a nice example [...] read more
I have some hexadecimal numbers like this in a .txt file: 0x1, 0x2, 0x1e4b1, 0x5b, 0x80, 0x52, 0x111, 0x6b0d, 0x4e, 0x34a, 0x2067, 0x6ef3, 0x1cf, 0x1b, 0x15b, 0x4f, 0xba8, 0x319. What I am trying to do now is overwrite the contents (using code) of the file and make the end result [...] read more
This has probably already been asked but I'm having trouble understanding how to do masking when writing using I2C. Say I have a function called i2c_update with the following parameters: dev Pointer to the device structure for the driver instance. dev_addr Address of the I2C device for updating. reg_addr Address [...] read more
I have a legacy project I need to fix bugs in, WTL/VC++. One of the problems - a crash of the main window (well, the entire application, of course) after Ctrl+X or Ctrl+Z keys are used. I don't have any custom accelerators assigned to those keys. I found that the [...] read more