~lgb/x-emulators/dev

« back to all changes in this revision

Viewing changes to targets/mega65/fat32.h

  • Committer: GitHub
  • Author(s): LGB
  • Date: 2020-06-09 11:33:47 UTC
  • mfrom: (265.1.101)
  • Revision ID: git-v1:527c2b021966f6f9f2444c23d6402c141d1c19d2
Merge pull request #116 from lgblgblgb/dev

Merge dev stage into master

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* A work-in-progess Mega-65 (Commodore-65 clone origins) emulator
 
1
/* A work-in-progess MEGA65 (Commodore 65 clone origins) emulator
2
2
   Part of the Xemu project, please visit: https://github.com/lgblgblgb/xemu
3
3
   Copyright (C)2016-2020 LGB (Gábor Lénárt) <lgblgblgb@gmail.com>
4
4
 
72
72
extern int    mfat_use_part ( int part );
73
73
 
74
74
extern int    mfat_normalize_name ( char *d, const char *s );
 
75
extern int    mfat_fatize_name    ( char *d, const char *s );
75
76
extern int    mfat_read_directory ( mfat_dirent_t *p, int type_filter );
76
77
extern int    mfat_search_in_directory ( mfat_dirent_t *p, const char *name, int type_filter );
77
78
extern void   mfat_open_rootdir ( mfat_stream_t *p );
78
79
extern Uint32 mfat_get_real_size ( mfat_stream_t *p, int *fragmented );
 
80
extern Uint32 mfat_overwrite_file_with_direct_linear_device_block_write ( mfat_dirent_t *dirent, const char *name, Uint32 size );
79
81
 
80
82
#endif