summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/modules/file/windir.cpp
Commit message (Collapse)AuthorAgeFilesLines
* windir.cpp, winrtdir.cpp: string_format calls need qualification now AJR2021-01-021-1/+1
|
* Low-level #include overhaul AJR2021-01-021-1/+1
| | | | | | | - vecstream.h: Revert changes made in aa29519528cb3dbdbfac56819bea670ed8c56c5d. The std::string_view conversion has been made a non-member function (util::buf_to_string_view) and moved to coretmpl.h. - strformat.h: Remove the using declaration importing util::string_format into the global namespace. It has been moved to emucore.h and a few tool sources; other references have been qualified. - osdcore.h: Split out file, directory and path classes and methods to a new header (osdfile.h), Doxygenizing the documentation comments. - Disaggregate many #includes that were including other standard or custom headers. emu.h now includes basically the same things that it did, but other headers have been streamlined; for instance, emucore.h no longer stealth-includes osdcore.h several ways.
* use C++ library includes (nw) firewave2020-01-221-2/+2
|
* Move special windows.h include directives to build defines (nw) Brad Hughes2016-12-281-1/+0
|
* A round of spelling/typographical fixes to source comments (nw) Scott Stone2016-11-241-1/+1
|
* Bulk renaming of Windows string conversion functions Nathan Woods2016-10-031-2/+2
| | | | | utf8_from_[a|w|t]string ==> osd::text::from_[a|w|t]string [a|w|t]string_from_utf8 ==> osd::text::to_[a|w|t]string
* Adding new string conversion overloads Nathan Woods2016-10-011-1/+1
| | | | [a|w|t|utf8]_from_[a|w|t|utf8_]string(xyz.c_str()) seems to be common enough to justify overloads. Also, I'm explicitly assuming that it is legal to override the NUL pointer within a C++ basic_string (e.g. - s[s.size()] = '\0'). As far as I can tell, this seems to be legal - please don't shoot if I am wrong.
* Cleanups and version bump Miodrag Milanovic2016-07-271-1/+1
|
* Changed strconv.[cpp|h] functions to return their results as std::string and ↵ Nathan Woods2016-07-241-21/+9
| | | | std::wstring
* Cleanup and version bumpmame0175 Miodrag Milanovic2016-06-291-1/+1
|
* clang on windows fixes (nw) Miodrag Milanovic2016-06-251-1/+1
|
* Init (nw) Vas Crabb2016-06-251-0/+1
|
* Fine, be that way GCC (nw) Vas Crabb2016-06-251-4/+4
|
* Better fix (nw) Vas Crabb2016-06-251-2/+2
|
* Fix path with missing return, hopefully fix OSX build (nw) Vas Crabb2016-06-251-2/+1
|
* Revert "This worked by pure luck (nw)" Vas Crabb2016-06-251-8/+6
| | | | This reverts commit b3491464e41b6afea81e188fe6a350d4f778854b.
* This worked by pure luck (nw) Miodrag Milanovic2016-06-241-6/+8
|
* POSIX implementation for new directory read features, cleanup of Windows ↵ Vas Crabb2016-06-251-0/+154
implementation, return directory handle as smart pointer, fix full build [Vas Crabb]