ffgl-core 0.2.6

FFGL plugin framework
Documentation
1
2
3
4
5
6
7
8
9
10
#include <windows.h>
#include <stdio.h>

void FFDebugMessage(const char *_msg)
{
  char msg[2048];
  _snprintf(msg,sizeof(msg),"%s\n",_msg);
  
  OutputDebugString(msg);
}