Files
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

38 lines
795 B
C++

/**
* @file UICmdMsgView.h
* @brief Server UIFramework에서 사용하는 List, Info컨트롤
* @remarks
* @author 강동명(edith2580@gmail.com)
* @date 2009-05-09
*/
#pragma once
namespace NaveServer {
class UICmdMsgView
{
public:
UICmdMsgView();
~UICmdMsgView();
public:
#define MAX_MSGLIST 1024
#define MAX_MSGSTRING 1024
#define INFO_HEIGHT 200
#define ID_INFO 201
#define ID_MSGVIEW 202
static HWND s_hInfoWnd; // 리스트
static HWND s_hListWnd; // 리스트
static HWND InitMsgView( HWND hParent, HFONT hFont );
static VOID ClrarMsgView( void );
static VOID UpdateInfo(WCHAR* strInfo);
static VOID ResizeLog( HWND hParent );
// ListView 입력.
static LRESULT OnVkeyToItem( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam );
};
}