Mercurial > foo_out_sdl
comparison foosdk/sdk/foobar2000/helpers/filetimetools.cpp @ 1:20d02a178406 default tip
*: check in everything else
yay
| author | Paper <paper@tflc.us> |
|---|---|
| date | Mon, 05 Jan 2026 02:15:46 -0500 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| 0:e9bb126753e7 | 1:20d02a178406 |
|---|---|
| 1 #include "StdAfx.h" | |
| 2 | |
| 3 #include "filetimetools.h" | |
| 4 | |
| 5 #include <pfc/filetimetools.h> | |
| 6 | |
| 7 // Stub - functionality moved to PFC | |
| 8 | |
| 9 namespace foobar2000_io { | |
| 10 t_filetimestamp filetimestamp_from_string(const char* date) { | |
| 11 return pfc::filetimestamp_from_string( date ); | |
| 12 } | |
| 13 t_filetimestamp filetimestamp_from_string_utc(const char* date) { | |
| 14 return pfc::filetimestamp_from_string_utc( date ); | |
| 15 } | |
| 16 | |
| 17 pfc::string_formatter format_filetimestamp(t_filetimestamp p_timestamp) { | |
| 18 return pfc::format_filetimestamp( p_timestamp ); | |
| 19 } | |
| 20 | |
| 21 pfc::string_formatter format_filetimestamp_utc(t_filetimestamp p_timestamp) { | |
| 22 return pfc::format_filetimestamp_utc( p_timestamp ); | |
| 23 } | |
| 24 | |
| 25 pfc::string_formatter format_filetimestamp_ms(t_filetimestamp p_timestamp) { | |
| 26 return pfc::format_filetimestamp_ms( p_timestamp ); | |
| 27 } | |
| 28 } |
