view asxparser.h @ 7461:855ca896de24

pshufw is a mmx2 instruction, so don't use dct64_MMX_3dnowex on k6-3 which has no mmxext (but has 3dnowex) - bug found by Diego, help by Michael
author arpi
date Sat, 21 Sep 2002 20:23:49 +0000
parents 35b412015c39
children 487cfc28525d
line wrap: on
line source


#include "playtree.h"

typedef struct _ASX_Parser_t ASX_Parser_t;

typedef struct {
  char* buffer;
  int line;
} ASX_LineSave_t;

struct _ASX_Parser_t {
  int line; // Curent line
  ASX_LineSave_t *ret_stack;
  int ret_stack_size;
  char* last_body;
  int deep;
};