I think its an awesome library and am going to produce a production with it.
I've put the libstc++.a and the libtiny_fc.a into the lib folder, and the tiny_fc.bi into the include folder. And this is an experiment with your neat library in conjunction with tinyptc / tinyptc_ext
Option Explicit
Option Static
#Include Once "tinyPTC.bi"
#include Once "tiny_fc.bi"
#Include Once "Windows.bi"
Const XRES=640
Const YRES=480
Const ARES=XRES*YRES
Dim Shared ScreenBuffer( ARES )
dim shared dummy as integer
If( ptc_open( "testing", XRES, YRES ) = 0 ) Then
End -1
End if
initFC(0, @dummy, 0, "sample.fc")
startFC()
Dim Key As String
While Key<>Chr(27)
PTC_Update @ScreenBuffer(0)
key=Inkey
Wend
stopFC()
PTC_Close()
But I don't get any sound at all, and also the program crashes when it ends on a key press. It might be something I am doing wrong. Btw, im using FB 17
Cheers,
Clyde.