Commit | Line | Data |
7214af3e |
1 | // License information for this code is in license.txt |
2 | |
3 | #ifndef SFUTIL_INCLUDED |
4 | #define SFUTIL_INCLUDED |
5 | |
6 | #include <windows.h> |
7 | #include "SFTypes.h" |
8 | |
9 | LPVOID WINAPI SFAlloc(DWORD dwSize); |
10 | void WINAPI SFFree(LPVOID lpvMemory); |
11 | void WINAPI SFMemZero(LPVOID lpvDestination, DWORD dwLength); |
a36705ea |
12 | UInt64 SFGetFileSize(HANDLE hFile); |
13 | UInt64 SFSetFilePointer(HANDLE hFile, Int64 nDistance, UInt32 dwMoveMethod); |
7214af3e |
14 | size_t strlnlen(const char *strline); |
15 | char *nextline(const char *strline); |
16 | |
17 | #endif // #ifndef SFUTIL_INCLUDED |
18 | |