やってみました。
//- 以下、テストコード -//
#include "DxLib.h"
int WINAPI WinMain( HINSTANCE, HINSTANCE, LPSTR, int )
{
ChangeWindowMode( TRUE );
SetWindowText( "DxLib:" DXLIB_VERSION_STR );
if ( DxLib_Init( ) == -1 ) return -1;
int white = GetColor( 255, 255, 255 );
char s[5][256];
int i;
double f[4];
GetPcInfo( s[0], s[1], s[2], &i, f, f+1, s[3], s[4], f+2, f+3 );
SetDrawScreen( DX_SCREEN_BACK );
while ( ProcessMessage( ) == 0 && CheckHitKey( KEY_INPUT_ESCAPE ) == 0 ) {
ClearDrawScreen( );
DrawFormatString( 0, 0, white, "TEST" );
DrawFormatString( 0, 20, white, "%s", s[0] );
DrawFormatString( 0, 40, white, "%s", s[1] );
DrawFormatString( 0, 60, white, "%s", s[2] );
DrawFormatString( 0, 80, white, "%d", i );
DrawFormatString( 0, 100, white, "%f", f[0] );
DrawFormatString( 0, 120, white, "%f", f[1] );
DrawFormatString( 0, 140, white, "%s", s[3] );
DrawFormatString( 0, 160, white, "%s", s[4] );
DrawFormatString( 0, 180, white, "%f", f[2] );
DrawFormatString( 0, 200, white, "%f", f[3] );
ScreenFlip( );
}
DxLib_End( );
return 0;
}