Windows error 0x00000493, 1171

Detailed Error Information

POINT_NOT_FOUND[1]

MessageThe point passed to GetMouseMovePoints is not in the buffer.
Declared inwinerror.h

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

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 Code1171 (0x0493)

Questions

2votes
2answers

RISC-V disassembler doesn't match with spike running results?

I've set up a hello world program just for testing my riscv32-unknown-elf toolchain, spike, pk etc. Though I managed to get the hello world printed using spike --isa=RV32 pk hello.elf, I found out that if I added the -d flag for debugging, I was given following instructions (a section of [...] read more
gcc
assembly
compilation
riscv
disassembly
0votes
2answers

C++ How can i fill the bit fields of a struct from a uchar array?

I have an unsigned char array with values as below: u_char *t_header[4]; //filled with values 0x00000047,0x00000004,0x00000093,0x00000012 I have a struct as below: #pragma pack(push, 1) typedef struct th_struct { unsigned s_byte : 8; unsigned t_e_indicator : 1; unsigned p_u_s_indicator : 1; unsigned t_priority : 1; unsigned id : 13; unsigned [...] read more
c++
c
arrays
struct
binary

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