1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
<html>
<head>
<title>~/src/firstworks/rudiments-0.31/include/rudiments/device.h.html</title>
<meta name="Generator" content="Vim/7.0">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="#ffffff" text="#000000">
<pre>
<font color="#0000ff">// Copyright (c) 2004 David Muse</font>
<font color="#0000ff">// See the COPYING file for more information.</font>
<font color="#a020f0">#ifndef RUDIMENTS_DEVICE_H</font>
<font color="#a020f0">#define RUDIMENTS_DEVICE_H</font>
<font color="#a020f0">#include </font><font color="#ff00ff"><rudiments/private/deviceincludes.h></font>
<font color="#0000ff">// The device class provides methods for interacting with devices.</font>
<font color="#a020f0">#ifdef RUDIMENTS_NAMESPACE</font>
<font color="#2e8b57"><b>namespace</b></font> rudiments {
<font color="#a020f0">#endif</font>
<font color="#2e8b57"><b>class</b></font> deviceprivate;
<font color="#2e8b57"><b>class</b></font> device : <font color="#a52a2a"><b>public</b></font> file {
<font color="#a52a2a"><b>public</b></font>:
device();
<font color="#0000ff">// Creates an uninitialized instance of the</font>
<font color="#0000ff">// device class.</font>
device(<font color="#2e8b57"><b>const</b></font> device &d);
device &<font color="#a52a2a"><b>operator</b></font>=(<font color="#2e8b57"><b>const</b></font> device &d);
<font color="#2e8b57"><b>virtual</b></font> ~device();
<font color="#2e8b57"><b>static</b></font> <font color="#2e8b57"><b>bool</b></font> createDeviceNode(<font color="#2e8b57"><b>const</b></font> <font color="#2e8b57"><b>char</b></font> *filename,
<font color="#2e8b57"><b>bool</b></font> blockdevice,
<font color="#2e8b57"><b>unsigned</b></font> <font color="#2e8b57"><b>short</b></font> major,
<font color="#2e8b57"><b>unsigned</b></font> <font color="#2e8b57"><b>short</b></font> minor,
mode_t perms);
<font color="#0000ff">// Creates device node "filename" with major number</font>
<font color="#0000ff">// "major" and minor number "minor". The device node</font>
<font color="#0000ff">// will be created as a block device if "blockdevice"</font>
<font color="#0000ff">// is true, otherwise it will be created as a character</font>
<font color="#0000ff">// device. The device node will be assigned</font>
<font color="#0000ff">// permissions "perms".</font>
<font color="#0000ff">//</font>
<font color="#0000ff">// Returns true on success and false on failure.</font>
<font color="#a020f0"> #include </font><font color="#ff00ff"><rudiments/private/device.h></font>
};
<font color="#a020f0">#ifdef RUDIMENTS_NAMESPACE</font>
}
<font color="#a020f0">#endif</font>
<font color="#a020f0">#endif</font>
</pre>
</body>
</html>
|