- Go away STDCALL, time has come for WINAPI and NTAPI
[reactos.git] / reactos / dll / win32 / kernel32 / string / lstring.c
index 8951394..134a090 100644 (file)
@@ -14,7 +14,7 @@
  * @implemented
  */
 int
-STDCALL
+WINAPI
 lstrcmpA(LPCSTR lpString1, LPCSTR lpString2)
 {
     int Result;
@@ -37,7 +37,7 @@ lstrcmpA(LPCSTR lpString1, LPCSTR lpString2)
  * @implemented
  */
 int
-STDCALL
+WINAPI
 lstrcmpiA(LPCSTR lpString1, LPCSTR lpString2)
 {
     int Result;
@@ -60,7 +60,7 @@ lstrcmpiA(LPCSTR lpString1, LPCSTR lpString2)
  * @implemented
  */
 LPSTR
-STDCALL
+WINAPI
 lstrcpynA(LPSTR lpString1, LPCSTR lpString2, int iMaxLength)
 {
     LPSTR d = lpString1;
@@ -92,7 +92,7 @@ lstrcpynA(LPSTR lpString1, LPCSTR lpString2, int iMaxLength)
  * @implemented
  */
 LPSTR
-STDCALL
+WINAPI
 lstrcpyA(LPSTR lpString1, LPCSTR lpString2)
 {
     LPSTR Ret = NULL;
@@ -113,7 +113,7 @@ lstrcpyA(LPSTR lpString1, LPCSTR lpString2)
  * @implemented
  */
 LPSTR
-STDCALL
+WINAPI
 lstrcatA(LPSTR lpString1, LPCSTR lpString2)
 {
     LPSTR Ret = NULL;
@@ -133,7 +133,7 @@ lstrcatA(LPSTR lpString1, LPCSTR lpString2)
  * @implemented
  */
 int
-STDCALL
+WINAPI
 lstrlenA(LPCSTR lpString)
 {
     INT Ret = 0;
@@ -153,7 +153,7 @@ lstrlenA(LPCSTR lpString)
  * @implemented
  */
 int
-STDCALL
+WINAPI
 lstrcmpW(LPCWSTR lpString1, LPCWSTR lpString2)
 {
     int Result;
@@ -177,7 +177,7 @@ lstrcmpW(LPCWSTR lpString1, LPCWSTR lpString2)
  * @implemented
  */
 int
-STDCALL
+WINAPI
 lstrcmpiW(LPCWSTR lpString1, LPCWSTR lpString2)
 {
     int Result;
@@ -201,7 +201,7 @@ lstrcmpiW(LPCWSTR lpString1, LPCWSTR lpString2)
  * @implemented
  */
 LPWSTR
-STDCALL
+WINAPI
 lstrcpynW(LPWSTR lpString1, LPCWSTR lpString2, int iMaxLength)
 {
     LPWSTR d = lpString1;
@@ -233,7 +233,7 @@ lstrcpynW(LPWSTR lpString1, LPCWSTR lpString2, int iMaxLength)
  * @implemented
  */
 LPWSTR
-STDCALL
+WINAPI
 lstrcpyW(LPWSTR lpString1, LPCWSTR lpString2)
 {
     LPWSTR Ret = NULL;
@@ -253,7 +253,7 @@ lstrcpyW(LPWSTR lpString1, LPCWSTR lpString2)
  * @implemented
  */
 LPWSTR
-STDCALL
+WINAPI
 lstrcatW(LPWSTR lpString1, LPCWSTR lpString2)
 {
     LPWSTR Ret = NULL;
@@ -273,7 +273,7 @@ lstrcatW(LPWSTR lpString1, LPCWSTR lpString2)
  * @implemented
  */
 int
-STDCALL
+WINAPI
 lstrlenW(LPCWSTR lpString)
 {
     INT Ret = 0;