Correct WINAPI position for MSVC portability.
This commit is contained in:
parent
60c1ae0bb8
commit
9f9fd4080b
|
@ -582,7 +582,7 @@ static BOOL internal_wglUseFontBitmaps(HDC hdc,
|
|||
DWORD first,
|
||||
DWORD count,
|
||||
DWORD listBase,
|
||||
DWORD WINAPI (*GetGlyphOutline_ptr)(HDC,UINT,UINT,LPGLYPHMETRICS,DWORD,LPVOID,const MAT2*))
|
||||
DWORD (WINAPI *GetGlyphOutline_ptr)(HDC,UINT,UINT,LPGLYPHMETRICS,DWORD,LPVOID,const MAT2*))
|
||||
{
|
||||
/* We are running using client-side rendering fonts... */
|
||||
GLYPHMETRICS gm;
|
||||
|
|
|
@ -2415,8 +2415,8 @@ ShellLink_QueryContextMenu( IContextMenu* iface, HMENU hmenu, UINT indexMenu,
|
|||
|
||||
static LPWSTR shelllink_get_msi_component_path( LPCWSTR component )
|
||||
{
|
||||
UINT WINAPI (*pMsiDecomposeDescriptorW)(LPCWSTR,LPWSTR,LPWSTR,LPWSTR,DWORD*);
|
||||
INSTALLSTATE WINAPI (*pMsiGetComponentPathW)(LPCWSTR,LPCWSTR,LPWSTR,DWORD*);
|
||||
UINT (WINAPI *pMsiDecomposeDescriptorW)(LPCWSTR,LPWSTR,LPWSTR,LPWSTR,DWORD*);
|
||||
INSTALLSTATE (WINAPI *pMsiGetComponentPathW)(LPCWSTR,LPCWSTR,LPWSTR,DWORD*);
|
||||
WCHAR szProd[MAX_FEATURE_CHARS+1], szFeat[MAX_FEATURE_CHARS+1],
|
||||
szComp[MAX_FEATURE_CHARS+1], szCompPath[MAX_PATH];
|
||||
INSTALLSTATE state;
|
||||
|
|
Loading…
Reference in New Issue