static int HandleError(IntPtr L)
        {
            string error = LuaDLL.GetRefString(L, 1);

            MessageBox.Show(error);
            return(0);
        }
 static int BeginSampleCustom(IntPtr L)
 {
     LuaProfiler.BeginSample(L, LuaDLL.GetRefString(L, 1), true);
     return(0);
 }