These codes from TLanguage
enum in e32const.h
from S60 3rd FP1 SDK.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Include Files | |
#include "Interval2Des.h" | |
#include <e32base.h> | |
#include <e32std.h> | |
#include <e32cons.h> // Console | |
// Constants | |
_LIT(KTextConsoleTitle, "Console"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Language | Constant | Numeric code | |
---|---|---|---|
UK English | ELangEnglish | 1 | |
French | ELangFrench | 2 | |
German | ELangGerman | 3 | |
Spanish | ELangSpanish | 4 | |
Italian | ELangItalian | 5 | |
Swedish | ELangSwedish | 6 | |
Danish | ELangDanish | 7 | |
Norwegian | ELangNorwegian | 8 | |
Finnish | ELangFinnish | 9 |
Thanks to NEK-RA for English translation. Original text in Russian language.
- Small site, contains links to SDK and other usefull resources - https://mrrosset.github.io/Symbian-Archive/index.html
- List of active Symbian developers - mrRosset/Symbian-Archive#10
- Chat - https://discord.gg/5Bm5SJ9 or https://discord.com/channels/431429574975422464/743412813279526914
- Symbian Basics presentation - http://www.cs.rug.nl/~aiellom/images/SymbianOS.pdf
- Files:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ifwinlin | Different code for Windows and Linux] | |
{$IfDef Windows} | |
| | |
{$EndIf} | |
{$IfDef Linux} | |
{$EndIf} | |
[ifwin | Code for Windows only] | |
{$IfDef Windows} | |
| |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
[ | |
"PayPal", | |
"[email protected]", | |
{"icon": "iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABt0lEQVQ4jaWTQWtTQRSFv5kkJg3V2tcKRhvauNAXFXQhBZWKWJFWFy5EQUQouOiqC/+Hf0DQQjb9B1YhdGNRF0LrQtu60LyXYkmqEUptNOmbuS6C0TQvBemFs5hhzjfnLK4SEfYyek9uILrzIj+/NPbw0aunYJtwpVSQ6ouv3rpyLDd5b+TxroCXi18ufvArR6C12nuPgfzC+vlkd3zz/s3hmY4Vlj6Vs02zqUNQ+0c/ef1ubWTXBCve9ywAYlE/Sq1BRJhdPz5e+LoxmDnU47cl2KpWk1751xAANmiYlforoJg5kc4VzVRoBc8vDVVrJBvxt1t+xhjU1cuWPkcrUKEVVgqVbPOQiFndm0IiEeh34OwZbPqoRkU411WdA6cdsFzYOIlYCAz6zjhm8HAjoRWwFpTmulN7NuZmnocm+OhVToGAVpaD3RAYosj2hf31N/0J/e3aQOzFxOl0LqK1hAI+r226ALprHyQTAFw6UJ+fu+2O0mFaAKPD6byb6XlbCkjNRmM3MAGuk1juZAZARNo0s+jfZbooTPvyZGH1QdibP1Jh22hF4kboBYgqykqpjisbCvif+Q1kj8dmwXlbawAAAABJRU5ErkJggg=="} | |
], | |
[ | |
"ETH Ethereum / Tether USDT", | |
"0xB14C877b2eAF7E3b4b49df25039122C0545edA74", | |
{"icon": "iVBORw0KGgoAAAANSUhEUgAAACAAAAAQCAYAAAB3AH1ZAAABhGlDQ1BJQ0MgcHJvZmlsZQAAKJF9kT1Iw0AcxV9bpSLVInYQEclQnSyIijhqFYpQIdQKrTqYXPoFTRqSFBdHwbXg4Mdi1cHFWVcHV0EQ/ABxdnBSdJES/5cUWsR4cNyPd/ced+8Af |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
program FileDate; | |
{$Mode objfpc}{$H+} | |
uses | |
{$IfDef Windows} | |
Windows, | |
{$EndIf} | |
SysUtils, Classes, DateUtils, FileUtil; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
if [ $(arch) = 'x86_64' ]; then | |
arch_package_prefix='amd64' | |
else | |
arch_package_prefix='i386' | |
fi | |
if [ $(dpkg-query -W -f='${Status}' fpc-src 2>/dev/null | grep -c "ok installed") -eq 0 ]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<project name="My project" xmlns:if="ant:if" xmlns:unless="ant:unless"> | |
<!-- Properties: --> | |
<!-- <property file="build.properties"/> --> | |
<property name="build_dir" location="build"/> | |
<!-- Targets: --> | |
<target name="clean"> | |
<delete dir="${build_dir}"/> |