Long Linked List & Long Link List Node Class
Hybrid COM Object:
part of the object is an allocated UDT
- can't build list nodes out of pure COM objects - too heavy
- Hybrid; only a pointer the allocated resource is used in list
these classes use an error handler: ErrT (in download source)
local e as ErrT
o.Initialize(e)
this is necessary to trap a memory allocation failure
hybrid object needs internal memory allocated before use:
o.Alloc()
internal memory must be freed before object goes out of scope:
o.Free()
Source: LongListC.zip: Long Linked List Class. > http://deadtheorywalking.com/pb.aspx
public domain - use at own risk
need to download all files to compile
Hybrid COM Object:
part of the object is an allocated UDT
- can't build list nodes out of pure COM objects - too heavy
- Hybrid; only a pointer the allocated resource is used in list
these classes use an error handler: ErrT (in download source)
local e as ErrT
o.Initialize(e)
this is necessary to trap a memory allocation failure
hybrid object needs internal memory allocated before use:
o.Alloc()
internal memory must be freed before object goes out of scope:
o.Free()
Source: LongListC.zip: Long Linked List Class. > http://deadtheorywalking.com/pb.aspx
public domain - use at own risk
need to download all files to compile
Comment