commit 2025-08-25 01:23 edit a bit ZCppMain/ZMainHead.H

This commit is contained in:
2025-08-25 01:23:27 +09:00
parent f3ce568dc5
commit dec8503d94
2 changed files with 37 additions and 49 deletions

View File

@ -32,23 +32,6 @@ mingw g++ 에서 희한하게 에러다.
16 | static int Main(int AI_ArgCnt=0, const char* APP_ArgVal[]=0)
| ~~~~~~~~~~~~^~~~~~~~~~~~~~
아래 코드는 또 컴파일 에러가 없다.
#include<iostream>
using namespace std;
int Main(int AI_RrgCnt, const char* APP_ArgVal[]=0)
{
cout<<"Call Main()"<<endl; return 0;
}
int main(int AI_RrgCnt, char* APP_ArgVal[]=0)
{
return Main(AI_RrgCnt, APP_ArgVal);
}
*/
static int Main(int AI_ArgCnt=0, char* APP_ArgVal[]=0)
{