diff options
author | emkael <emkael@tlen.pl> | 2016-05-23 22:30:08 +0200 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2016-05-23 22:30:08 +0200 |
commit | 90ccfb4a70beac9deeb4501914fd90e9c6a6cb05 (patch) | |
tree | 3d71f3b426be8a19a5422df3fe2f914599fd1e4b | |
parent | 126678779c396125cea847e52d06ae4b3ef03d92 (diff) |
* updated links to BCalc API docs
-rw-r--r-- | BCalcWrapper.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/BCalcWrapper.cs b/BCalcWrapper.cs index d6a558c..d2d0aa2 100644 --- a/BCalcWrapper.cs +++ b/BCalcWrapper.cs @@ -11,7 +11,7 @@ namespace BCDD public static char[] DENOMINATIONS = { 'C', 'D', 'H', 'S', 'N' };
public static char[] PLAYERS = { 'N', 'E', 'S', 'W' };
- /// <remarks>http://bcalc.w8.pl/API_C/bcalcdds_8h.html#ab636045f65412652246b769e8e95ed6f</remarks>
+ /// <remarks>http://bcalc.w8.pl/API_C/bcalcdds_8h.html#a8f522e85482fe383bebd963e873897f5</remarks>
[DllImport(@"libbcalcdds.dll", CallingConvention = CallingConvention.Cdecl)]
public static extern IntPtr bcalcDDS_new(IntPtr format, IntPtr hands, Int32 trump, Int32 leader);
@@ -19,7 +19,7 @@ namespace BCDD [DllImport(@"libbcalcdds.dll", CallingConvention = CallingConvention.Cdecl)]
public static extern Int32 bcalcDDS_getTricksToTake(IntPtr solver);
- /// <remarks>http://bcalc.w8.pl/API_C/bcalcdds_8h.html#a89cdec200cde91331d40f0900dc0fb46</remarks>
+ /// <remarks>http://bcalc.w8.pl/API_C/bcalcdds_8h.html#a8998a1eb1ca25de2e07448381ce63261</remarks>
[DllImport(@"libbcalcdds.dll", CallingConvention = CallingConvention.Cdecl)]
public static extern IntPtr bcalcDDS_getLastError(IntPtr solver);
|