예제 #1
0
 private static extern DbResult _db_last_result(
     IntPtr messageBuf,
     UIntPtr messageBufLen,
     out UIntPtr actualMessageLen,
     out DbResult lastResult);
예제 #2
0
 private static DbResult MaybeCheck(DbResult result, bool check)
 {
     return(check ? result.Check() : result);
 }