~ubuntu-branches/ubuntu/vivid/nqp/vivid-proposed

« back to all changes in this revision

Viewing changes to src/vm/parrot/6model/reprs/dyncall_reprs.h

  • Committer: Package Import Robot
  • Author(s): Alessandro Ghedini
  • Date: 2013-11-01 12:09:18 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20131101120918-kx51sl0sxl3exsxi
Tags: 2013.10-1
* New upstream release
* Bump versioned (Build-)Depends on parrot
* Update patches
* Install new README.pod
* Fix vcs-field-not-canonical
* Do not install rubyish examples
* Do not Depends on parrot-devel anymore
* Add 07_disable-serialization-tests.patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef DYNCALL_REPRS_H_GUARD
 
2
#define DYNCALL_REPRS_H_GUARD
 
3
 
 
4
INTVAL get_nc_repr_id(void);
 
5
INTVAL get_cs_repr_id(void);
 
6
INTVAL get_cp_repr_id(void);
 
7
INTVAL get_ca_repr_id(void);
 
8
 
 
9
PMC *make_int_result(PARROT_INTERP, PMC *type, INTVAL value);
 
10
PMC *make_num_result(PARROT_INTERP, PMC *type, FLOATVAL value);
 
11
PMC *make_str_result(PARROT_INTERP, PMC *type, INTVAL ret_type, char *cstring);
 
12
PMC *make_cstruct_result(PARROT_INTERP, PMC *type, void *cstruct);
 
13
PMC *make_cpointer_result(PARROT_INTERP, PMC *type, void *ptr);
 
14
PMC *make_carray_result(PARROT_INTERP, PMC *type, void *carray);
 
15
 
 
16
#endif