我有一个非常简单的 js 文件:
function geoip_country_code() { return 'US'; }
function geoip_country_name() { return 'United States'; }
function geoip_city() { return 'New York'; }
function geoip_region() { return '06'; }
function geoip_region_name() { return 'xxx'; }
function geoip_latitude() { return '55'; }
function geoip_longitude() { return '99'; }
function geoip_postal_code() { return ''; }
function geoip_area_code() { return ''; }
function geoip_metro_code() { return ''; }
我想geoip_country_code
从一个win32代码调用。甚至可能吗?