1
0
mirror of https://github.com/upx/upx synced 2025-09-28 19:06:07 +08:00

Fixed cdecl.

committer: mfx <mfx> 1062472677 +0000
This commit is contained in:
Markus F.X.J. Oberhumer 2003-09-02 03:17:57 +00:00
parent b0e961b90b
commit 570b195ed6
2 changed files with 2 additions and 2 deletions

View File

@ -1025,7 +1025,7 @@ void Packer::initLoader(const void *pdata, int plen, int pinfo, int small)
}
void Packer::addLoader(const char *s, ...)
void __acc_cdecl_va Packer::addLoader(const char *s, ...)
{
const char *p;
va_list ap;

View File

@ -208,7 +208,7 @@ protected:
virtual const upx_byte *getLoader() const;
virtual int getLoaderSize() const;
virtual void initLoader(const void *pdata, int plen, int pinfo=-1, int small=-1);
virtual void addLoader(const char *s, ...);
virtual void __acc_cdecl_va addLoader(const char *s, ...);
virtual int getLoaderSection(const char *name, int *slen=NULL) const;
virtual int getLoaderSectionStart(const char *name, int *slen=NULL) const;
virtual const char *getDecompressor() const;