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

1 month ago
//////////////////////////////////////////////////////////////////////////////
//<2F>ļ<EFBFBD> StdioFileEx.h
//<2F><>Ҫ<EFBFBD><D2AA><EFBFBD><EFBFBD>:
//
//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>д: 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);
};