advapi32: Make internal functions static.

This commit is contained in:
James Hawkins 2006-10-11 11:13:04 -07:00 committed by Alexandre Julliard
parent 89e139e17f
commit 2730fe6d1c
2 changed files with 3 additions and 3 deletions

View File

@ -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;

View File

@ -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)