Current News
Archived News
Search News
Discussion Forum


Old Forum
Install Programs More Downloads...
Troubleshooting
Source Code
Format Specs.
Misc. Information
Non-SF Stuff
Links




CommitLineData
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
9LPVOID WINAPI SFAlloc(DWORD dwSize);
10void WINAPI SFFree(LPVOID lpvMemory);
11void WINAPI SFMemZero(LPVOID lpvDestination, DWORD dwLength);
a36705ea 12UInt64 SFGetFileSize(HANDLE hFile);
13UInt64 SFSetFilePointer(HANDLE hFile, Int64 nDistance, UInt32 dwMoveMethod);
7214af3e 14size_t strlnlen(const char *strline);
15char *nextline(const char *strline);
16
17#endif // #ifndef SFUTIL_INCLUDED
18