Subversion Repositories spk

Rev

Rev 121 | Rev 124 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 121 Rev 123
Line 51... Line 51...
51
 
51
 
52
	time_t modifiedTime();
52
	time_t modifiedTime();
53
	time_t GetCreationTime();
53
	time_t GetCreationTime();
54
	void SetCreationTime(time_t time);
54
	void SetCreationTime(time_t time);
55
 
55
 
56
	bool writeSize(unsigned int iSize);
56
	bool writeSize(size_t iSize);
57
	bool write(CFileIO &file, size_t iSize);
57
	bool write(CFileIO &file, size_t iSize);
58
	bool write(const unsigned char *buf, ...);
58
	bool write(const unsigned char *buf, ...);
59
	bool write(const char *buf, ...);
59
	bool write(const char *buf, ...);
60
	bool write(const char *buf, unsigned int iSize);
60
	bool write(const char *buf, size_t iSize);
61
	bool write(const unsigned char *buf, unsigned int iSize);
61
	bool write(const unsigned char *buf, size_t iSize);
62
	bool put(const unsigned char c);
62
	bool put(const unsigned char c);
63
 
63
 
64
	void close();
64
	void close();
65
 
65
 
66
	Utils::String readEndOfLine();
66
	Utils::String readEndOfLine();
67
 
67
 
68
	void seek(unsigned int iPos);
68
	void seek(size_t iPos);
69
	void seekEnd(unsigned int iPos = 0);
69
	void seekEnd(size_t iPos = 0);
70
	void seekStart(unsigned int iPos = 0);
70
	void seekStart(size_t iPos = 0);
71
	size_t position();
71
	size_t position();
72
 
72
 
73
	int readSize();
73
	int readSize();
74
	bool read(unsigned char *buf, size_t iSize, bool bEndChar = false);
74
	bool read(unsigned char *buf, size_t iSize, bool bEndChar = false);
75
	unsigned char *read(size_t iAmount);
75
	unsigned char *read(size_t iAmount);