-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 4723e93
Showing
25 changed files
with
9,547 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
#pragma resource "mbcaster.res" | ||
#if _MSC_VER >= 1300 | ||
# /* definition for VC2005 */ | ||
#else | ||
# include <windows.h> | ||
#endif | ||
#include "mainDatClass.h" | ||
using namespace std; | ||
|
||
int main( int argc, char *argv[] ){ | ||
|
||
//プロセスの優先度を設定 | ||
// SetPriorityClass( GetCurrentProcess(), REALTIME_PRIORITY_CLASS ); | ||
SetPriorityClass( GetCurrentProcess(), HIGH_PRIORITY_CLASS ); | ||
|
||
//main | ||
{ | ||
mainDatClass mainDat; | ||
mainDat.fixCfgFlg=0; | ||
if( mainDat.mainDatInit( argc, argv ) ) return 1; | ||
|
||
int Res; | ||
for(;;){ | ||
Res = mainDat.Entrance(); | ||
if( Res == 0xF ) break; | ||
if( Res == 0 ) mainDat.backGroundRoop(); | ||
} | ||
|
||
if( mainDat.mainDatEnd() ) return 1; | ||
} | ||
|
||
|
||
return 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
CPP = bcc32 | ||
CPPFLAGS = -WM -O2 | ||
|
||
TARGET = ABKCaster | ||
OBJ1 = ABKCaster.obj | ||
OBJ2 = charDat.obj charDat_di.obj inputData.obj inputDataSub.obj | ||
OBJ3 = mainDat.obj mainDat_func.obj mainDat_mainRoop.obj mainDat_th075.obj mainDat_thread.obj | ||
OBJ4 = mainDat_main.obj mainDat_manipMenu.obj mainDat_main_sub.obj mainDat_mainStep.obj syncData.obj syncDataSub.obj | ||
LIB = dinput.lib cw32mt.lib winmm.lib zlib.lib shlwapi.lib | ||
|
||
|
||
all: $(TARGET) | ||
$(TARGET) : $(OBJ1) mbcaster.res | ||
$(TARGET) : $(OBJ2) | ||
$(TARGET) : $(OBJ3) | ||
$(TARGET) : $(OBJ4) | ||
$(CPP) $(OBJ1) $(OBJ2) $(OBJ3) $(OBJ4) $(LIB) | ||
|
||
.cpp.obj: | ||
$(CPP) $(CPPFLAGS) -c $< | ||
|
||
# cleanup | ||
clean: | ||
-del *.obj | ||
-del *.exe | ||
-del *.tds | ||
|
||
th075Caster.obj: mainDatClass.h charDatClass.h etc.h const.h inputDataClass.h syncDataClass.h | ||
charDat.obj: charDatClass.h etc.h const.h | ||
charDat_di.obj: charDatClass.h etc.h const.h | ||
inputData.obj: etc.h const.h inputDataClass.h syncDataClass.h | ||
inputDataSub.obj: etc.h const.h inputDataClass.h syncDataClass.h | ||
mainDat.obj: mainDatClass.h charDatClass.h etc.h const.h inputDataClass.h syncDataClass.h | ||
mainDat_func.obj: mainDatClass.h charDatClass.h etc.h const.h inputDataClass.h syncDataClass.h | ||
mainDat_mainRoop.obj: mainDatClass.h charDatClass.h etc.h const.h inputDataClass.h syncDataClass.h | ||
mainDat_th075.obj: mainDatClass.h charDatClass.h etc.h const.h inputDataClass.h syncDataClass.h | ||
mainDat_thread.obj: mainDatClass.h charDatClass.h etc.h const.h inputDataClass.h syncDataClass.h | ||
#booster/boosterDatClass.h | ||
mainDat_main.obj: mainDatClass.h charDatClass.h etc.h const.h inputDataClass.h syncDataClass.h | ||
mainDat_manipMenu.obj: mainDatClass.h charDatClass.h etc.h const.h inputDataClass.h syncDataClass.h | ||
mainDat_main_sub.obj: mainDatClass.h charDatClass.h etc.h const.h inputDataClass.h syncDataClass.h | ||
mainDat_mainStep.obj: mainDatClass.h charDatClass.h etc.h const.h inputDataClass.h syncDataClass.h | ||
|
Binary file not shown.
Oops, something went wrong.