File: powertec.h

package info (click to toggle)
acorn-fdisk 3.0.6-13
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,068 kB
  • sloc: ansic: 5,422; makefile: 99
file content (22 lines) | stat: -rw-r--r-- 403 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * lib/scheme/powertec.h
 *
 * Copyright (C) 1997,1998 Russell King
 */
#ifndef SCHEME_POWERTEC_H
#define SCHEME_POWERTEC_H

#define SCHEME_POWERTEC

typedef struct {
  u_int unused;
} powertec_data_t;

typedef struct {
  u_int idx;	/* offset into partition table			*/
  char  *type;	/* powertec type name (for unknown partitions)	*/
} powertec_part_t;

extern struct scheme powertec_scheme;

#endif