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
..
arpa Network socket changes (#136) 2021-03-07 13:09:12 +01:00
avm Add several definitions for Multi/Double DRC mode 2022-08-28 00:14:56 +02:00
camera Add Camera lib (camera.rpl) (#280) 2022-10-30 23:25:32 +01:00
coreinit A little fleshing out of the dynamic library header 2023-02-17 18:15:35 +01:00
dmae Fix formatting. 2020-05-07 15:29:59 +01:00
erreula Add nn::erreula library. 2022-01-20 00:38:36 +01:00
gx2 Add several definitions for Multi/Double DRC mode 2022-08-28 00:14:56 +02:00
gx2r gx2/gx2r: improve compatibility of enum bitmask types with C++ 2021-03-04 19:48:46 +01:00
h264 h264: Move the enums out of enum.h 2020-05-21 14:12:12 +01:00
mic Add MIC lib 2022-06-05 15:21:29 +01:00
netinet Network socket changes (#136) 2021-03-07 13:09:12 +01:00
nn Add more languages to LanguageType 2023-01-17 21:15:59 +01:00
nsysccr nsysccr: add Irda types 2022-12-06 12:52:04 +01:00
nsyshid nsyshid: Fix HIDSetIdle parameters, add HIDGetIdle 2022-07-23 13:20:14 +02:00
nsyskbd Add initial nsyskbd header (#237) 2022-07-22 09:25:58 +01:00
nsysnet nsysnet: Add missing functions 2022-06-05 16:09:40 +02:00
nsysuhs nsysuhs: Add missing functions and types 2022-04-15 16:58:19 +01:00
padscore change rumbleStatus to BOOL 2022-04-15 17:00:03 +01:00
proc_ui Proc UI: Add missing functions 2022-06-30 21:03:09 +02:00
sndcore2 Add various functions used in root.rpx 2022-04-15 16:43:02 +01:00
swkbd include/swkbd: First shot at documenting swkbd 2019-02-21 08:55:08 +00:00
sys wutsocket: implement missing functions 2021-03-07 16:40:55 +01:00
sysapp sysapp: Name unknown _SYSLaunchTitleWithStdArgsInNoSplash parameter 2022-10-29 19:29:49 +02:00
vpad vpadbase: add IRC related functions 2022-12-06 12:52:04 +01:00
netdb.h wutsocket: implement missing functions 2021-03-07 16:40:55 +01:00
poll.h Network socket changes (#136) 2021-03-07 13:09:12 +01:00
wut_rplwrap.h coreinit: Use rplwrap for exit (__rplwrap_exit) 2019-04-22 12:43:37 +10:00
wut_structsize.h Add alignas specifiers for OSContext, OSSpinLock, OSThread. 2018-09-14 09:02:46 +01:00
wut_types.h gx2/gx2r: improve compatibility of enum bitmask types with C++ 2021-03-04 19:48:46 +01:00
wut.h sysapp: Add PFID functions, rename APP_ID_UPDATER -> APP_ID_HOME_MENU, other system app funcs 2020-03-14 11:04:28 +11:00