diff options
| author | Sean Miller <seanmiller999@gmail.com> | 2026-04-07 16:26:14 +0100 |
|---|---|---|
| committer | Sean Miller <seanmiller999@gmail.com> | 2026-04-07 16:26:45 +0100 |
| commit | 917f8508248fa793ae3ac8ffd5338e5d6275a190 (patch) | |
| tree | 6801e9b1ea1945be58d5873ee6cc7f60346de659 /include | |
| parent | c5357115f1fc9551ff3279e11f776cb559c950d2 (diff) | |
100% d_lib.cpp + mpls symbol names
Diffstat (limited to 'include')
| -rw-r--r-- | include/toBeSorted/d_lib.h | 7 | ||||
| -rw-r--r-- | include/toBeSorted/mpls.h | 10 |
2 files changed, 13 insertions, 4 deletions
diff --git a/include/toBeSorted/d_lib.h b/include/toBeSorted/d_lib.h index 0a4787ca..b9f7c26d 100644 --- a/include/toBeSorted/d_lib.h +++ b/include/toBeSorted/d_lib.h @@ -1,6 +1,11 @@ #ifndef D_LIB_H #define D_LIB_H -void fn_80006C20(); +namespace dLib { + +void unknownStub(); +bool strequals(const char *str1, const char *str2); + +}; // namespace dLib #endif // D_LIB_H diff --git a/include/toBeSorted/mpls.h b/include/toBeSorted/mpls.h index c7820a31..71283297 100644 --- a/include/toBeSorted/mpls.h +++ b/include/toBeSorted/mpls.h @@ -1,8 +1,12 @@ #ifndef MPLS_H #define MPLS_H -void fn_80006CE0(int, char **); -void fn_80006D60(); -void fn_80006DC0(); +namespace Mpls { + +void initialize(int argc, char **argv); +void tryLaunchMovie(); +void forceLaunchMovie(); + +}; // namespace Mpls #endif // MPLS_H |
