예제 #1
0
파일: lr_parser.cpp 프로젝트: sten1ee/cpp
void lr_parser::report_fatal_error(const char* message, lr_symbol* info)
{
  /* use the normal error message reporting to put out the message */
  report_error(message, info);

  /* throw an exception */
  throw xfatal("Fatal Error: Can't recover from previous error(s)");
}
예제 #2
0
파일: ufb_image.c 프로젝트: pinkeen/ufblit
UFB_Image *UFB_CreateImageFromFilePNG(const char *filename)
{
    xfatal("Reading PNG files is not implemented yet ('%s')", filename);
    return NULL;
}