Bid.cs 555 B

1234567891011121314151617181920212223242526
  1. using System;
  2. static class Bid
  3. {
  4. static IntPtr NoData = (IntPtr)(-1);
  5. internal static void Trace(string fmtPrintfW, params object[] args)
  6. {
  7. }
  8. internal static void TraceEx(uint flags, string fmtPrintfW, params object[] args)
  9. {
  10. }
  11. #if !MOBILE
  12. internal static void TraceSqlReturn(string fmtPrintfW, System.Data.Odbc.ODBC32.RetCode a1, string a2)
  13. {
  14. }
  15. #endif
  16. internal static void ScopeEnter(out IntPtr hScp, string fmt, params object[] args) {
  17. hScp = NoData;
  18. }
  19. internal static void ScopeLeave(ref IntPtr hScp) {
  20. hScp = NoData;
  21. }
  22. }