blob: 3ea1a29f00c8f276e2f243fa8d29a08e026120ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#include <stdint.h>
typedef struct
{
const char * name_ptr;
uint16_t f4;
uint8_t f6;
uint8_t f7;
uint16_t f8;
uint16_t f10;
float f12;
float f16;
float f20;
float f24;
float f28;
uint32_t f32;
} stock_info;
extern stock_info stocks[]; /* 0x496980 */
extern stock_info game_stocks[]; /* 0x47f072 */
|