mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 19:49:50 +00:00
advapi32: Make internal functions static.
This commit is contained in:
parent
89e139e17f
commit
2730fe6d1c
2 changed files with 3 additions and 3 deletions
|
@ -49,7 +49,7 @@ typedef struct {
|
|||
#define R4(v,w,x,y,z,i) z+=f4(w,x,y)+blk1(i)+0xCA62C1D6+rol(v,5);w=rol(w,30);
|
||||
|
||||
/* Hash a single 512-bit block. This is the core of the algorithm. */
|
||||
void SHA1Transform(ULONG State[5], UCHAR Buffer[64])
|
||||
static void SHA1Transform(ULONG State[5], UCHAR Buffer[64])
|
||||
{
|
||||
ULONG a, b, c, d, e;
|
||||
ULONG *Block;
|
||||
|
|
|
@ -1373,8 +1373,8 @@ LONG WINAPI RegQueryValueA( HKEY hkey, LPCSTR name, LPSTR data, LPLONG count )
|
|||
*
|
||||
* Helper function for RegGetValueA/W.
|
||||
*/
|
||||
VOID ADVAPI_ApplyRestrictions( DWORD dwFlags, DWORD dwType, DWORD cbData,
|
||||
PLONG ret )
|
||||
static VOID ADVAPI_ApplyRestrictions( DWORD dwFlags, DWORD dwType,
|
||||
DWORD cbData, PLONG ret )
|
||||
{
|
||||
/* Check if the type is restricted by the passed flags */
|
||||
if (*ret == ERROR_SUCCESS || *ret == ERROR_MORE_DATA)
|
||||
|
|
Loading…
Reference in a new issue