Changeset 1254

Show
Ignore:
Timestamp:
05/05/07 00:41:46 (2 years ago)
Author:
common
Message:

libemu

  • add emu_shellcode, api wrapper to check if a buffer contains a shellcode, untested code
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • libemu/trunk/include/emu/emu.h

    r1168 r1254  
    55#include <stdio.h> 
    66#include <stdint.h> 
     7 
     8#define        MIN(a,b) (((a)<(b))?(a):(b)) 
     9#define        MAX(a,b) (((a)>(b))?(a):(b)) 
     10 
    711 
    812struct emu; 
  • libemu/trunk/src/Makefile.am

    r1245 r1254  
    2323libemu_la_SOURCES += emu_hashtable.c 
    2424libemu_la_SOURCES += emu_queue.c 
     25libemu_la_SOURCES += emu_shellcode.c 
    2526libemu_la_SOURCES += emu_source.c 
    2627libemu_la_SOURCES += emu_track.c