shlwapi: Replace inline static with static inline.

This commit is contained in:
Andrew Talbot 2007-03-23 15:08:37 +00:00 committed by Alexandre Julliard
parent 7c6ef46cb9
commit 0810a92353
2 changed files with 3 additions and 3 deletions

View File

@ -49,7 +49,7 @@ HRESULT WINAPI SHAddDataBlock(LPSHLWAPI_CLIST*,LPCSHLWAPI_CLIST);
*
* 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;
address += lpList->ulSize;

View File

@ -1958,7 +1958,7 @@ HRESULT WINAPI SHStrDupW(LPCWSTR src, LPWSTR * dest)
*
* 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';
@ -1978,7 +1978,7 @@ inline static LPWSTR SHLWAPI_WriteReverseNum(LPWSTR lpszOut, DWORD dwNum)
*
* 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 */
while (*lpszNum)