Skip to content
Snippets Groups Projects
Select Git revision
  • 1790d87b06a7aa1280ffcd8b105fd1dd63bb582e
  • master default
  • labcomm2014
  • labcomm2006
  • python_sig_hash
  • typedefs
  • anders.blomdell
  • typeref
  • pragma
  • compiler-refactoring
  • labcomm2013
  • v2014.6
  • v2015.0
  • v2014.5
  • v2014.4
  • v2006.0
  • v2014.3
  • v2014.2
  • v2014.1
  • v2014.0
  • v2013.0
21 results

Reader.java

Blame
  • labcomm_error.h 924 B
    #ifndef __LABCOMM_ERROR_H__
    #define __LABCOMM_ERROR_H__
    
    enum labcomm_error {
    #define LABCOMM_ERROR(name, description) name ,
    #include "labcomm_error.h"
    #undef LABCOMM_ERROR
    };
    
    struct labcomm_error_handler;
    
    #endif
    
    #ifdef LABCOMM_ERROR
    
    LABCOMM_ERROR(LABCOMM_ERROR_ENC_NO_REG_SIGNATURE, 
    	      "Encoder has no registration for this signature")
    LABCOMM_ERROR(LABCOMM_ERROR_ENC_BUF_FULL,
    	      "The labcomm buffer is full")
    LABCOMM_ERROR(LABCOMM_ERROR_DEC_UNKNOWN_DATATYPE,
    	      "Decoder: Unknown datatype")
    LABCOMM_ERROR(LABCOMM_ERROR_DEC_INDEX_MISMATCH, 
    	      "Decoder: index mismatch")
    LABCOMM_ERROR(LABCOMM_ERROR_DEC_TYPE_NOT_FOUND,
    	      "Decoder: type not found")
    LABCOMM_ERROR(LABCOMM_ERROR_UNIMPLEMENTED_FUNC,
    	      "This function is not yet implemented")
    LABCOMM_ERROR(LABCOMM_ERROR_MEMORY,
    	      "Could not allocate memory")
    LABCOMM_ERROR(LABCOMM_ERROR_USER_DEF,     
    	      "User defined error")
    
    #endif