Ignore:
Timestamp:
Mar 22, 2008, 9:47:59 PM (16 years ago)
Author:
dai_9181
Message:

・コンパイルビューへの出力を標準出力にも行うようにした。
#164への対応。コンパイルを中断すると高確率で強制終了してしまうバグを修正。
・ProjectEditorをVista用Microsoft SDKにてビルドできるようにした(WINVER定数を0x0501に指定した)。
#168への対応。エディタ上のDelegateキーワードを青色で表示するようにした。

File:
1 edited

Legend:

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

    r378 r455  
    11#include "stdafx.h"
     2
     3#include <shlwapi.h>
    24
    35#include <jenga/include/common/Path.h>
     
    573575}
    574576
    575 int PASCAL WinMain(HINSTANCE hThisInst,HINSTANCE hPrevInst,LPSTR lpCmdLine,int nShowCmd){
     577int main()
     578{
    576579    int i,i2;
    577580    char temporary[1024],temp2[MAX_PATH];
     581
     582    hInst = GetModuleHandle( NULL );
     583    LPSTR lpCmdLine = PathGetArgs( GetCommandLine() );
    578584
    579585    //_Test();
     
    588594    ScreenX=GetSystemMetrics(SM_CXSCREEN);
    589595    ScreenY=GetSystemMetrics(SM_CYSCREEN);
    590 
    591     hInst=hThisInst;
    592596
    593597    //不揮発性データを取得
     
    919923    trace("Complete ActiveBasic Compiler!");
    920924
     925    ExitProcess( 0 );
    921926
    922927    return 0;
Note: See TracChangeset for help on using the changeset viewer.