Ignore:
Timestamp:
Sep 24, 2007, 2:58:10 PM (17 years ago)
Author:
dai_9181
Message:

コンパイラ組み込みテンプレートエンジンを実装。
静的リンクライブラリ、デバッグ情報の内部形式をテキストからバイナリに変更した。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abdev/BasicCompiler_Common/BasicCompiler.cpp

    r312 r322  
    9090    MessageBox(0,temporary,"TestMessage",0);
    9191}
    92 void ts(char *msg){
     92void ts(const char *msg){
    9393    MessageBox(0,msg,"TestMessage",0);
    9494}
    95 void ts(char *msg,char *title){
     95void ts(const char *msg,const char *title){
    9696    MessageBox(0,msg,title,0);
    9797}
     
    207207    lstrcat(temporary,path+i);
    208208    lstrcpy(path,temporary);
     209}
     210std::string GetApplicationBaseFullPath( const std::string &relationalPath )
     211{
     212    char fullPath[1024];
     213    lstrcpy( fullPath, relationalPath.c_str() );
     214    GetFullPath( fullPath, Jenga::Common::Environment::GetAppDir() );
     215    return fullPath;
    209216}
    210217
Note: See TracChangeset for help on using the changeset viewer.