-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBSAHeader.h
More file actions
29 lines (21 loc) · 830 Bytes
/
BSAHeader.h
File metadata and controls
29 lines (21 loc) · 830 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#ifndef __BSAHeader_H__
#define __BSAHeader_H__
#include <stdio.h>
#include <stdint.h>
class BSAHeader
{
public:
BSAHeader ( );
void Clean ( );
void LoadBSAHeader ( uint8_t* cBuffer );
uint16_t W_SIZE ( );
uint16_t W_TYPE ( );
uint8_t* T_TEXT ( );
uint32_t GetLength ( );
private:
uint8_t* m_cBuffer;
uint16_t* m_W_SIZE;
uint16_t* m_W_TYPE;
uint8_t* m_T_TEXT;
};
#endif // __BSAHeader_H__