Skip to content

Commit

Permalink
refactor: argument for x86 function
Browse files Browse the repository at this point in the history
  • Loading branch information
muneebkq committed Jan 8, 2025
1 parent 73fdce9 commit 7e8bbea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Cryptlex.LexActivator/LexActivatorNative.cs
Original file line number Diff line number Diff line change
Expand Up @@ -520,7 +520,7 @@ public static bool IsWindows()
public static extern int GetLicenseActivationDate_x86(ref uint activationDate);

[DllImport(DLL_FILE_NAME_X86, CharSet = CharSet.Unicode, EntryPoint = "GetActivationCreationDate", CallingConvention = CallingConvention.Cdecl)]
public static extern int GetActivationCreationDate_x86(ref uint activationDate);
public static extern int GetActivationCreationDate_x86(ref uint activationCreationDate);

[DllImport(DLL_FILE_NAME_X86, CharSet = CharSet.Unicode, EntryPoint = "GetLicenseExpiryDate", CallingConvention = CallingConvention.Cdecl)]
public static extern int GetLicenseExpiryDate_x86(ref uint expiryDate);
Expand Down

0 comments on commit 7e8bbea

Please sign in to comment.