File: ide.h

package info (click to toggle)
hardinfo 0.3.6-5
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 416 kB
  • ctags: 243
  • sloc: ansic: 2,840; sh: 201; makefile: 86; perl: 53
file content (18 lines) | stat: -rw-r--r-- 267 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef __IDE_H__
#define __IDE_H__

typedef struct _IDEDevice	IDEDevice;

struct _IDEDevice {
	gchar *model;
	
	gchar *media;
	gint cache;

	IDEDevice *next;
};

void hi_show_ide_info(MainWindow *mainwindow, IDEDevice *device);
IDEDevice *hi_scan_ide(void);

#endif