ViGenericDumpIrpStack

VOID __stdcall ViGenericDumpIrpStack(_IO_STACK_LOCATION *IrpSp){
  __int64 MajorFunction; 
  INT8 *v2; 

  MajorFunction = IrpSp->MajorFunction;
  if( (_BYTE)MajorFunction == 15 )
  {
    if( IrpSp->MinorFunction == 1 )
    {
      v2 = "IRP_MJ_SCSI";
      goto LABEL_8;
    }
LABEL_5:
    v2 = IrpMajorNames[MajorFunction];
    goto LABEL_8;
  }
  if( (unsigned __int8)MajorFunction <= 0x1Bu )
    goto LABEL_5;
  v2 = "IRP_MJ_BOGUS";
  if( (_BYTE)MajorFunction != 0xFF )
    v2 = (INT8 *)"IRP_MJ_??";
LABEL_8:
  VfUtilDbgPrint(v2);
}

Referenced by:

No references.