you are viewing a single comment's thread
view the rest of the comments
[–] 6 points 1 day ago (1 child)

In Windows land, it's HANDLEs...which is typedef void* HANDLE IIRC

  • source
  • hideshow 1 child comment
  • [–] 2 points 10 hours ago

    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.

  • source
  • parent