diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-06-05 18:18:44 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-06-05 18:18:44 +0000 |
commit | 1d58305527a3ac3d82e30967f5b0fae28fee911d (patch) | |
tree | 31f8ad07775d8faa4fdf686d3222bc101503a41c /perl.h | |
parent | 51aa15f38ed061e162eb5fdd50db6c15d839cf32 (diff) | |
download | perl-1d58305527a3ac3d82e30967f5b0fae28fee911d.tar.gz |
[win32] add AS patch#26 (rename THIS to PERL_OBJEC_THIS to avoid clash
with the xsubpp-generated symbol)
p4raw-id: //depot/win32/perl@1075
Diffstat (limited to 'perl.h')
-rw-r--r-- | perl.h | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -108,9 +108,9 @@ class CPerlObj; #define CPERLarg CPerlObj *pPerl #define CPERLarg_ CPERLarg, #define _CPERLarg ,CPERLarg -#define THIS this -#define _THIS ,this -#define THIS_ this, +#define PERL_OBJECT_THIS this +#define _PERL_OBJECT_THIS ,this +#define PERL_OBJECT_THIS_ this, #define CALLRUNOPS (this->*runops) #else /* !PERL_OBJECT */ @@ -122,9 +122,9 @@ class CPerlObj; #define CPERLarg void #define CPERLarg_ #define _CPERLarg -#define THIS -#define _THIS -#define THIS_ +#define PERL_OBJECT_THIS +#define _PERL_OBJECT_THIS +#define PERL_OBJECT_THIS_ #define CALLRUNOPS runops #endif /* PERL_OBJECT */ |