Windows error 0x0000059A, 1434

Detailed Error Information

LB_WITHOUT_TABSTOPS[1]

MessageThis list box does not support tab stops.
Declared inwinerror.h

This appears to be a raw Win32 error. More information may be available in error 0x8007059A.

HRESULT analysis[2]

This is probably not the correct interpretation of this error. The Win32 error above is more likely to indicate the actual problem.
FlagsSeveritySuccess

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.

Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode0 (0x000)
NameFACILITY_NULL[2][1]
DescriptionThe default facility code.[2][1]
Error Code1434 (0x059a)

Questions

3votes
1answer

Simulte touch event from android kernel

I develop a new touch screen driver in the android kernel. And my goal it to simulate a touch screen event. Therefore, in the probe of my new driver, I allocate the required keys: input_set_abs_params(in_dev, ABS_MT_TRACKING_ID, 10000, 0, 0); input_set_abs_params(in_dev, ABS_MT_POSITION_Y, 0, 1000, 0, 0); input_set_abs_params(in_dev, ABS_MT_POSITION_X, 0,1000, 0, 0); [...] read more
android
c
linux-kernel
android-kernel

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0