GPU-Calc: remove Alloc_Host_Ptr for clmem of NAN vector
[LibreOffice.git] / sal / systools / win32 / uwinapi / legacy.c
blobb789c07bbb8d9fc6f37ed866ea0c5139ff02aaa4
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 */
10 #define WIN32_LEAN_AND_MEAN
11 #include <windows.h>
13 #ifdef _MSC_VER
14 #pragma warning(disable:4273) // inconsistent dll linkage
15 #endif
17 DWORD WINAPI GetShortPathNameW(LPCWSTR lpszLongPath,LPWSTR lpszShortPath,DWORD cchBuffer)
19 typedef DWORD (WINAPI * GetShortPathNameW_t) (LPCWSTR,LPWSTR,DWORD);
21 GetShortPathNameW_t p_GetShortPathNameW =
22 (GetShortPathNameW_t) GetProcAddress (
23 GetModuleHandle ("kernel32.dll"), "GetShortPathNameW");
25 if (p_GetShortPathNameW)
26 return p_GetShortPathNameW(lpszLongPath,lpszShortPath,cchBuffer);
27 else
28 return 0;
31 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */