Variable: c-ts-mode--ms-keywords
c-ts-mode--ms-keywords is a variable defined in c-ts-mode.el.gz.
Value
("__declspec" "__based" "__cdecl" "__clrcall" "__stdcall" "__fastcall"
"__thiscall" "__vectorcall" "_unaligned" "__unaligned")
Documentation
MSVC keywords.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/c-ts-mode.el.gz
(defvar c-ts-mode--ms-keywords
;; For some reason, "__restrict" "__uptr" and "__sptr" are not
;; recognized by the grammar, although being in grammar.js.
'("__declspec" "__based" "__cdecl" "__clrcall" "__stdcall"
"__fastcall" "__thiscall" "__vectorcall" "_unaligned" "__unaligned")
"MSVC keywords.")