| 1166 | } |
| 1167 | |
| 1168 | VOID |
| 1169 | Ext2NotifyReportChange ( |
| 1170 | IN PEXT2_IRP_CONTEXT IrpContext, |
| 1171 | IN PEXT2_VCB Vcb, |
| 1172 | IN PEXT2_MCB Mcb, |
| 1173 | IN ULONG Filter, |
| 1174 | IN ULONG Action ) |
| 1175 | { |
| 1176 | USHORT Offset; |
| 1177 | |
| 1178 | Offset = (USHORT) ( Mcb->FullName.Length - |
| 1179 | Mcb->ShortName.Length); |
| 1180 | |
| 1181 | FsRtlNotifyFullReportChange( Vcb->NotifySync, |
| 1182 | &(Vcb->NotifyList), |
| 1183 | (PSTRING) (&Mcb->FullName), |
| 1184 | (USHORT) Offset, |
| 1185 | (PSTRING)NULL, |
| 1186 | (PSTRING) NULL, |
| 1187 | (ULONG) Filter, |
| 1188 | (ULONG) Action, |
| 1189 | (PVOID) NULL ); |
| 1190 | } |
| 1191 | |
| 1192 | |
| 1193 | NTSTATUS |
no outgoing calls
no test coverage detected