DragonNest/Client/EtUITool/CompressCheckDlg.h
2024-12-19 09:48:26 +08:00

25 lines
547 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#pragma once
#include "afxdlgs.h"
class CCompressCheckDlg : public CFileDialog
{
DECLARE_DYNAMIC(CCompressCheckDlg)
public:
CCompressCheckDlg(BOOL bOpenFileDialog, // FileOpenÀº TRUE, FileSaveAs´Â FALSEÀÔ´Ï´Ù.
LPCTSTR lpszDefExt = NULL,
LPCTSTR lpszFileName = NULL,
DWORD dwFlags = OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT,
LPCTSTR lpszFilter = NULL,
CWnd* pParentWnd = NULL);
~CCompressCheckDlg(void);
protected:
public:
int m_nDoNotCompressTexture;
protected:
DECLARE_MESSAGE_MAP()
afx_msg void OnBnClickedCompressCheck();
};