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

« back to all changes in this revision

Viewing changes to src/vm/parrot/6model/repr_registry.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
/* Various functions related to representation and representation
 
2
 * registry handling. */
 
3
 
 
4
#ifndef REPRREGISTRY_H_GUARD
 
5
#define REPRREGISTRY_H_GUARD
 
6
 
 
7
void      REPR_initialize_registry(PARROT_INTERP);
 
8
INTVAL    REPR_name_to_id         (PARROT_INTERP, STRING *name);
 
9
REPROps * REPR_get_by_id          (PARROT_INTERP, INTVAL id);
 
10
REPROps * REPR_get_by_name        (PARROT_INTERP, STRING *name);
 
11
 
 
12
#endif