Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
openjazz
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PocketInsanity
openjazz
Commits
67d11412
Commit
67d11412
authored
Apr 11, 2010
by
anotherguest
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add tri method overrides in Symbian cpp, missing in small symbian libc library.
parent
105d65c6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
0 deletions
+22
-0
symbian.cpp
src/platforms/symbian.cpp
+22
-0
No files found.
src/platforms/symbian.cpp
View file @
67d11412
...
...
@@ -7,6 +7,7 @@
#include <e32base.h>
#include <sdlapp.h>
#include <BAUTILS.H>
#include <e32math.h>
char
KOpenJazzPath
[
256
];
FILE
*
mystdout
=
NULL
;
...
...
@@ -113,6 +114,27 @@ TUid COpenJazzApp::AppDllUid() const {
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
;
}
/////////////////////////////////////////////////////////////////////////////////////////////////
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment