Changeset 1124 for cpp/common/util-file.h
- Timestamp:
- 04/11/21 02:08:46 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/common/util-file.h
r840 r1124 1 1 // This file is a part of Framsticks SDK. http://www.framsticks.com/ 2 // Copyright (C) 1999-20 15Maciej Komosinski and Szymon Ulatowski.2 // Copyright (C) 1999-2021 Maciej Komosinski and Szymon Ulatowski. 3 3 // See LICENSE.txt for details. 4 4 … … 7 7 8 8 #include "nonstd_stl.h" 9 #include "virtfile/virtfile.h" 9 10 10 11 bool readCompleteFile(const char* filename, vector<char>& data, bool warn_on_missing_file = true); … … 12 13 bool writeCompleteFile(const char* filename, const std::string& text, bool warn_on_fail = true); 13 14 bool writeCompleteFile(const char* filename, vector<char>& data, bool warn_on_fail = true); 15 string readUntilEOL(VirtFILE *f); 14 16 15 17 #endif
Note: See TracChangeset
for help on using the changeset viewer.