jak-project/goal_src/jak3/kernel/dgo-h.gc

31 lines
427 B
Common Lisp
Raw Normal View History

2023-10-10 09:41:05 -04:00
;;-*-Lisp-*-
(in-package goal)
;; name: dgo-h.gc
;; name in dgo: dgo-h
;; dgos: KERNEL
;; DECOMP BEGINS
(deftype dgo-header (structure)
((length uint32)
(rootname uint8 60)
)
)
(deftype dgo-entry (structure)
((offset uint32)
(length uint32)
)
)
(deftype dgo-file (basic)
((num-go-files uint32)
(total-length uint32)
(rsvd uint32)
(data uint8 :dynamic)
)
)