You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
551 B
C++
26 lines
551 B
C++
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
//Îļþ StdioFileEx.h
|
|
//Ö÷Òª¹¦ÄÜ:
|
|
//
|
|
//³ÌÐò±àд: 2005-12-07
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#pragma once
|
|
#include "afx.h"
|
|
|
|
class CStdioFileEx :
|
|
public CStdioFile
|
|
{
|
|
DECLARE_DYNAMIC(CStdioFileEx)
|
|
|
|
public:
|
|
CStdioFileEx(void);
|
|
~CStdioFileEx(void);
|
|
|
|
BOOL Open(HANDLE hFile, UINT nOpenFlags, CFileException* pException=NULL);
|
|
|
|
virtual void WriteString(LPCTSTR lpsz);
|
|
virtual void Write(const void* lpBuf, UINT nCount);
|
|
};
|