Skip to content
Snippets Groups Projects
Commit 8b2c0fb3 authored by rswindell's avatar rswindell
Browse files

Replaced SMBCALL with DLLCALL (whoops).

parent 191e22c5
Branches
Tags
No related merge requests found
...@@ -43,7 +43,7 @@ ...@@ -43,7 +43,7 @@
/* Convert ASCIIZ string to upper case */ /* Convert ASCIIZ string to upper case */
/****************************************************************************/ /****************************************************************************/
#ifdef __unix__ #ifdef __unix__
char* SMBCALL strupr(char* str) char* DLLCALL strupr(char* str)
{ {
char* p=str; char* p=str;
...@@ -56,7 +56,7 @@ char* SMBCALL strupr(char* str) ...@@ -56,7 +56,7 @@ char* SMBCALL strupr(char* str)
/****************************************************************************/ /****************************************************************************/
/* Convert ASCIIZ string to lower case */ /* Convert ASCIIZ string to lower case */
/****************************************************************************/ /****************************************************************************/
char* SMBCALL strlwr(char* str) char* DLLCALL strlwr(char* str)
{ {
char* p=str; char* p=str;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment