EvEmu
0.8.4
11 September 2021
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
EVE_Wallet.h
Go to the documentation of this file.
1
2
/*
3
* Account and Journal typedefs
4
*
5
*/
6
7
8
9
#ifndef EVE_ACCOUNT_H
10
#define EVE_ACCOUNT_H
11
12
//Plex2AurExchangeRatio = 3500
13
//AurumToken2AurExchangeRatio = 1000
14
15
namespace
Account
{
16
17
namespace
CreditType {
18
enum
{
19
ISK
= 0,
20
AURUM
= 1,
21
MPLEX
= 2
22
};
23
}
24
25
namespace
KeyType {
26
enum
{
27
Cash
= 1000,
// default player wallet, corp walletDivision1
28
Cash2
= 1001,
//walletDivision2...
29
Cash3
= 1002,
30
Cash4
= 1003,
31
Cash5
= 1004,
32
Cash6
= 1005,
33
Cash7
= 1006,
34
Property
= 1100,
// not sure
35
AUR
= 1200,
// default player wallet, corp walletDivision1
36
AUR2
= 1201,
//walletDivision2...
37
AUR3
= 1202,
38
AUR4
= 1203,
39
AUR5
= 1204,
40
AUR6
= 1205,
41
AUR7
= 1206,
42
Escrow
= 1500,
// for MarketEscrow only
43
// not sure what these are used for yet.
44
Receivables
= 1800,
45
Payables
= 2000,
46
Gold
= 2010,
47
Equity
= 2900,
48
Sales
= 3000,
49
Purchases
= 4000,
50
51
// dust shit isnt used, and may not be...but here for completeness
52
DUST_ISK
= 10000,
53
DUST_MODIFYISK
= 10001,
54
DUST_PRIMARYMARKETPURCHASE
= 10002,
55
DUST_NEW_CHARACTER_MONEY
= 10004,
56
DUST_CORP_WITHDRAWAL
= 10005,
57
DUST_CORP_DEPOSIT
= 10006,
58
DUST_BATTLEREWARD_WIN
= 10009,
59
DUST_BATTLEREWARD_LOSS
= 10010,
60
DUST_ISK_RESET_FOR_CHARACTER_WIPE
= 10011,
61
DUST_AUR
= 11000,
62
DUST_MODIFYRMC
= 11001,
63
DUST_AUR_FROM_ENTITLEMENT
= 11003,
64
DUST_AUR_FROM_RESET_REIMBURSEMENT
= 11004,
65
DUST_AUR_RESET_FOR_CHARACTER_WIPE
= 11005
66
};
67
}
68
}
69
70
// -allan 20Dec14 UD 9Dec17
71
// '*' denotes populated referenceID field (and with what) - used for popup descriptions
72
/* these are put in description field for "popup" descriptions.
73
* NOTE: npc bounties using BountyPrize MUST have npc typeID as refereceID.
74
* those using BountyPrizes MUST have dict of [typeID/qty] in description
75
* recDescription = 'DESC' <-- defines a custom description
76
* recDescNpcBountyList = 'NBL' <-- describes a full list
77
* recDescNpcBountyListTruncated = 'NBLT' <-- describes a truncated list
78
* recStoreItems = 'STOREITEMS' <-- specific itemTypes purchased --for typeID, qty in description.get(const.recStoreItems, []):
79
*/
80
81
// max journal entries in client (hardcoded) 214748364
82
namespace
Journal
{
83
namespace
EntryType {
84
enum
{
85
SkipLog
= -1,
86
Undefined
= 0,
87
PlayerTrading
= 1,
// * stationID
88
MarketTransaction
= 2,
// * transactionID
89
GMCashTransfer
= 3,
90
ATMWithdraw
= 4,
91
ATMDeposit
= 5,
92
BackwardCompatible
= 6,
93
MissionReward
= 7,
94
CloneActivation
= 8,
// * EVE System 1
95
Inheritance
= 9,
96
PlayerDonation
= 10,
97
CorporationPayment
= 11,
98
/*
99
if entryTypeID == const.refCorporationPayment:
100
if arg1 != -1:
101
return localization.GetByLabel('UI/Generic/FormatReference/corpPayment1', arg=GetName(arg1), name1=GetName(o1), name2=GetName(o2))
102
return localization.GetByLabel('UI/Generic/FormatReference/corpPayment2', name1=GetName(o1), name2=GetName(o2))
103
*/
104
DockingFee
= 12,
105
OfficeRentalFee
= 13,
// * EVE System 1
106
FactorySlotRentalFee
= 14,
107
RepairBill
= 15,
108
Bounty
= 16,
// * characterID with bounty
109
BountyPrize
= 17,
// * NPC typeID
110
Insurance
= 19,
// * Destroyed Ship Type ID
111
/* arg1 is refereceID
112
if entryTypeID == const.refInsurance:
113
if arg1 > 0:
114
return localization.GetByLabel('UI/Generic/FormatReference/insurancePaidByCoveringLoss', itemname=cfg.invtypes.Get(arg1).name, name1=GetName(o1), name2=GetName(o2))
115
elif arg1 and arg1 < 0:
116
return localization.GetByLabel('UI/Generic/FormatReference/insurancePaidForShip', locaton=GetLocation(-arg1), name1=GetName(o1), name2=GetName(o2), refID=-arg1)
117
else:
118
return localization.GetByLabel('UI/Generic/FormatReference/insurancePaidTo', name1=GetName(o1), name2=GetName(o2))
119
*/
120
MissionExpiration
= 20,
121
MissionCompletion
= 21,
122
Shares
= 22,
123
CourierMissionEscrow
= 23,
124
MissionCost
= 24,
125
AgentMiscellaneous
= 25,
126
PaymentToLPStore
= 26,
127
AgentLocationServices
= 27,
128
AgentDonation
= 28,
129
AgentSecurityServices
= 29,
130
AgentMissionCollateralPaid
= 30,
131
AgentMissionCollateralRefunded
= 31,
132
AgentMissionReward
= 33,
// * agent ID
133
AgentMissionTimeBonusReward
= 34,
// * agent ID
134
CSPA
= 35,
// * character ID you're trying to contact.
135
CSPAOfflineRefund
= 36,
136
/*
137
if entryTypeID == const.refCSPA:
138
if arg1:
139
return localization.GetByLabel('UI/Generic/FormatReference/cspaServiceChargePaidBy', name1=GetName(o1), name2=GetName(arg1))
140
else:
141
return localization.GetByLabel('UI/Generic/FormatReference/cspaServiceCharge', name=GetName(o1))
142
elif entryTypeID == const.refCSPAOfflineRefund:
143
if arg1:
144
return localization.GetByLabel('UI/Generic/FormatReference/cspaServiceChargeRefundBy', name1=GetName(o2), name2=GetName(arg1))
145
else:
146
return localization.GetByLabel('UI/Generic/FormatReference/cspaServiceChargeRefundByConcord', name1=GetName(o2))
147
*/
148
CorporationAccountWithdrawal
= 37,
// * character ID that performed withdrawal
149
CorporationDividendPayment
= 38,
150
CorporationRegistrationFee
= 39,
// * Corporation ID
151
CorporationLogoChangeCost
= 40,
// * Corporation ID
152
ReleaseOfImpoundedProperty
= 41,
153
MarketEscrow
= 42,
154
/*
155
if entryTypeID == const.refMarketEscrow:
156
owner = cfg.eveowners.GetIfExists(o1 if arg1 == -1 else o2)
157
if owner is not None:
158
if amount < 0.0:
159
return localization.GetByLabel('UI/Generic/FormatReference/marketEscrowAuthorizedBy', name=owner.ownerName)
160
if amount < 0.0:
161
return localization.GetByLabel('UI/Generic/FormatReference/marketEscrow')
162
else:
163
return localization.GetByLabel('UI/Generic/FormatReference/marketEscrowRelease')
164
*/
165
MarketFinePaid
= 44,
// not sure what a 'market fine' is...
166
Brokerfee
= 46,
// * station ownerID
167
/*
168
if entryTypeID == const.refBrokerfee:
169
owner = cfg.eveowners.GetIfExists(o1)
170
if owner is not None:
171
return localization.GetByLabel('UI/Generic/FormatReference/marketBrokersFeeBy', name1=owner.ownerName)
172
return localization.GetByLabel('UI/Generic/FormatReference/marketBrokersFee')
173
*/
174
AllianceRegistrationFee
= 48,
175
WarFee
= 49,
176
AllianceMaintainanceFee
= 50,
// * Alliance ID (to concord)
177
ContrabandFine
= 51,
178
CloneTransfer
= 52,
179
AccelerationGateFee
= 53,
180
TransactionTax
= 54,
// *
181
JumpCloneInstallationFee
= 55,
// * station ownerID
182
Manufacturing
= 56,
// *
183
ResearchingTechnology
= 57,
184
ResearchingTimeProductivity
= 58,
185
ResearchingMaterialProductivity
= 59,
186
Copying
= 60,
187
Duplicating
= 61,
188
ReverseEngineering
= 62,
189
ContractAuctionBid
= 63,
// *Contract ID
190
ContractAuctionBidRefund
= 64,
// *Contract ID
191
ContractCollateral
= 65,
192
ContractRewardRefund
= 66,
193
ContractAuctionSold
= 67,
194
ContractReward
= 68,
195
ContractCollateralRefund
= 69,
196
ContractCollateralPayout
= 70,
197
ContractPrice
= 71,
// *Contract ID
198
ContractBrokersFee
= 72,
// *Contract ID
199
ContractSalesTax
= 73,
// *Contract ID
200
ContractDeposit
= 74,
// *Contract ID
201
ContractDepositSalesTax
= 75,
202
SecureEVETimeCodeExchange
= 76,
203
ContractAuctionBidCorp
= 77,
204
ContractCollateralCorp
= 78,
205
ContractPriceCorp
= 79,
// *Contract ID
206
ContractBrokersFeeCorp
= 80,
// *Contract ID
207
ContractDepositCorp
= 81,
// *Contract ID
208
ContractDepositRefund
= 82,
// *Contract ID
209
ContractRewardAdded
= 83,
210
ContractRewardAddedCorp
= 84,
211
BountyPrizes
= 85,
// * systemID (and type:amt,type:amt,etc in description (max ~60chars))
212
CorporationAdvertisementFee
= 86,
213
MedalCreation
= 87,
// * Character ID of the player creating the medal
214
MedalIssuing
= 88,
// * Character ID of the player issuing the medal
215
AttributeRespecification
= 90,
216
SovereignityRegistrarFee
= 91,
217
CorporationTaxNpcBounties
= 92,
218
CorporationTaxAgentRewards
= 93,
219
CorporationTaxAgentBonusRewards
= 94,
220
SovereignityUpkeepAdjustment
= 95,
221
PlanetaryImportTax
= 96,
// * Planet ID
222
PlanetaryExportTax
= 97,
// * Planet ID
223
PlanetaryConstruction
= 98,
224
/*
225
if entryTypeID == const.refPlanetaryImportTax:
226
if arg1 is not None:
227
planetName = cfg.evelocations.Get(arg1).name
228
else:
229
planetName = localization.GetByLabel('UI/Generic/Unknown')
230
return localization.GetByLabel('UI/Generic/FormatReference/planetImportTax', name=GetName(o1), planet=planetName)
231
if entryTypeID == const.refPlanetaryExportTax:
232
if arg1 is not None:
233
planetName = cfg.evelocations.Get(arg1).name
234
else:
235
planetName = localization.GetByLabel('UI/Generic/Unknown')
236
return localization.GetByLabel('UI/Generic/FormatReference/planetExportTax', name=GetName(o1), planet=planetName)
237
if entryTypeID == const.refPlanetaryConstruction:
238
if arg1 is not None:
239
planetName = cfg.evelocations.Get(arg1).name
240
else:
241
planetName = localization.GetByLabel('UI/Generic/Unknown')
242
return localization.GetByLabel('UI/Generic/FormatReference/planetConstruction', name=GetName(o1), planet=planetName)
243
*/
244
RewardManager
= 99,
245
BountySurcharge
= 101,
246
ContractReversal
= 102,
247
CorporationTaxRewards
= 103,
248
StorePurchase
= 106,
249
StoreRefund
= 107,
250
PlexConversion
= 108,
251
AurumGiveAway
= 109,
252
MiniGameHouseCut
= 110,
253
AurumTokenConversion
= 111,
254
Max
= 120,
255
/* not sure on these
256
refMaxEve = 10000
257
ModifyISK = 10001,
258
PrimaryMarketplacePurchase = 10002,
259
BattleReward = 10003,
260
NewCharacterStartingFunds = 10004,
261
CorporationAccountWithdrawal = 10005,
262
CorporationAccountDeposit = 10006,
263
BattleWPWinReward = 10007,
264
BattleWPLossReward = 10008,
265
BattleWinReward = 10009,
266
BattleLossReward = 10010,
267
ModifyAUR = 11001,
268
RespecPayment = 11002
269
*/
270
};
271
}
272
}
273
274
275
#endif // EVE_ACCOUNT_H
Journal::EntryType::ReverseEngineering
Definition:
EVE_Wallet.h:188
Journal::EntryType::ContractAuctionSold
Definition:
EVE_Wallet.h:193
Account::KeyType::DUST_AUR_FROM_ENTITLEMENT
Definition:
EVE_Wallet.h:63
Journal::EntryType::PlayerDonation
Definition:
EVE_Wallet.h:96
Journal::EntryType::ResearchingTimeProductivity
Definition:
EVE_Wallet.h:184
Account::KeyType::Cash6
Definition:
EVE_Wallet.h:32
Journal::EntryType::PlanetaryExportTax
Definition:
EVE_Wallet.h:222
Journal::EntryType::PlayerTrading
Definition:
EVE_Wallet.h:87
Journal::EntryType::AurumTokenConversion
Definition:
EVE_Wallet.h:253
Journal::EntryType::MarketFinePaid
Definition:
EVE_Wallet.h:165
Account::KeyType::DUST_AUR_RESET_FOR_CHARACTER_WIPE
Definition:
EVE_Wallet.h:65
Account::KeyType::DUST_MODIFYISK
Definition:
EVE_Wallet.h:53
Journal::EntryType::CourierMissionEscrow
Definition:
EVE_Wallet.h:123
Journal::EntryType::ResearchingTechnology
Definition:
EVE_Wallet.h:183
Journal::EntryType::PaymentToLPStore
Definition:
EVE_Wallet.h:126
Journal::EntryType::CorporationPayment
Definition:
EVE_Wallet.h:97
Journal::EntryType::ContractBrokersFee
Definition:
EVE_Wallet.h:198
Account::KeyType::Property
Definition:
EVE_Wallet.h:34
Journal::EntryType::ContractCollateralPayout
Definition:
EVE_Wallet.h:196
Journal::EntryType::SecureEVETimeCodeExchange
Definition:
EVE_Wallet.h:202
Journal::EntryType::SkipLog
Definition:
EVE_Wallet.h:85
Journal::EntryType::CorporationAdvertisementFee
Definition:
EVE_Wallet.h:212
Journal::EntryType::ContractReversal
Definition:
EVE_Wallet.h:246
Account::KeyType::Sales
Definition:
EVE_Wallet.h:48
Journal::EntryType::StorePurchase
Definition:
EVE_Wallet.h:248
Account::CreditType::ISK
Definition:
EVE_Wallet.h:19
Journal::EntryType::ContractRewardAdded
Definition:
EVE_Wallet.h:209
Journal::EntryType::Bounty
Definition:
EVE_Wallet.h:108
Journal::EntryType::CorporationTaxNpcBounties
Definition:
EVE_Wallet.h:217
Journal::EntryType::ContractPrice
Definition:
EVE_Wallet.h:197
Journal::EntryType::JumpCloneInstallationFee
Definition:
EVE_Wallet.h:181
Journal
Definition:
EVE_Wallet.h:82
Journal::EntryType::AttributeRespecification
Definition:
EVE_Wallet.h:215
Journal::EntryType::ContrabandFine
Definition:
EVE_Wallet.h:177
Account::KeyType::DUST_ISK
Definition:
EVE_Wallet.h:52
Account::KeyType::AUR6
Definition:
EVE_Wallet.h:40
Journal::EntryType::AgentMissionCollateralPaid
Definition:
EVE_Wallet.h:130
Journal::EntryType::ContractAuctionBid
Definition:
EVE_Wallet.h:189
Journal::EntryType::GMCashTransfer
Definition:
EVE_Wallet.h:89
Account::KeyType::AUR3
Definition:
EVE_Wallet.h:37
Journal::EntryType::MiniGameHouseCut
Definition:
EVE_Wallet.h:252
Journal::EntryType::Duplicating
Definition:
EVE_Wallet.h:187
Journal::EntryType::SovereignityRegistrarFee
Definition:
EVE_Wallet.h:216
Journal::EntryType::AurumGiveAway
Definition:
EVE_Wallet.h:251
Journal::EntryType::Brokerfee
Definition:
EVE_Wallet.h:166
Journal::EntryType::AgentSecurityServices
Definition:
EVE_Wallet.h:129
Journal::EntryType::OfficeRentalFee
Definition:
EVE_Wallet.h:105
Journal::EntryType::ContractRewardRefund
Definition:
EVE_Wallet.h:192
Account::KeyType::DUST_BATTLEREWARD_LOSS
Definition:
EVE_Wallet.h:59
Journal::EntryType::PlanetaryConstruction
Definition:
EVE_Wallet.h:223
Journal::EntryType::CorporationTaxAgentRewards
Definition:
EVE_Wallet.h:218
Account::KeyType::Purchases
Definition:
EVE_Wallet.h:49
Account::KeyType::DUST_CORP_WITHDRAWAL
Definition:
EVE_Wallet.h:56
Account::KeyType::Gold
Definition:
EVE_Wallet.h:46
Journal::EntryType::AgentDonation
Definition:
EVE_Wallet.h:128
Journal::EntryType::StoreRefund
Definition:
EVE_Wallet.h:249
Journal::EntryType::AgentMissionCollateralRefunded
Definition:
EVE_Wallet.h:131
Journal::EntryType::Inheritance
Definition:
EVE_Wallet.h:95
Account::CreditType::AURUM
Definition:
EVE_Wallet.h:20
Journal::EntryType::ContractPriceCorp
Definition:
EVE_Wallet.h:205
Account::KeyType::Receivables
Definition:
EVE_Wallet.h:44
Account::KeyType::AUR2
Definition:
EVE_Wallet.h:36
Journal::EntryType::ReleaseOfImpoundedProperty
Definition:
EVE_Wallet.h:152
Journal::EntryType::WarFee
Definition:
EVE_Wallet.h:175
Journal::EntryType::ContractSalesTax
Definition:
EVE_Wallet.h:199
Journal::EntryType::ContractCollateral
Definition:
EVE_Wallet.h:191
Account::KeyType::Escrow
Definition:
EVE_Wallet.h:42
Account::KeyType::Cash3
Definition:
EVE_Wallet.h:29
Journal::EntryType::MissionExpiration
Definition:
EVE_Wallet.h:120
Journal::EntryType::ContractBrokersFeeCorp
Definition:
EVE_Wallet.h:206
Journal::EntryType::PlexConversion
Definition:
EVE_Wallet.h:250
Journal::EntryType::Shares
Definition:
EVE_Wallet.h:122
Journal::EntryType::Manufacturing
Definition:
EVE_Wallet.h:182
Account::KeyType::DUST_NEW_CHARACTER_MONEY
Definition:
EVE_Wallet.h:55
Journal::EntryType::AgentMiscellaneous
Definition:
EVE_Wallet.h:125
Journal::EntryType::CloneTransfer
Definition:
EVE_Wallet.h:178
Journal::EntryType::AllianceRegistrationFee
Definition:
EVE_Wallet.h:174
Journal::EntryType::ContractDeposit
Definition:
EVE_Wallet.h:200
Journal::EntryType::ContractDepositRefund
Definition:
EVE_Wallet.h:208
Journal::EntryType::BountyPrize
Definition:
EVE_Wallet.h:109
Journal::EntryType::MedalCreation
Definition:
EVE_Wallet.h:213
Journal::EntryType::CloneActivation
Definition:
EVE_Wallet.h:94
Account::KeyType::Cash2
Definition:
EVE_Wallet.h:28
Account::KeyType::AUR7
Definition:
EVE_Wallet.h:41
Journal::EntryType::ContractAuctionBidRefund
Definition:
EVE_Wallet.h:190
Journal::EntryType::ResearchingMaterialProductivity
Definition:
EVE_Wallet.h:185
Journal::EntryType::ContractCollateralCorp
Definition:
EVE_Wallet.h:204
Journal::EntryType::CorporationTaxRewards
Definition:
EVE_Wallet.h:247
Journal::EntryType::MissionCompletion
Definition:
EVE_Wallet.h:121
Journal::EntryType::FactorySlotRentalFee
Definition:
EVE_Wallet.h:106
Journal::EntryType::AgentLocationServices
Definition:
EVE_Wallet.h:127
Account::KeyType::DUST_ISK_RESET_FOR_CHARACTER_WIPE
Definition:
EVE_Wallet.h:60
Journal::EntryType::ContractAuctionBidCorp
Definition:
EVE_Wallet.h:203
Journal::EntryType::MarketEscrow
Definition:
EVE_Wallet.h:153
Account::KeyType::DUST_AUR_FROM_RESET_REIMBURSEMENT
Definition:
EVE_Wallet.h:64
Account::KeyType::DUST_CORP_DEPOSIT
Definition:
EVE_Wallet.h:57
Journal::EntryType::Max
Definition:
EVE_Wallet.h:254
Journal::EntryType::DockingFee
Definition:
EVE_Wallet.h:104
Journal::EntryType::ContractReward
Definition:
EVE_Wallet.h:194
Journal::EntryType::BountySurcharge
Definition:
EVE_Wallet.h:245
Journal::EntryType::Undefined
Definition:
EVE_Wallet.h:86
Account::KeyType::DUST_PRIMARYMARKETPURCHASE
Definition:
EVE_Wallet.h:54
Account::KeyType::AUR5
Definition:
EVE_Wallet.h:39
Journal::EntryType::MissionReward
Definition:
EVE_Wallet.h:93
Account::CreditType::MPLEX
Definition:
EVE_Wallet.h:21
Journal::EntryType::CorporationDividendPayment
Definition:
EVE_Wallet.h:149
Account::KeyType::Cash4
Definition:
EVE_Wallet.h:30
Journal::EntryType::MedalIssuing
Definition:
EVE_Wallet.h:214
Journal::EntryType::CorporationLogoChangeCost
Definition:
EVE_Wallet.h:151
Journal::EntryType::MarketTransaction
Definition:
EVE_Wallet.h:88
Journal::EntryType::BountyPrizes
Definition:
EVE_Wallet.h:211
Journal::EntryType::AgentMissionReward
Definition:
EVE_Wallet.h:132
Account
Definition:
EVE_Wallet.h:15
Journal::EntryType::ContractRewardAddedCorp
Definition:
EVE_Wallet.h:210
Account::KeyType::Cash7
Definition:
EVE_Wallet.h:33
Journal::EntryType::CSPA
Definition:
EVE_Wallet.h:134
Journal::EntryType::AllianceMaintainanceFee
Definition:
EVE_Wallet.h:176
Journal::EntryType::CSPAOfflineRefund
Definition:
EVE_Wallet.h:135
Account::KeyType::DUST_MODIFYRMC
Definition:
EVE_Wallet.h:62
Journal::EntryType::Insurance
Definition:
EVE_Wallet.h:110
Journal::EntryType::Copying
Definition:
EVE_Wallet.h:186
Journal::EntryType::MissionCost
Definition:
EVE_Wallet.h:124
Journal::EntryType::AgentMissionTimeBonusReward
Definition:
EVE_Wallet.h:133
Journal::EntryType::BackwardCompatible
Definition:
EVE_Wallet.h:92
Journal::EntryType::ContractDepositSalesTax
Definition:
EVE_Wallet.h:201
Account::KeyType::Cash5
Definition:
EVE_Wallet.h:31
Journal::EntryType::PlanetaryImportTax
Definition:
EVE_Wallet.h:221
Journal::EntryType::RepairBill
Definition:
EVE_Wallet.h:107
Account::KeyType::Equity
Definition:
EVE_Wallet.h:47
Account::KeyType::DUST_AUR
Definition:
EVE_Wallet.h:61
Journal::EntryType::ContractCollateralRefund
Definition:
EVE_Wallet.h:195
Journal::EntryType::CorporationAccountWithdrawal
Definition:
EVE_Wallet.h:148
Journal::EntryType::CorporationTaxAgentBonusRewards
Definition:
EVE_Wallet.h:219
Journal::EntryType::RewardManager
Definition:
EVE_Wallet.h:244
Account::KeyType::Payables
Definition:
EVE_Wallet.h:45
Account::KeyType::AUR4
Definition:
EVE_Wallet.h:38
Journal::EntryType::SovereignityUpkeepAdjustment
Definition:
EVE_Wallet.h:220
Journal::EntryType::TransactionTax
Definition:
EVE_Wallet.h:180
Journal::EntryType::AccelerationGateFee
Definition:
EVE_Wallet.h:179
Account::KeyType::Cash
Definition:
EVE_Wallet.h:27
Journal::EntryType::ATMDeposit
Definition:
EVE_Wallet.h:91
Journal::EntryType::ContractDepositCorp
Definition:
EVE_Wallet.h:207
Account::KeyType::DUST_BATTLEREWARD_WIN
Definition:
EVE_Wallet.h:58
Account::KeyType::AUR
Definition:
EVE_Wallet.h:35
Journal::EntryType::ATMWithdraw
Definition:
EVE_Wallet.h:90
Journal::EntryType::CorporationRegistrationFee
Definition:
EVE_Wallet.h:150
backups
local
src
eve
EvEmu_Crucible
src
eve-common
EVE_Wallet.h
Generated on Sat Oct 16 2021 01:20:32 for EvEmu by
1.8.8