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




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