⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 filename.h

📁 wxGTK 是 wxWidgets 的 linux GTK+ (>2.2.3)版本。wxWidgets 是一个跨平台的 GUI 框架
💻 H
字号:
/////////////////////////////////////////////////////////////////////////////// Name:        include/wx/private/filename.h// Purpose:     Internal declarations for src/common/filename.cpp// Author:      Mike Wetherell// Modified by:// Created:     2006-10-22// RCS-ID:      $Id: filename.h,v 1.1 2006/10/23 13:10:12 MW Exp $// Copyright:   (c) 2006 Mike Wetherell// Licence:     wxWindows licence/////////////////////////////////////////////////////////////////////////////#ifndef _WX_PRIVATE_FILENAME_H_#define _WX_PRIVATE_FILENAME_H_#include "wx/file.h"#include "wx/ffile.h"// Self deleting temp files aren't supported on all platforms. Therefore// rather than let these be in the API, they can be used internally to// implement classes (e.g. wxTempFileStream), that will do the clean up when// the OS doesn't support it.// Same usage as wxFileName::CreateTempFileName() with the extra parameter// deleteOnClose. *deleteOnClose true on entry requests a file created with a// delete on close flag, on exit the value of *deleteOnClose indicates whether// available.#if wxUSE_FILEwxString wxCreateTempFileName(const wxString& prefix,                              wxFile *fileTemp,                              bool *deleteOnClose = NULL);#endif#if wxUSE_FFILEwxString wxCreateTempFileName(const wxString& prefix,                              wxFFile *fileTemp,                              bool *deleteOnClose = NULL);#endif// Returns an open temp file, if possible either an unlinked open file or one// that will delete on close. Only returns the filename if neither was// possible, so that the caller can delete the file when done.#if wxUSE_FILEbool wxCreateTempFile(const wxString& prefix,                      wxFile *fileTemp,                      wxString *name);#endif#if wxUSE_FFILEbool wxCreateTempFile(const wxString& prefix,                      wxFFile *fileTemp,                      wxString *name);#endif#endif // _WX_PRIVATE_FILENAME_H_

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -