Commit 2730fe6d authored by James Hawkins's avatar James Hawkins Committed by Alexandre Julliard

advapi32: Make internal functions static.

parent 89e139e1
......@@ -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)
......
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