mirror of
https://github.com/falk-werner/webfuse-provider
synced 2024-10-27 20:44:10 +00:00
26 lines
431 B
C
26 lines
431 B
C
|
#include "wsfsp/operation/readdir_intern.h"
|
||
|
#include <stdio.h>
|
||
|
|
||
|
void wsfsp_readdir(
|
||
|
struct wsfsp_invokation_context * context,
|
||
|
json_t * params,
|
||
|
int id)
|
||
|
{
|
||
|
(void) context;
|
||
|
(void) params;
|
||
|
(void) id;
|
||
|
|
||
|
puts("readdir");
|
||
|
}
|
||
|
|
||
|
void wsfsp_respond_readdir(
|
||
|
struct wsfsp_request * request,
|
||
|
struct wsfsp_dirbuffer * dirbuffer)
|
||
|
{
|
||
|
(void) request;
|
||
|
(void) dirbuffer;
|
||
|
|
||
|
// ToDo: implement me
|
||
|
}
|
||
|
|