Sha256: 95d86f05d9b090c1d2af2fe9cd3fd1e35608e8cc19216cbcb48cc9d847e6fff4
Contents?: true
Size: 1.08 KB
Versions: 14
Compression:
Stored size: 1.08 KB
Contents
/******************************************************************************/ #define NEON_TO_HOST L"NeonToHost" #define NEON_FROM_HOST L"NeonFromHost" #define NEON_MAX_MESSAGE_LENGTH 1024 /****************************************************************************** * Values for uType in NEONHEADER ******************************************************************************/ #define NHT_RESPONSE 1 // Invoke MetaFunc: request consists of NEONHEADER followed by null-terminated 'http-equiv' string, // followed by null-terminated 'content' string. Response passed in NEONRESPONSE.lValue will be // returned to Javascript calling function. #define NHT_INVOKE 2 // Hourglass control: request consists of NEONHEADER only, no response required. #define NHT_HIDE_HOURGLASS 3 #define NHT_SHOW_HOURGLASS 4 /******************************************************************************/ struct NEONHEADER { UINT uType; }; /******************************************************************************/ struct NEONRESPONSE { NEONHEADER Header; union { LONG lValue; int iValue; }; };
Version data entries
14 entries across 14 versions & 1 rubygems