48 lines
1.3 KiB
C
48 lines
1.3 KiB
C
/*
|
|
rsynt.h - Read SyntaxID of specified attribute
|
|
Copyright (C) 2000 Petr Vandrovec
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
|
|
Revision history:
|
|
|
|
1.00 2000, July 2 Petr Vandrovec <vandrove@vc.cvut.cz>
|
|
Initial revision, cloned from readadef.c.
|
|
|
|
*/
|
|
|
|
#ifndef __CONTRIB_TESTING_RSYNT_H__
|
|
#define __CONTRIB_TESTING_RSYNT_H__
|
|
|
|
#ifdef N_PLAT_MSW4
|
|
#include <nwcalls.h>
|
|
#include <nwnet.h>
|
|
#include <nwclxcon.h>
|
|
|
|
typedef unsigned int u_int32_t;
|
|
typedef unsigned long NWObjectID;
|
|
typedef u_int32_t Time_T;
|
|
#else
|
|
#include <ncp/nwcalls.h>
|
|
#include <ncp/nwnet.h>
|
|
|
|
#endif
|
|
|
|
NWDSCCODE MyNWDSReadSyntaxID(NWDSContextHandle ctx, NWDSChar* attr, enum SYNTAX* synt);
|
|
|
|
#endif
|
|
|