Files
Client/CryptoSource/CheckMD5/CheckMD5Dlg.h
LGram16 dd97ddec92 Restructure repository to include all source folders
Move git root from Client/ to src/ to track all source code:
- Client: Game client source (moved to Client/Client/)
- Server: Game server source
- GameTools: Development tools
- CryptoSource: Encryption utilities
- database: Database scripts
- Script: Game scripts
- rylCoder_16.02.2008_src: Legacy coder tools
- GMFont, Game: Additional resources

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-29 20:17:20 +09:00

37 lines
669 B
C++

// CheckMD5Dlg.h : 헤더 파일
//
#pragma once
#include "afxwin.h"
// CCheckMD5Dlg 대화 상자
class CCheckMD5Dlg : public CDialog
{
// 생성
public:
CCheckMD5Dlg(CWnd* pParent = NULL); // 표준 생성자
// 대화 상자 데이터
enum { IDD = IDD_CHECKMD5_DIALOG };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 지원
void GetMD5(char* file, char* outMD5);
void CreateMD5(char* fileName);
// 구현
protected:
HICON m_hIcon;
// 메시지 맵 함수를 생성했습니다.
virtual BOOL OnInitDialog();
afx_msg void OnPaint();
afx_msg HCURSOR OnQueryDragIcon();
DECLARE_MESSAGE_MAP()
public:
CEdit m_Output;
afx_msg void OnDropFiles(HDROP hDropInfo);
};