diff options
| author | Manolo Gouy <Manolo> | 2016-04-13 14:05:34 +0000 |
|---|---|---|
| committer | Manolo Gouy <Manolo> | 2016-04-13 14:05:34 +0000 |
| commit | b590bc49f9dc2f33ebc51026bf1d7a7e519de4ad (patch) | |
| tree | 7e3c0a66ea91c6ea240c60ecc96de36a6e937b1d /FL/Fl_System_Driver.H | |
| parent | a1ffa85a1ee978c2ee75526c68a16a4bfec6dab5 (diff) | |
Rewrite fl_encoding_latin1.cxx under the driver model.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11599 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL/Fl_System_Driver.H')
| -rw-r--r-- | FL/Fl_System_Driver.H | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/FL/Fl_System_Driver.H b/FL/Fl_System_Driver.H index 8b7146161..a45a64700 100644 --- a/FL/Fl_System_Driver.H +++ b/FL/Fl_System_Driver.H @@ -174,6 +174,9 @@ public: virtual int dot_file_hidden() {return 0;} // return TRUE when file names are case insensitive virtual int case_insensitive_filenames() {return 0;} + // the implementations of local_to_latin1() and latin1_to_local() are in fl_encoding_latin1.cxx + virtual const char *local_to_latin1(const char *t, int n); + virtual const char *latin1_to_local(const char *t, int n); }; #endif // FL_SYSTEM_DRIVER_H |
