mirror of
https://github.com/opensim/opensim.git
synced 2026-07-08 13:56:26 +08:00
* Removes all references to ASP.NET (System.Web.UI,*) * Removes all references to System.Web.Mobile
17 lines
350 B
C#
17 lines
350 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace OpenSim.Framework.OpenJpeg
|
|
{
|
|
public static class fix
|
|
{
|
|
public static int fix_mul(int a, int b)
|
|
{
|
|
long temp = (long)a * (long)b;
|
|
temp += temp & 4096;
|
|
return (int)(temp >> 13);
|
|
}
|
|
}
|
|
}
|