mirror of
https://github.com/hax4dazy/TinWoo.git
synced 2025-02-09 19:25:05 +01:00
20 lines
458 B
C
20 lines
458 B
C
/*
|
|
* ntfs_dev.h
|
|
*
|
|
* Copyright (c) 2020-2023, DarkMatterCore <pabloacurielz@gmail.com>.
|
|
* Copyright (c) 2020-2021, Rhys Koedijk.
|
|
*
|
|
* This file is part of libusbhsfs (https://github.com/DarkMatterCore/libusbhsfs).
|
|
*
|
|
* Based on work from libntfs-wii (https://github.com/rhyskoedijk/libntfs-wii).
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#ifndef __NTFS_DEV_H__
|
|
#define __NTFS_DEV_H__
|
|
|
|
const devoptab_t *ntfsdev_get_devoptab();
|
|
|
|
#endif /* __NTFS_DEV_H__ */
|