Changeset 55 in dev for ProjectEditor/ProjectEditor.cpp


Ignore:
Timestamp:
Feb 13, 2007, 3:14:57 AM (17 years ago)
Author:
dai_9181
Message:

・コマンドラインオプション "/unicode" に対応。
・Unicode文字セットを使用する場合に "UNICODE" が自動的に#defineされるようにしました。
・SByte型(8ビット符号付き整数型)を追加。
・Char型を文字型に変更。
・プロジェクトオプションから「Unicode文字セットを使用する」チェックを選択できるようにしました。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ProjectEditor/ProjectEditor.cpp

    r37 r55  
    19951995                        if(ProjectInfo.dwModuleType==MT_DLL) lstrcat(temporary," /dll");
    19961996
     1997                        //Unicodeオプション
     1998                        if(ProjectInfo.dwOption==PJ_OP_UNICODE) lstrcat(temporary," /unicode");
     1999
    19972000                        //ブレークポイントをセーブ
    19982001                        ProjectInfo.pobj_DBBreakPoint->SaveToTempFile();
     
    20462049                        //DLLオプション
    20472050                        if(ProjectInfo.dwModuleType==MT_DLL) lstrcat(temporary," /dll");
     2051
     2052                        //Unicodeオプション
     2053                        if(ProjectInfo.dwOption==PJ_OP_UNICODE) lstrcat(temporary," /unicode");
    20482054                    }
    20492055                    else{
     
    21292135                        //DLLオプション
    21302136                        if(ProjectInfo.dwModuleType==MT_DLL) lstrcat(temporary," /dll");
     2137
     2138                        //Unicodeオプション
     2139                        if(ProjectInfo.dwOption==PJ_OP_UNICODE) lstrcat(temporary," /unicode");
    21312140                    }
    21322141                    else{
Note: See TracChangeset for help on using the changeset viewer.