Alexandre Julliard : localspl: Make some functions static.

Alexandre Julliard julliard at winehq.org
Tue Dec 2 11:02:04 CST 2008


Module: wine
Branch: master
Commit: 05bdac1526e2b98692261eaac95d3b6e7d839f5b
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=05bdac1526e2b98692261eaac95d3b6e7d839f5b

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Tue Dec  2 15:26:37 2008 +0100

localspl: Make some functions static.

---

 dlls/localspl/localspl_main.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dlls/localspl/localspl_main.c b/dlls/localspl/localspl_main.c
index 7cadac3..4483ac8 100644
--- a/dlls/localspl/localspl_main.c
+++ b/dlls/localspl/localspl_main.c
@@ -898,7 +898,7 @@ static BOOL myAddPrinterDriverEx(DWORD level, LPBYTE pDriverInfo, DWORD dwFileCo
  *  All Files for the Monitor must already be copied to %winsysdir% ("%SystemRoot%\system32")
  *
  */
-BOOL WINAPI fpAddMonitor(LPWSTR pName, DWORD Level, LPBYTE pMonitors)
+static BOOL WINAPI fpAddMonitor(LPWSTR pName, DWORD Level, LPBYTE pMonitors)
 {
     monitor_t * pm = NULL;
     LPMONITOR_INFO_2W mi2w;
@@ -1034,7 +1034,7 @@ static BOOL WINAPI fpAddPrinterDriverEx(LPWSTR pName, DWORD level, LPBYTE pDrive
  *
  */
 
-BOOL WINAPI fpDeleteMonitor(LPWSTR pName, LPWSTR pEnvironment, LPWSTR pMonitorName)
+static BOOL WINAPI fpDeleteMonitor(LPWSTR pName, LPWSTR pEnvironment, LPWSTR pMonitorName)
 {
     HKEY    hroot = NULL;
     LONG    lres;
@@ -1096,8 +1096,8 @@ BOOL WINAPI fpDeleteMonitor(LPWSTR pName, LPWSTR pEnvironment, LPWSTR pMonitorNa
  *  Windows reads the Registry once and cache the Results.
  *
  */
-BOOL WINAPI fpEnumMonitors(LPWSTR pName, DWORD Level, LPBYTE pMonitors, DWORD cbBuf,
-                            LPDWORD pcbNeeded, LPDWORD pcReturned)
+static BOOL WINAPI fpEnumMonitors(LPWSTR pName, DWORD Level, LPBYTE pMonitors, DWORD cbBuf,
+                                  LPDWORD pcbNeeded, LPDWORD pcReturned)
 {
     DWORD   numentries = 0;
     DWORD   needed = 0;




More information about the wine-cvs mailing list