added NSISCALL to functions used in the stub (EXEHEAD)

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3944 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2005-04-02 11:23:12 +00:00
parent 7798a6ab61
commit c345108cc0
4 changed files with 16 additions and 15 deletions

View file

@ -67,7 +67,7 @@
{ retVal = rrr; goto save_state_and_return; };
static int __mygetbits(int *vtmp, int nnn, DState* s)
static int NSISCALL __mygetbits(int *vtmp, int nnn, DState* s)
{
for (;;) {
if (s->bsLive >= nnn) {
@ -96,7 +96,7 @@ static int __mygetbits(int *vtmp, int nnn, DState* s)
#define GET_BIT(lll,uuu) \
GET_BITS(lll,uuu,1)
static int getmtf1(DState_save *sv,DState* s)
static int NSISCALL getmtf1(DState_save *sv,DState* s)
{
if (sv->groupPos == 0) {
sv->groupNo++;
@ -133,7 +133,7 @@ static int getmtf1(DState_save *sv,DState* s)
/*---------------------------------------------------*/
Int32 BZ2_decompress ( DState* s )
Int32 NSISCALL BZ2_decompress ( DState* s )
{
Int32 uc;
Int32 retVal;