Commit 67d11412 authored by anotherguest's avatar anotherguest

Add tri method overrides in Symbian cpp, missing in small symbian libc library.

parent 105d65c6
...@@ -7,6 +7,7 @@ ...@@ -7,6 +7,7 @@
#include <e32base.h> #include <e32base.h>
#include <sdlapp.h> #include <sdlapp.h>
#include <BAUTILS.H> #include <BAUTILS.H>
#include <e32math.h>
char KOpenJazzPath[256]; char KOpenJazzPath[256];
FILE* mystdout = NULL; FILE* mystdout = NULL;
...@@ -113,6 +114,27 @@ TUid COpenJazzApp::AppDllUid() const { ...@@ -113,6 +114,27 @@ TUid COpenJazzApp::AppDllUid() const {
return TUid::Uid(0xA000A005); return TUid::Uid(0xA000A005);
} }
float cosf(float value)
{
TReal ret;
Math::Cos(ret, value);
return ret;
}
float sinf(float value)
{
TReal ret;
Math::Sin(ret, value);
return ret;
}
float tanf(float value)
{
TReal ret;
Math::Tan(ret, value);
return ret;
}
///////////////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////////////
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment