Commit 0810a923 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

shlwapi: Replace inline static with static inline.

parent 7c6ef46c
...@@ -49,7 +49,7 @@ HRESULT WINAPI SHAddDataBlock(LPSHLWAPI_CLIST*,LPCSHLWAPI_CLIST); ...@@ -49,7 +49,7 @@ HRESULT WINAPI SHAddDataBlock(LPSHLWAPI_CLIST*,LPCSHLWAPI_CLIST);
* *
* Internal helper: move a DataBlock pointer to the next item. * Internal helper: move a DataBlock pointer to the next item.
*/ */
inline static LPSHLWAPI_CLIST NextItem(LPSHLWAPI_CLIST lpList) static inline LPSHLWAPI_CLIST NextItem(LPSHLWAPI_CLIST lpList)
{ {
char* address = (char*)lpList; char* address = (char*)lpList;
address += lpList->ulSize; address += lpList->ulSize;
......
...@@ -1958,7 +1958,7 @@ HRESULT WINAPI SHStrDupW(LPCWSTR src, LPWSTR * dest) ...@@ -1958,7 +1958,7 @@ HRESULT WINAPI SHStrDupW(LPCWSTR src, LPWSTR * dest)
* *
* Internal helper for SHLWAPI_WriteTimeClass. * Internal helper for SHLWAPI_WriteTimeClass.
*/ */
inline static LPWSTR SHLWAPI_WriteReverseNum(LPWSTR lpszOut, DWORD dwNum) static inline LPWSTR SHLWAPI_WriteReverseNum(LPWSTR lpszOut, DWORD dwNum)
{ {
*lpszOut-- = '\0'; *lpszOut-- = '\0';
...@@ -1978,7 +1978,7 @@ inline static LPWSTR SHLWAPI_WriteReverseNum(LPWSTR lpszOut, DWORD dwNum) ...@@ -1978,7 +1978,7 @@ inline static LPWSTR SHLWAPI_WriteReverseNum(LPWSTR lpszOut, DWORD dwNum)
* *
* Internal helper for SHLWAPI_WriteTimeClass. * Internal helper for SHLWAPI_WriteTimeClass.
*/ */
inline static int SHLWAPI_FormatSignificant(LPWSTR lpszNum, int dwDigits) static inline int SHLWAPI_FormatSignificant(LPWSTR lpszNum, int dwDigits)
{ {
/* Zero non significant digits, return remaining significant digits */ /* Zero non significant digits, return remaining significant digits */
while (*lpszNum) while (*lpszNum)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment