]> git.sesse.net Git - vlc/blobdiff - include/netutils.h
* This the last piece of the new configuration module. You can now save your
[vlc] / include / netutils.h
index b9c2f2ed2484e006b05ea24bde810f5334cb32bc..552a94e0ff6001f444de2d19eeb53e5a8854d304 100644 (file)
@@ -4,7 +4,7 @@
  * modules.
  *****************************************************************************
  * Copyright (C) 1999, 2000, 2001 VideoLAN
- * $Id: netutils.h,v 1.17 2001/11/23 18:47:51 massiot Exp $
+ * $Id: netutils.h,v 1.18 2001/12/30 07:09:54 sam Exp $
  *
  * Authors: Vincent Seguin <seguin@via.ecp.fr>
  *          Henri Fallon <henri@videolan.org>
  *****************************************************************************/
 struct sockaddr_in;
 int   network_BuildAddr       ( struct sockaddr_in *, char *, int ); 
+
+#ifndef PLUGIN
 int   network_ChannelJoin     ( int );
 int   network_ChannelCreate   ( void );
+#else
+#   define network_ChannelCreate p_symbols->network_ChannelCreate
+#   define network_ChannelJoin   p_symbols->network_ChannelJoin
+#endif