2015-07-20 16:14:53 +00:00
|
|
|
// Copyright 2004-present Facebook. All Rights Reserved.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#import "JSContextRef.h"
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
|
2015-09-10 16:03:03 +00:00
|
|
|
void nativeProfilerEnableBytecode(void);
|
2015-08-28 17:11:02 +00:00
|
|
|
void nativeProfilerStart(JSContextRef ctx, const char *title);
|
2015-09-10 16:03:03 +00:00
|
|
|
void nativeProfilerEnd(JSContextRef ctx, const char *title, const char *filename);
|
2015-07-20 16:14:53 +00:00
|
|
|
|
|
|
|
}
|