shell32: Remove WINAPI on static functions where not needed.
diff --git a/dlls/shell32/shellpath.c b/dlls/shell32/shellpath.c
index 017f101..c468cb8 100644
--- a/dlls/shell32/shellpath.c
+++ b/dlls/shell32/shellpath.c
@@ -3135,7 +3135,7 @@
  *                      However, besides root key, path is always that same, and is stored
  *                      as "szKnownFolderRedirections" constant
  */
-static HRESULT WINAPI get_known_folder_redirection_place(
+static HRESULT get_known_folder_redirection_place(
     REFKNOWNFOLDERID rfid,
     HKEY *rootKey)
 {
@@ -3173,7 +3173,7 @@
     return hr;
 }
 
-static HRESULT WINAPI redirect_known_folder(
+static HRESULT redirect_known_folder(
     REFKNOWNFOLDERID rfid,
     HWND hwnd,
     KF_REDIRECT_FLAGS flags,