Adapted to Mingw. Still some elements must adapted.

git-svn-id: https://clonekeenplus.svn.sourceforge.net/svnroot/clonekeenplus/cgenius/trunk@167 4df4b0f3-56ce-47cb-b001-ed939b7d65a6
This commit is contained in:
gerstrong
2009-07-25 16:27:11 +00:00
parent 476a64065b
commit 406e29984f
8 changed files with 14 additions and 24 deletions

View File

@@ -1102,15 +1102,6 @@ int dlgX,dlgY,dlgW,dlgH;
} while(1);
}
// a random number generator
ulong random_seed;
void srnd(ulong newseed) { random_seed = newseed; }
uint rnd(void)
{
random_seed = random_seed * 1103515245 + 12345;
return (uint)(random_seed / 65536) % 32768;
}
int endsequence(stCloneKeenPlus *pCKP)
{