1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-09-19 20:16:10 +08:00
Files
hl2sdk/utils/hlmv/mxLineEdit2.cpp
2025-05-17 14:13:05 -04:00

32 lines
668 B
C++

//========= Copyright © 1996-2005, Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
//=============================================================================//
#include <windows.h>
#include <richedit.h>
#include "mxLineEdit2.h"
mxLineEdit2::mxLineEdit2( mxWindow *parent, int x, int y, int w, int h, const char *label, int id, int style )
: mxLineEdit( parent, x, y, w, h, label, id, style )
{
}
void mxLineEdit2::getText( char *pOut, int len )
{
GetWindowText( (HWND) getHandle (), pOut, len );
pOut[len-1] = 0;
}
void mxLineEdit2::setText( const char *pText )
{
setLabel( "%s", pText );
}