author | Ryan C. Gordon <icculus@icculus.org> |
Sun, 26 Sep 2004 13:17:54 +0000 | |
changeset 654 | c0ae01de361d |
parent 514 | f4e89d934fee |
permissions | -rw-r--r-- |
514
f4e89d934fee
Initial import of Ruby bindings for PhysicsFS.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
1 |
/* |
f4e89d934fee
Initial import of Ruby bindings for PhysicsFS.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
2 |
* PhysicsFS File abstraction - ruby interface |
f4e89d934fee
Initial import of Ruby bindings for PhysicsFS.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
3 |
* |
f4e89d934fee
Initial import of Ruby bindings for PhysicsFS.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
4 |
* Author:: Ed Sinjiashvili (slimb@vlinkmail.com) |
f4e89d934fee
Initial import of Ruby bindings for PhysicsFS.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
5 |
* License:: LGPL |
f4e89d934fee
Initial import of Ruby bindings for PhysicsFS.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
6 |
*/ |
f4e89d934fee
Initial import of Ruby bindings for PhysicsFS.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
7 |
|
f4e89d934fee
Initial import of Ruby bindings for PhysicsFS.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
8 |
#ifndef __RB__PHYSFS__FILE__H__ |
f4e89d934fee
Initial import of Ruby bindings for PhysicsFS.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
9 |
#define __RB__PHYSFS__FILE__H__ |
f4e89d934fee
Initial import of Ruby bindings for PhysicsFS.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
10 |
|
f4e89d934fee
Initial import of Ruby bindings for PhysicsFS.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
11 |
extern VALUE classPhysfsFile; |
f4e89d934fee
Initial import of Ruby bindings for PhysicsFS.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
12 |
|
f4e89d934fee
Initial import of Ruby bindings for PhysicsFS.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
13 |
VALUE physfs_file_new (PHYSFS_file *file); |
f4e89d934fee
Initial import of Ruby bindings for PhysicsFS.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
14 |
VALUE physfs_file_close (VALUE self); |
f4e89d934fee
Initial import of Ruby bindings for PhysicsFS.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
15 |
VALUE physfs_file_read (VALUE self, VALUE objSize, VALUE objCount); |
f4e89d934fee
Initial import of Ruby bindings for PhysicsFS.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
16 |
VALUE physfs_file_write (VALUE self, VALUE buf, VALUE objSize, VALUE objCount); |
f4e89d934fee
Initial import of Ruby bindings for PhysicsFS.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
17 |
VALUE physfs_file_eof (VALUE self); |
f4e89d934fee
Initial import of Ruby bindings for PhysicsFS.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
18 |
VALUE physfs_file_tell (VALUE self); |
f4e89d934fee
Initial import of Ruby bindings for PhysicsFS.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
19 |
VALUE physfs_file_seek (VALUE self, VALUE pos); |
f4e89d934fee
Initial import of Ruby bindings for PhysicsFS.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
20 |
VALUE physfs_file_length (VALUE self); |
f4e89d934fee
Initial import of Ruby bindings for PhysicsFS.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
21 |
|
f4e89d934fee
Initial import of Ruby bindings for PhysicsFS.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
22 |
void init_physfs_file (void); |
f4e89d934fee
Initial import of Ruby bindings for PhysicsFS.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
23 |
|
f4e89d934fee
Initial import of Ruby bindings for PhysicsFS.
Ryan C. Gordon <icculus@icculus.org>
parents:
diff
changeset
|
24 |
#endif |