diff --git a/networkbrowser/src/lib/showmount.h b/networkbrowser/src/lib/showmount.h index ef1c4676f..d7cf0a829 100644 --- a/networkbrowser/src/lib/showmount.h +++ b/networkbrowser/src/lib/showmount.h @@ -2,10 +2,10 @@ # # http://newnigma2.to # -# $Id$ +# $Id$ # # Copyright (C) 2008 by nixkoenner -# +# # License: GPL # # This program is free software; you can redistribute it and/or modify @@ -27,14 +27,14 @@ #ifndef SHOWMOUNT_H #define SHOWMOUNT_H -typedef struct { +typedef struct +{ char share[256]; char ip[41]; } nfsinfo; -nfsinfo * newNfsInfo(); +nfsinfo *newNfsInfo(); void freeNfsInfo(nfsinfo *nfsInfo); - +int showNfsShare(char *pythonIp, nfsinfo *nfsInfo); #endif -