Is it possible to create an API call?

Hi,

I would like to create an API call to Play a video file.

BOOL PlayFile(
HANDLE hFile, // handle of file to read
LPVOID lpBuffer, // pointer to buffer that receives data
DWORD nNumberOfBytesToRead, // number of bytes to read per request
DWORD nRate // rate at which to read file
… // etc.
);

Is this possible and could someone suggest a starting point to help me get
started?
Would I implement this either as a filter driver or by modifying the fastfat
code that comes with the IFS kit?

Thanks for any advice,
Darragh Jones

Whats wrong with doing this completly in user mode ?

----- Original Message -----
From: “Darragh Jones” <darragh.jones>
To: “File Systems Developers”
Sent: Tuesday, August 06, 2002 5:54 PM
Subject: [ntfsd] Is it possible to create an API call?

> Hi,
>
> I would like to create an API call to Play a video file.
>
> BOOL PlayFile(
> HANDLE hFile, // handle of file to read
> LPVOID lpBuffer, // pointer to buffer that receives data
> DWORD nNumberOfBytesToRead, // number of bytes to read per request
> DWORD nRate // rate at which to read file
> … // etc.
> );
>
> Is this possible and could someone suggest a starting point to help me get
> started?
> Would I implement this either as a filter driver or by modifying the
fastfat
> code that comes with the IFS kit?
>
> Thanks for any advice,
> Darragh Jones
>
>
>
> —
> You are currently subscribed to ntfsd as: xxxxx@rdsor.ro
> To unsubscribe send a blank email to %%email.unsub%%
></darragh.jones>

> Is this possible and could someone suggest a starting point to help
me get

started?

DirectShow chapter of MSDN Library will help.

Max