Subversion Repositories factorylink.pvb_util

Rev

Blame | Last modification | View Log | Download




#include <stdlib.h>
#include <stdio.h>
#include <windows.h>



long WINAPI pvb_pointer( char *p, short offset)
{

if (offset < 0)
  return (long)p;

  p += offset;

  *p += 9;
  return (long)p;
}