mirror of
https://github.com/JuniorDark/RustyHearts-Launcher.git
synced 2026-05-07 05:21:44 -04:00
Extended the localization system to easily include additional languages in the future
This commit is contained in:
parent
d5ec712d0f
commit
ae34584021
50 changed files with 45079 additions and 24129 deletions
|
|
@ -1,18 +1,18 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
public static class NativeMethod
|
||||
namespace RHLauncher.DynamicLib
|
||||
{
|
||||
[DllImport("kernel32.dll", EntryPoint = "LoadLibrary")]
|
||||
public static extern int LoadLibrary(
|
||||
[MarshalAs(UnmanagedType.LPStr)] string lpLibFileName);
|
||||
public static class NativeMethod
|
||||
{
|
||||
[DllImport("kernel32.dll", EntryPoint = "LoadLibrary")]
|
||||
public static extern int LoadLibrary(
|
||||
[MarshalAs(UnmanagedType.LPStr)] string lpLibFileName);
|
||||
|
||||
[DllImport("kernel32.dll", EntryPoint = "GetProcAddress")]
|
||||
public static extern IntPtr GetProcAddress(int hModule,
|
||||
[MarshalAs(UnmanagedType.LPStr)] string lpProcName);
|
||||
[DllImport("kernel32.dll", EntryPoint = "GetProcAddress")]
|
||||
public static extern IntPtr GetProcAddress(int hModule,
|
||||
[MarshalAs(UnmanagedType.LPStr)] string lpProcName);
|
||||
|
||||
[DllImport("kernel32.dll", EntryPoint = "FreeLibrary")]
|
||||
public static extern bool FreeLibrary(int hModule);
|
||||
[DllImport("kernel32.dll", EntryPoint = "FreeLibrary")]
|
||||
public static extern bool FreeLibrary(int hModule);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue