Must be blind

Cause I can’t figure out where the FILE_RENAME_INFORMATION structure is
inside the parameters of a minifilter service routine. I assume it’s inside
the “data” parameter, but I can’t find it anyway.

Doesn’t anyone know where it is?

thanks,

Gene

FLT_POSTOP_CALLBACK_STATUS PostSetInformation(IN OUT PFLT_CALLBACK_DATA
Data, IN PCFLT_RELATED_OBJECTS FltObjects, IN PVOID CompletionContext,IN
FLT_POST_OPERATION_FLAGS Flags)

Me too.

This is on my to-do list so I’m most interested in the answer(s).

Closest thing I saw using wholesale searches was an enum
“FileRenameInformation”

Mickey.

-----Original Message-----
From: xxxxx@lists.osr.com
[mailto:xxxxx@lists.osr.com] On Behalf Of Gene Allen
Sent: Sunday, June 19, 2005 10:45 AM
To: Windows File Systems Devs Interest List
Subject: [ntfsd] Must be blind

Cause I can’t figure out where the FILE_RENAME_INFORMATION structure is
inside the parameters of a minifilter service routine. I assume it’s inside

the “data” parameter, but I can’t find it anyway.

Doesn’t anyone know where it is?

thanks,

Gene

FLT_POSTOP_CALLBACK_STATUS PostSetInformation(IN OUT PFLT_CALLBACK_DATA
Data, IN PCFLT_RELATED_OBJECTS FltObjects, IN PVOID CompletionContext,IN
FLT_POST_OPERATION_FLAGS Flags)


Questions? First check the IFS FAQ at
https://www.osronline.com/article.cfm?id=17

You are currently subscribed to ntfsd as: xxxxx@earthlink.net To unsubscribe
send a blank email to xxxxx@lists.osr.com

For IRP_MJ_SET_INFORMATION, you can find the IRP parameters in:

PFLT_CALLBACK_DATA FltData; // Callback data ARG
setInfoClass =
FltData->Iopb->Parameters.SetFileInformation.FileInformationClass;
renameInfo =
(PFILE_RENAME_INFORMATION)FltData->Iopb->Parameters.SetFileInformation.InfoB
uffer;

/ted

-----Original Message-----
From: Mickey Lane [mailto:xxxxx@earthlink.net]
Sent: Sunday, June 19, 2005 4:32 PM
To: Windows File Systems Devs Interest List
Subject: RE: [ntfsd] Must be blind

Me too.

This is on my to-do list so I’m most interested in the answer(s).

Closest thing I saw using wholesale searches was an enum
“FileRenameInformation”

Mickey.

-----Original Message-----
From: xxxxx@lists.osr.com
[mailto:xxxxx@lists.osr.com] On Behalf Of Gene Allen
Sent: Sunday, June 19, 2005 10:45 AM
To: Windows File Systems Devs Interest List
Subject: [ntfsd] Must be blind

Cause I can’t figure out where the FILE_RENAME_INFORMATION structure is
inside the parameters of a minifilter service routine. I assume it’s inside

the “data” parameter, but I can’t find it anyway.

Doesn’t anyone know where it is?

thanks,

Gene

FLT_POSTOP_CALLBACK_STATUS PostSetInformation(IN OUT PFLT_CALLBACK_DATA
Data, IN PCFLT_RELATED_OBJECTS FltObjects, IN PVOID CompletionContext,IN
FLT_POST_OPERATION_FLAGS Flags)


Questions? First check the IFS FAQ at
https://www.osronline.com/article.cfm?id=17

You are currently subscribed to ntfsd as: xxxxx@earthlink.net To unsubscribe
send a blank email to xxxxx@lists.osr.com


Questions? First check the IFS FAQ at
https://www.osronline.com/article.cfm?id=17

You are currently subscribed to ntfsd as: unknown lmsubst tag argument: ‘’
To unsubscribe send a blank email to xxxxx@lists.osr.com

Thanks Ted…I’ll give that a shot!
Is there any magic map to these structures in a mini-filter?

“Ted Hess” wrote in message news:xxxxx@ntfsd…
> For IRP_MJ_SET_INFORMATION, you can find the IRP parameters in:
>
> PFLT_CALLBACK_DATA FltData; // Callback data ARG
> setInfoClass =
> FltData->Iopb->Parameters.SetFileInformation.FileInformationClass;
> renameInfo =
> (PFILE_RENAME_INFORMATION)FltData->Iopb->Parameters.SetFileInformation.InfoB
> uffer;
>
> /ted
>
> -----Original Message-----
> From: Mickey Lane [mailto:xxxxx@earthlink.net]
> Sent: Sunday, June 19, 2005 4:32 PM
> To: Windows File Systems Devs Interest List
> Subject: RE: [ntfsd] Must be blind
>
>
> Me too.
>
> This is on my to-do list so I’m most interested in the answer(s).
>
> Closest thing I saw using wholesale searches was an enum
> “FileRenameInformation”
>
> Mickey.
>
> -----Original Message-----
> From: xxxxx@lists.osr.com
> [mailto:xxxxx@lists.osr.com] On Behalf Of Gene Allen
> Sent: Sunday, June 19, 2005 10:45 AM
> To: Windows File Systems Devs Interest List
> Subject: [ntfsd] Must be blind
>
>
> Cause I can’t figure out where the FILE_RENAME_INFORMATION structure is
> inside the parameters of a minifilter service routine. I assume it’s
> inside
>
> the “data” parameter, but I can’t find it anyway.
>
> Doesn’t anyone know where it is?
>
> thanks,
>
> Gene
>
> FLT_POSTOP_CALLBACK_STATUS PostSetInformation(IN OUT PFLT_CALLBACK_DATA
> Data, IN PCFLT_RELATED_OBJECTS FltObjects, IN PVOID CompletionContext,IN
> FLT_POST_OPERATION_FLAGS Flags)
>
>
>
> —
> Questions? First check the IFS FAQ at
> https://www.osronline.com/article.cfm?id=17
>
> You are currently subscribed to ntfsd as: xxxxx@earthlink.net To
> unsubscribe
> send a blank email to xxxxx@lists.osr.com
>
>
> —
> Questions? First check the IFS FAQ at
> https://www.osronline.com/article.cfm?id=17
>
> You are currently subscribed to ntfsd as: unknown lmsubst tag argument: ‘’
> To unsubscribe send a blank email to xxxxx@lists.osr.com
>

No magic – fltkernel.h (FLT_PARAMETERS struct)

/ted

-----Original Message-----
From: Gene Allen [mailto:xxxxx@bystormsoftware.com]
Sent: Monday, June 20, 2005 12:17 AM
To: Windows File Systems Devs Interest List
Subject: Re:[ntfsd] Must be blind

Thanks Ted…I’ll give that a shot!
Is there any magic map to these structures in a mini-filter?

“Ted Hess” wrote in message news:xxxxx@ntfsd…
> For IRP_MJ_SET_INFORMATION, you can find the IRP parameters in:
>
> PFLT_CALLBACK_DATA FltData; // Callback data ARG
> setInfoClass =
> FltData->Iopb->Parameters.SetFileInformation.FileInformationClass;
> renameInfo =
> (PFILE_RENAME_INFORMATION)FltData->Iopb->Parameters.SetFileInformation
> .InfoB
> uffer;
>
> /ted
>
> -----Original Message-----
> From: Mickey Lane [mailto:xxxxx@earthlink.net]
> Sent: Sunday, June 19, 2005 4:32 PM
> To: Windows File Systems Devs Interest List
> Subject: RE: [ntfsd] Must be blind
>
>
> Me too.
>
> This is on my to-do list so I’m most interested in the answer(s).
>
> Closest thing I saw using wholesale searches was an enum
> “FileRenameInformation”
>
> Mickey.
>
> -----Original Message-----
> From: xxxxx@lists.osr.com
> [mailto:xxxxx@lists.osr.com] On Behalf Of Gene Allen
> Sent: Sunday, June 19, 2005 10:45 AM
> To: Windows File Systems Devs Interest List
> Subject: [ntfsd] Must be blind
>
>
> Cause I can’t figure out where the FILE_RENAME_INFORMATION structure
> is inside the parameters of a minifilter service routine. I assume
> it’s inside
>
> the “data” parameter, but I can’t find it anyway.
>
> Doesn’t anyone know where it is?
>
> thanks,
>
> Gene
>
> FLT_POSTOP_CALLBACK_STATUS PostSetInformation(IN OUT
> PFLT_CALLBACK_DATA Data, IN PCFLT_RELATED_OBJECTS FltObjects, IN PVOID
> CompletionContext,IN FLT_POST_OPERATION_FLAGS Flags)
>
>
>
> —
> Questions? First check the IFS FAQ at
> https://www.osronline.com/article.cfm?id=17
>
> You are currently subscribed to ntfsd as: xxxxx@earthlink.net To
> unsubscribe
> send a blank email to xxxxx@lists.osr.com
>
>
> —
> Questions? First check the IFS FAQ at
> https://www.osronline.com/article.cfm?id=17
>
> You are currently subscribed to ntfsd as: unknown lmsubst tag
> argument: ‘’ To unsubscribe send a blank email to
> xxxxx@lists.osr.com
>


Questions? First check the IFS FAQ at
https://www.osronline.com/article.cfm?id=17

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