NTSTATUS -1073741789 ???

Could anyone tell me what this status means? I got it after I did a
IOCTL_SCSI_GET_INQUIRY_DATA

Thanks alot

Peter Trinh

From windbg cmd use -

?

it would give a 64bit val, take the least 32bit, and compare with ntstatus.h

-prokash

-----Original Message-----
From: xxxxx@lists.osr.com
[mailto:xxxxx@lists.osr.com]On Behalf Of Peter Trinh
Sent: Tuesday, September 16, 2003 4:41 PM
To: Windows System Software Devs Interest List
Subject: [ntdev] NTSTATUS -1073741789 ???

Could anyone tell me what this status means? I got it after I did a
IOCTL_SCSI_GET_INQUIRY_DATA

Thanks alot

Peter Trinh


Questions? First check the Kernel Driver FAQ at
http://www.osronline.com/article.cfm?id=256

You are currently subscribed to ntdev as: xxxxx@vormetric.com
To unsubscribe send a blank email to xxxxx@lists.osr.com

Status values are usually unsigned, hence this value = 0xC0000023, which
– in ntstatus.h – means STATUS_BUFFER_TOO_SMALL.

Peter Trinh wrote:

Could anyone tell me what this status means?


If replying by e-mail, please remove “nospam.” from the address.

James Antognini
Windows DDK MVP

STATUS_BUFFER_TOO_SMALL (0xC0000023).

Generally it is a lot easier to figure out what error is returned using
unsigned hex values rather than signed decimal. The error codes are
listed in ntstatus.h

===========================
Mark Roddy
Consultant, Microsoft DDK MVP
Hollis Technology Solutions
xxxxx@hollistech.com
www.hollistech.com
603-321-1032

-----Original Message-----
From: “Peter Trinh”
To: “Windows System Software Devs Interest List”
Date: Tue, 16 Sep 2003 19:41:29 -0400
Subject: [ntdev] NTSTATUS -1073741789 ???

> Could anyone tell me what this status means? I got it after I did a
> IOCTL_SCSI_GET_INQUIRY_DATA
>
>
> Thanks alot
>
> Peter Trinh
>
> —
> Questions? First check the Kernel Driver FAQ at
> http://www.osronline.com/article.cfm?id=256
>
> You are currently subscribed to ntdev as: xxxxx@hollistech.com
> To unsubscribe send a blank email to xxxxx@lists.osr.com

c0000023 aka STATUS_BUFFER_TOO_SMALL

Maxim Shatskih, Windows DDK MVP
StorageCraft Corporation
xxxxx@storagecraft.com
http://www.storagecraft.com

----- Original Message -----
From: “Peter Trinh”
To: “Windows System Software Devs Interest List”
Sent: Wednesday, September 17, 2003 3:41 AM
Subject: [ntdev] NTSTATUS -1073741789 ???

> Could anyone tell me what this status means? I got it after I did a
> IOCTL_SCSI_GET_INQUIRY_DATA
>
>
> Thanks alot
>
> Peter Trinh
>
> —
> Questions? First check the Kernel Driver FAQ at
http://www.osronline.com/article.cfm?id=256
>
> You are currently subscribed to ntdev as: xxxxx@storagecraft.com
> To unsubscribe send a blank email to xxxxx@lists.osr.com