1*9428323dSchristos // 2*9428323dSchristos // validate.h - 3*9428323dSchristos // 4*9428323dSchristos // Written by Eryk Vershen 5*9428323dSchristos // 6*9428323dSchristos 7*9428323dSchristos /* 8*9428323dSchristos * Copyright 1997,1998 by Apple Computer, Inc. 9*9428323dSchristos * All Rights Reserved 10*9428323dSchristos * 11*9428323dSchristos * Permission to use, copy, modify, and distribute this software and 12*9428323dSchristos * its documentation for any purpose and without fee is hereby granted, 13*9428323dSchristos * provided that the above copyright notice appears in all copies and 14*9428323dSchristos * that both the copyright notice and this permission notice appear in 15*9428323dSchristos * supporting documentation. 16*9428323dSchristos * 17*9428323dSchristos * APPLE COMPUTER DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE 18*9428323dSchristos * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 19*9428323dSchristos * FOR A PARTICULAR PURPOSE. 20*9428323dSchristos * 21*9428323dSchristos * IN NO EVENT SHALL APPLE COMPUTER BE LIABLE FOR ANY SPECIAL, INDIRECT, OR 22*9428323dSchristos * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 23*9428323dSchristos * LOSS OF USE, DATA OR PROFITS, WHETHER IN ACTION OF CONTRACT, 24*9428323dSchristos * NEGLIGENCE, OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION 25*9428323dSchristos * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 26*9428323dSchristos */ 27*9428323dSchristos 28*9428323dSchristos #ifndef __validate__ 29*9428323dSchristos #define __validate__ 30*9428323dSchristos 31*9428323dSchristos #include "partition_map.h" 32*9428323dSchristos 33*9428323dSchristos 34*9428323dSchristos // 35*9428323dSchristos // Defines 36*9428323dSchristos // 37*9428323dSchristos 38*9428323dSchristos 39*9428323dSchristos // 40*9428323dSchristos // Types 41*9428323dSchristos // 42*9428323dSchristos 43*9428323dSchristos 44*9428323dSchristos // 45*9428323dSchristos // Global Constants 46*9428323dSchristos // 47*9428323dSchristos 48*9428323dSchristos 49*9428323dSchristos // 50*9428323dSchristos // Global Variables 51*9428323dSchristos // 52*9428323dSchristos 53*9428323dSchristos 54*9428323dSchristos // 55*9428323dSchristos // Forward declarations 56*9428323dSchristos // 57*9428323dSchristos void validate_map(partition_map_header *map); 58*9428323dSchristos 59*9428323dSchristos #endif /* __validate__ */ 60