uxtheme: UXINI_ResetINI() is unused so remove it.
This commit is contained in:
parent
eda0ec3fd2
commit
55dccf2859
|
@ -110,7 +110,6 @@ HRESULT MSSTYLES_GetPropertyMargins(PTHEME_PROPERTY tp, RECT *prc, MARGINS *pMar
|
||||||
|
|
||||||
PUXINI_FILE UXINI_LoadINI(HMODULE hTheme, LPCWSTR lpName);
|
PUXINI_FILE UXINI_LoadINI(HMODULE hTheme, LPCWSTR lpName);
|
||||||
void UXINI_CloseINI(PUXINI_FILE uf);
|
void UXINI_CloseINI(PUXINI_FILE uf);
|
||||||
void UXINI_ResetINI(PUXINI_FILE uf);
|
|
||||||
LPCWSTR UXINI_GetNextSection(PUXINI_FILE uf, DWORD *dwLen);
|
LPCWSTR UXINI_GetNextSection(PUXINI_FILE uf, DWORD *dwLen);
|
||||||
BOOL UXINI_FindSection(PUXINI_FILE uf, LPCWSTR lpName);
|
BOOL UXINI_FindSection(PUXINI_FILE uf, LPCWSTR lpName);
|
||||||
LPCWSTR UXINI_GetNextValue(PUXINI_FILE uf, DWORD *dwNameLen, LPCWSTR *lpValue, DWORD *dwValueLen);
|
LPCWSTR UXINI_GetNextValue(PUXINI_FILE uf, DWORD *dwNameLen, LPCWSTR *lpValue, DWORD *dwValueLen);
|
||||||
|
|
|
@ -95,19 +95,6 @@ void UXINI_CloseINI(PUXINI_FILE uf)
|
||||||
HeapFree(GetProcessHeap(), 0, uf);
|
HeapFree(GetProcessHeap(), 0, uf);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**********************************************************************
|
|
||||||
* UXINI_ResetINI
|
|
||||||
*
|
|
||||||
* Reset the current pointer into INI file to the beginning of the file
|
|
||||||
*
|
|
||||||
* PARAMS
|
|
||||||
* uf Theme INI file to reset
|
|
||||||
*/
|
|
||||||
void UXINI_ResetINI(PUXINI_FILE uf)
|
|
||||||
{
|
|
||||||
uf->lpCurLoc = uf->lpIni;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
* UXINI_eof
|
* UXINI_eof
|
||||||
*
|
*
|
||||||
|
@ -212,7 +199,6 @@ LPCWSTR UXINI_GetNextSection(PUXINI_FILE uf, DWORD *dwLen)
|
||||||
*
|
*
|
||||||
* Locate a section with the specified name, search starts
|
* Locate a section with the specified name, search starts
|
||||||
* at current location in ini file
|
* at current location in ini file
|
||||||
* to start search from start, call UXINI_ResetINI
|
|
||||||
*
|
*
|
||||||
* PARAMS
|
* PARAMS
|
||||||
* uf INI file to search, search starts at current location
|
* uf INI file to search, search starts at current location
|
||||||
|
|
Loading…
Reference in New Issue