#include "DxLib.h"
int WINAPI WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow ){
ChangeWindowMode( true ) ;
SetGraphMode( 800 , 600 , 32 ) ;
// 成功
if(FileRead_size( "data/test.txt" ) != -1){
MessageBox(GetMainWindowHandle(), "DxLib_Init()の前1", "成功", MB_ICONEXCLAMATION|MB_OK);
}
// 成功
if(FileRead_size( "data/test.txt" ) != -1){
MessageBox(GetMainWindowHandle(), "DxLib_Init()の前2", "成功2", MB_ICONEXCLAMATION|MB_OK);
}
if( DxLib_Init() == -1 ) { return -1; }
//失敗
if(FileRead_size( "data/test.txt" ) != -1){
MessageBox(GetMainWindowHandle(), "DxLib_Init()の後", "成功3", MB_ICONEXCLAMATION|MB_OK);
}
DxLib_End() ; // DXライブラリ使用の終了処理
return 0 ; // ソフトの終了
}
DxLib_Init()の前にロードを行うと、
DxLib_Init()以降は失敗するみたいです
DxLib_Init()以降だけなら、正常にロード出来ます
DxLib_Init()の以前に設定をするファイルを除ければ良いのですが、それも出来ればアーカイブに纏めたいのです