Skip to content

Commit 89ac010

Browse files
committed
Update "opaque structs" section in CHEATSHEET.md
This change reflects the recent change in favour of using "type Pointer" instead of empty record types when dealing with opaque structs.
1 parent eb961b9 commit 89ac010

File tree

1 file changed

+8
-13
lines changed

1 file changed

+8
-13
lines changed

CHEATSHEET.md

+8-13
Original file line numberDiff line numberDiff line change
@@ -116,9 +116,8 @@ type
116116
### Opaque Structs
117117

118118
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.
122121

123122
C:
124123

@@ -128,21 +127,17 @@ typedef struct SDL_Window SDL_Window;
128127

129128
Pascal:
130129

131-
Prefered:
132130
```pascal
133131
type
134132
PPSDL_Window = ^PSDL_Window;
135-
PSDL_Window = ^TSDL_Window;
136-
TSDL_Window = type Pointer;
133+
PSDL_Window = type Pointer;
137134
```
138135

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+
146141

147142
## Unions
148143

0 commit comments

Comments
 (0)