diff options
author | Marcos Paulo de Souza <marcos.souza.org@gmail.com> | 2013-04-26 08:34:36 -0300 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2013-04-26 11:52:36 +0000 |
commit | c914d7d5cc37e86d15ff82027273b884e152163e (patch) | |
tree | d8f70bef86e07cf8d9fe8c222a79a09caf3b9072 /sal | |
parent | 914ea9a78a40210a38292b15a0e41a706f3cd9ec (diff) |
fdo#63154: Remove all usages of the macro EXTERN_C
Change-Id: I25b7f509ba5d1007a16c84ad05870a8174c094ec
Reviewed-on: https://gerrit.libreoffice.org/3621
Reviewed-by: Tor Lillqvist <tml@iki.fi>
Tested-by: Tor Lillqvist <tml@iki.fi>
Reviewed-by: David Tardon <dtardon@redhat.com>
Tested-by: David Tardon <dtardon@redhat.com>
Diffstat (limited to 'sal')
-rw-r--r-- | sal/systools/win32/uwinapi/legacy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sal/systools/win32/uwinapi/legacy.c b/sal/systools/win32/uwinapi/legacy.c index ec0b80a306b5..777df2b7385e 100644 --- a/sal/systools/win32/uwinapi/legacy.c +++ b/sal/systools/win32/uwinapi/legacy.c @@ -14,7 +14,7 @@ #pragma warning(disable:4273) // inconsistent dll linkage #endif -EXTERN_C DWORD WINAPI GetShortPathNameW(LPCWSTR lpszLongPath,LPWSTR lpszShortPath,DWORD cchBuffer) +extern "C" DWORD WINAPI GetShortPathNameW(LPCWSTR lpszLongPath,LPWSTR lpszShortPath,DWORD cchBuffer) { typedef DWORD (WINAPI * GetShortPathNameW_t) (LPCWSTR,LPWSTR,DWORD); |