More static funcs.

git-svn-id: svn://svn.code.sf.net/p/rdesktop/code/trunk/rdesktop@320 423420c4-83ab-492f-b58f-81f9feb106b5
This commit is contained in:
Peter Åstrand 2003-02-10 13:07:47 +00:00
parent c3f9bde92c
commit 4efe873c2f

View File

@ -22,7 +22,7 @@
#define CVAL(p) (*(p++))
uint32
static uint32
cvalx(unsigned char **input, int Bpp)
{
uint32 rv = 0;
@ -31,14 +31,14 @@ cvalx(unsigned char **input, int Bpp)
return rv;
}
void
static void
setli(unsigned char *input, int offset, uint32 value, int Bpp)
{
input += offset * Bpp;
memcpy(input, &value, Bpp);
}
uint32
static uint32
getli(unsigned char *input, int offset, int Bpp)
{
uint32 rv = 0;