[Box Backup-dev] COMMIT r831 - box/chris/merge/bin/bbstored

boxbackup-dev@fluffy.co.uk boxbackup-dev@fluffy.co.uk
Wed, 30 Aug 2006 19:52:01 +0100


Author: chris
Date: 2006-08-30 19:52:01 +0100 (Wed, 30 Aug 2006)
New Revision: 831

Modified:
   box/chris/merge/bin/bbstored/BackupStoreDaemon.h
Log:
* bin/bbstored/BackupStoreDaemon.h
- Removed SendMessageToHousekeepingProcess() on Win32, no longer needed


Modified: box/chris/merge/bin/bbstored/BackupStoreDaemon.h
===================================================================
--- box/chris/merge/bin/bbstored/BackupStoreDaemon.h	2006-08-30 18:37:38 UTC (rev 830)
+++ box/chris/merge/bin/bbstored/BackupStoreDaemon.h	2006-08-30 18:52:01 UTC (rev 831)
@@ -38,11 +38,13 @@
 	BackupStoreDaemon(const BackupStoreDaemon &rToCopy);
 public:
 
-	// For BackupContext to comminicate with housekeeping process
+#ifndef WIN32
+	// For BackupContext to communicate with housekeeping process
 	void SendMessageToHousekeepingProcess(const void *Msg, int MsgLen)
 	{
 		mInterProcessCommsSocket.Write(Msg, MsgLen);
 	}
+#endif
 
 protected: