File tree 1 file changed +8
-13
lines changed
1 file changed +8
-13
lines changed Original file line number Diff line number Diff line change 116
116
### Opaque Structs
117
117
118
118
If you have something like ``` typedef struct name name ``` . the concrete
119
- structure is opaque. See issue
120
- [ #63 ] ( https://github.com/PascalGameDevelopment/SDL2-for-Pascal/issues/63 ) )
121
- for details.
119
+ structure is opaque, and the programmer is expected to only ever
120
+ interact with pointers to the struct.
122
121
123
122
C:
124
123
@@ -128,21 +127,17 @@ typedef struct SDL_Window SDL_Window;
128
127
129
128
Pascal:
130
129
131
- Prefered:
132
130
``` pascal
133
131
type
134
132
PPSDL_Window = ^PSDL_Window;
135
- PSDL_Window = ^TSDL_Window;
136
- TSDL_Window = type Pointer;
133
+ PSDL_Window = type Pointer;
137
134
```
138
135
139
- Alternativly:
140
- ``` pascal
141
- type
142
- PPSDL_Window = ^PSDL_Window;
143
- PSDL_Window = ^TSDL_Window;
144
- TSDL_Window = record end;
145
- ```
136
+ As shown above, for opaque structs, we avoid defining the base ` TType `
137
+ and define only the pointer ` PType ` .
138
+ For the rationale behind this decision, read the discussion in
139
+ [ issue #63 ] ( https://github.com/PascalGameDevelopment/SDL2-for-Pascal/issues/63 ) .
140
+
146
141
147
142
## Unions
148
143
You can’t perform that action at this time.
0 commit comments