Ed_
4deee942a8
Renamed HashTable to HMapZPL, with procs having the zpl_ namespace prefix. (I want to eventually get away from using it) Started to use the grime pattern for library aliasing better.
22 lines
433 B
Odin
22 lines
433 B
Odin
package sectr
|
|
|
|
// TODO(Ed): Do this if we got over 25 bindings we're dealing with in persistent.
|
|
// The purpose of this is to manage anything we need to help mitigate the difficulties with hot-reloading.
|
|
|
|
// ProcAddressEntry :: struct {
|
|
// addresses : [2] rawptr
|
|
// }
|
|
|
|
// ProcAddressTracker :: struct {
|
|
// table : HMapZPL( ProcAddressEntry ),
|
|
// current :
|
|
// }
|
|
|
|
// reload_report_callback :: proc( binding : ^Type ) {
|
|
|
|
// }
|
|
|
|
|
|
|
|
|