From 8b2c0fb38ece3d92e8c159a6c39e1b52fb499f56 Mon Sep 17 00:00:00 2001 From: rswindell <> Date: Sat, 6 Apr 2002 01:55:01 +0000 Subject: [PATCH] Replaced SMBCALL with DLLCALL (whoops). --- src/xpdev/genwrap.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xpdev/genwrap.c b/src/xpdev/genwrap.c index 77594c8ceb..b0f0eade7a 100644 --- a/src/xpdev/genwrap.c +++ b/src/xpdev/genwrap.c @@ -43,7 +43,7 @@ /* Convert ASCIIZ string to upper case */ /****************************************************************************/ #ifdef __unix__ -char* SMBCALL strupr(char* str) +char* DLLCALL strupr(char* str) { char* p=str; @@ -56,7 +56,7 @@ char* SMBCALL strupr(char* str) /****************************************************************************/ /* Convert ASCIIZ string to lower case */ /****************************************************************************/ -char* SMBCALL strlwr(char* str) +char* DLLCALL strlwr(char* str) { char* p=str; -- GitLab