Generally speaking, a handle is an opaque reference to an os object; the typedef here makes that clear. Linux uses the same general concept as well, though file objects are typically referenced through file descriptors rather than windows style handles.
In Windows land, it’s HANDLEs…which is
typedef void* HANDLEIIRCGenerally speaking, a handle is an opaque reference to an os object; the
typedefhere makes that clear. Linux uses the same general concept as well, though file objects are typically referenced through file descriptors rather than windows style handles.