__declspec(section name)
Specifies where to store a variable or function in a section that has been
predefined or defined with the #pragma section directive.
__declspec(vle_off)
Forces the compiler to use the regular instruction set instead of the Variable
Length Encoded (VLE) instruction set.
__declspec(vle_on)
Forces the compiler to use the VLE (Variable Length Encoded) instruction set
for a function.
__declspec(weak)
Makes a global code or data deinition "weak", so that it can be replaced by
another definition, in another translation unit.