それらの関数は MakeKeyInput や KeyInputString の動作を設定するものだと思います。
//- 以下、テストコード -//
#include "DxLib.h"
int WINAPI WinMain( HINSTANCE, HINSTANCE, LPSTR, int )
{
ChangeWindowMode( TRUE );
char String[ 256 ] ;
int InputHandle ;
if( DxLib_Init() == -1 ) return -1 ;
SetDrawScreen( DX_SCREEN_BACK ) ;
SetKeyInputCursorBrinkFlag( TRUE );
SetKeyInputCursorBrinkTime( 250 );
InputHandle = MakeKeyInput( 50 , FALSE , FALSE , FALSE ) ;
SetActiveKeyInput( InputHandle ) ;
while( !ProcessMessage() )
{
if( CheckKeyInput( InputHandle ) != 0 ) break ;
SetKeyInputCursorPosition( 0, InputHandle );
ClearDrawScreen() ;
DrawKeyInputModeString( 640 , 480 ) ;
DrawKeyInputString( 0 , 0 , InputHandle ) ;
ScreenFlip() ;
}
GetKeyInputString( String , InputHandle ) ;
DeleteKeyInput( InputHandle ) ;
ClearDrawScreen() ;
DrawString( 0 , 0 , "あなたが入力した文字列は" , GetColor( 255 , 255 , 255 ) ) ;
DrawString( 0 , 16 , String , GetColor( 255 , 255 , 255 ) ) ;
ScreenFlip() ;
WaitKey() ;
DxLib_End() ;
return 0 ;
}