Files
wut/include
Nathan Strong d830b51667 A little fleshing out of the dynamic library header
== DETAILS

This commit provides two tweaks:

1. Add the "library not found" error, value of -6, to the
   `OSDynLoad_Error` enums
2. Define an `OSDynLoad_ExportType` enum and use it in place of the
   `isData` boolean parameter to avoid raw `true`/`false` values in the
   code and make usages easier to read:

   ```c
   // before - unclear what "false" means in this context
   last_error = OSDynLoad_FindExport((OSDynLoad_Module)lib, false, proc, &ptr_sym);
   ```
   vs:
   ```c
   // after - aha, we're looking up a function symbol
   last_error = OSDynLoad_FindExport((OSDynLoad_Module)lib, OS_DYNLOAD_EXPORT_FUNC, proc, &ptr_sym);
   ```
2023-02-17 18:15:35 +01:00
..
2021-03-07 13:09:12 +01:00
2022-10-30 23:25:32 +01:00
2020-05-07 15:29:59 +01:00
2022-01-20 00:38:36 +01:00
2020-05-21 14:12:12 +01:00
2022-06-05 15:21:29 +01:00
2021-03-07 13:09:12 +01:00
2023-01-17 21:15:59 +01:00
2022-12-06 12:52:04 +01:00
2022-07-22 09:25:58 +01:00
2022-06-05 16:09:40 +02:00
2022-04-15 17:00:03 +01:00
2022-06-30 21:03:09 +02:00
2022-12-06 12:52:04 +01:00
2021-03-07 16:40:55 +01:00
2021-03-07 13:09:12 +01:00