Changeset 151


Ignore:
Timestamp:
Aug 20, 2008, 2:40:07 PM (17 years ago)
Author:
Yuri Dario
Message:

Added proper license informations, .def cleaning.

Location:
branches/client-1.5/src
Files:
1 added
10 edited

Legend:

Unmodified
Added
Removed
  • branches/client-1.5/src/Config.km_

    r148 r151  
     1#
     2# Netdrive Samba client plugin
     3# kBuild configuration variables
     4# Copyright (C) netlabs.org 2003-2008
     5# See COPYING for license informations
     6#
    17#
    28# edit this file to change version numbering
  • branches/client-1.5/src/Makefile.kmk

    r148 r151  
     1#
     2# Netdrive Samba client plugin
     3# kBuild makefile
     4# Copyright (C) netlabs.org 2003-2008
     5# See COPYING for license informations
    16#
    27# please define (as env variables or kmk command line) the following variables before starting:
  • branches/client-1.5/src/debug.c

    r145 r151  
     1/*
     2   Netdrive Samba client plugin
     3   logging functions
     4   Copyright (C) netlabs.org 2003-2008
     5
     6   This program is free software; you can redistribute it and/or modify
     7   it under the terms of the GNU General Public License as published by
     8   the Free Software Foundation; either version 2 of the License, or
     9   (at your option) any later version.
     10   
     11   This program is distributed in the hope that it will be useful,
     12   but WITHOUT ANY WARRANTY; without even the implied warranty of
     13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     14   GNU General Public License for more details.
     15   
     16   You should have received a copy of the GNU General Public License
     17   along with this program; if not, write to the Free Software
     18   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 
     19*/
     20
    121#define INCL_DOSERRORS
    222#define INCL_DOS
  • branches/client-1.5/src/ndpsmb.c

    r150 r151  
     1/*
     2   Netdrive Samba client plugin
     3   plugin API
     4   Copyright (C) netlabs.org 2003-2008
     5
     6   This program is free software; you can redistribute it and/or modify
     7   it under the terms of the GNU General Public License as published by
     8   the Free Software Foundation; either version 2 of the License, or
     9   (at your option) any later version.
     10   
     11   This program is distributed in the hope that it will be useful,
     12   but WITHOUT ANY WARRANTY; without even the implied warranty of
     13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     14   GNU General Public License for more details.
     15   
     16   You should have received a copy of the GNU General Public License
     17   along with this program; if not, write to the Free Software
     18   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 
     19*/
     20
    121#include <stdio.h>
    222#include <stdlib.h>
  • branches/client-1.5/src/ndpsmb.def

    r9 r151  
    1 ; Updated by makedesc.cmd
    2 ; Updated by makedesc.cmd
    3 ; Updated by makedesc.cmd
    4 ; Updated by makedesc.cmd
    51LIBRARY NDPSMB INITINSTANCE TERMINSTANCE
    6 DESCRIPTION '@#NDPSMB, Netlabs.org:1.0.15#@##1## 23 Mar 2007 16:44:49     paperino::en::::@@NDPSMB - SMBFS NetDrive External Plugin'
    72DATA MULTIPLE NONSHARED
    83EXPORTS
  • branches/client-1.5/src/ndpsmb.ndp

    r5 r151  
    44file = ndpsmb.hlp
    55file = ndpsmb.ndp
    6 file = smbcd.exe|..\smbcd.exe
  • branches/client-1.5/src/smbwrp.c

    r150 r151  
     1/*
     2   Netdrive Samba client plugin
     3   samba library wrappers
     4   Copyright (C) netlabs.org 2003-2008
     5
     6   This program is free software; you can redistribute it and/or modify
     7   it under the terms of the GNU General Public License as published by
     8   the Free Software Foundation; either version 2 of the License, or
     9   (at your option) any later version.
     10   
     11   This program is distributed in the hope that it will be useful,
     12   but WITHOUT ANY WARRANTY; without even the implied warranty of
     13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     14   GNU General Public License for more details.
     15   
     16   You should have received a copy of the GNU General Public License
     17   along with this program; if not, write to the Free Software
     18   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 
     19*/
    120
    221#include "includes.h"
  • branches/client-1.5/src/smbwrp.h

    r145 r151  
     1/*
     2   Netdrive Samba client plugin
     3   samba library wrappers
     4   Copyright (C) netlabs.org 2003-2008
     5
     6   This program is free software; you can redistribute it and/or modify
     7   it under the terms of the GNU General Public License as published by
     8   the Free Software Foundation; either version 2 of the License, or
     9   (at your option) any later version.
     10   
     11   This program is distributed in the hope that it will be useful,
     12   but WITHOUT ANY WARRANTY; without even the implied warranty of
     13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     14   GNU General Public License for more details.
     15   
     16   You should have received a copy of the GNU General Public License
     17   along with this program; if not, write to the Free Software
     18   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 
     19*/
     20
    121#ifndef _SMBWRP_H
    222#define _SMBWRP_H
  • branches/client-1.5/src/util.c

    r147 r151  
     1/*
     2   Netdrive Samba client plugin
     3   general utility functions
     4   Copyright (C) netlabs.org 2003-2008
     5
     6   This program is free software; you can redistribute it and/or modify
     7   it under the terms of the GNU General Public License as published by
     8   the Free Software Foundation; either version 2 of the License, or
     9   (at your option) any later version.
     10   
     11   This program is distributed in the hope that it will be useful,
     12   but WITHOUT ANY WARRANTY; without even the implied warranty of
     13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     14   GNU General Public License for more details.
     15   
     16   You should have received a copy of the GNU General Public License
     17   along with this program; if not, write to the Free Software
     18   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 
     19*/
     20
    121#define INCL_DOS
    222#define INCL_DOSERRORS
  • branches/client-1.5/src/util.h

    r147 r151  
     1/*
     2   Netdrive Samba client plugin
     3   general utility functions
     4   Copyright (C) netlabs.org 2003-2008
     5
     6   This program is free software; you can redistribute it and/or modify
     7   it under the terms of the GNU General Public License as published by
     8   the Free Software Foundation; either version 2 of the License, or
     9   (at your option) any later version.
     10   
     11   This program is distributed in the hope that it will be useful,
     12   but WITHOUT ANY WARRANTY; without even the implied warranty of
     13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     14   GNU General Public License for more details.
     15   
     16   You should have received a copy of the GNU General Public License
     17   along with this program; if not, write to the Free Software
     18   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 
     19*/
    120
    221#ifndef __UTIL_H__
Note: See TracChangeset for help on using the changeset viewer.