Changeset 455 in dev for trunk/ab5.0/abdev/BasicCompiler_Common/BasicCompiler.cpp
- Timestamp:
- Mar 22, 2008, 9:47:59 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/BasicCompiler_Common/BasicCompiler.cpp
r378 r455 1 1 #include "stdafx.h" 2 3 #include <shlwapi.h> 2 4 3 5 #include <jenga/include/common/Path.h> … … 573 575 } 574 576 575 int PASCAL WinMain(HINSTANCE hThisInst,HINSTANCE hPrevInst,LPSTR lpCmdLine,int nShowCmd){ 577 int main() 578 { 576 579 int i,i2; 577 580 char temporary[1024],temp2[MAX_PATH]; 581 582 hInst = GetModuleHandle( NULL ); 583 LPSTR lpCmdLine = PathGetArgs( GetCommandLine() ); 578 584 579 585 //_Test(); … … 588 594 ScreenX=GetSystemMetrics(SM_CXSCREEN); 589 595 ScreenY=GetSystemMetrics(SM_CYSCREEN); 590 591 hInst=hThisInst;592 596 593 597 //不揮発性データを取得 … … 919 923 trace("Complete ActiveBasic Compiler!"); 920 924 925 ExitProcess( 0 ); 921 926 922 927 return 0;
Note:
See TracChangeset
for help on using the changeset viewer.