Add OF_nextprop and OF_setprop prototypes.

This commit is contained in:
matt 2000-11-14 06:44:12 +00:00
parent 1365092255
commit 3b275bc230
1 changed files with 3 additions and 1 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: openfirm.h,v 1.13 2000/11/14 06:42:27 matt Exp $ */
/* $NetBSD: openfirm.h,v 1.14 2000/11/14 06:44:12 matt Exp $ */
/*
* Copyright (C) 1995, 1996 Wolfgang Solfrank.
@ -82,6 +82,8 @@ int OF_parent (int phandle);
int OF_instance_to_package (int ihandle);
int OF_getproplen (int handle, char *prop);
int OF_getprop (int handle, char *prop, void *buf, int buflen);
int OF_nextprop (int handle, char *prop, char *nextprop);
int OF_setprop (int handle, char *prop, const void *buf, int buflen);
int OF_finddevice (char *name);
int OF_instance_to_path (int ihandle, char *buf, int buflen);
int OF_package_to_path (int phandle, char *buf, int buflen);