Files
BlitzNext/stdutil/shareprot.h
T
blitz-research 08a613ed0e Initial commit.
2014-01-31 08:23:00 +13:00

17 lines
264 B
C

#ifndef SHAREPROT_H
#define SHAREPROT_H
//bump counter
void shareProtStart();
//return counter
int shareProtCheck();
//error if counter==0
void shareProtAssert();
//clean stack then jump! Never returns!
void _stdcall shareProtJump( void(*target)() );
#endif