summaryrefslogtreecommitdiffstats
path: root/TOOLS/vfw2menc.c
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-04-30 13:53:40 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-04-30 13:53:40 +0000
commitc5d5fe98b24e7e9e34b06b88d5d9ae212ea74974 (patch)
treed796c025c142c308510103ecf1c9b41c27ff7d69 /TOOLS/vfw2menc.c
parent089034fcd5a181fd34c4c9ed37677b8bb89a6d2e (diff)
downloadmpv-c5d5fe98b24e7e9e34b06b88d5d9ae212ea74974.tar.bz2
mpv-c5d5fe98b24e7e9e34b06b88d5d9ae212ea74974.tar.xz
Mark all functions that are only used within the file as static.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26607 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'TOOLS/vfw2menc.c')
-rw-r--r--TOOLS/vfw2menc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/TOOLS/vfw2menc.c b/TOOLS/vfw2menc.c
index 91a2cde3ca..526acde3d3 100644
--- a/TOOLS/vfw2menc.c
+++ b/TOOLS/vfw2menc.c
@@ -59,7 +59,7 @@ enum
MODE_VIEW
};
-int save_settings(HDRVR hDriver, const char *filename)
+static int save_settings(HDRVR hDriver, const char *filename)
{
FILE *fd = NULL;
DWORD cb = (DWORD) SendDriverMessage(hDriver, ICM_GETSTATE, 0, 0);
@@ -99,7 +99,7 @@ int save_settings(HDRVR hDriver, const char *filename)
return 0;
}
-int load_settings(HDRVR hDriver, const char *filename)
+static int load_settings(HDRVR hDriver, const char *filename)
{
struct stat info;
FILE *fd = NULL;
@@ -150,7 +150,7 @@ static struct option long_options[] =
{ 0, 0, 0, 0 }
};
-void help(const char *progname)
+static void help(const char *progname)
{
printf("VFW to mencoder v"VERSION" - Copyright 2007 - Gianluigi Tiesi <sherpya@netfarm.it>\n");
printf("This program is Free Software\n\n");