Merge pull request #931 from CreativeAssembly/master

Added synchronous and C-Throw to VS projects.
This commit is contained in:
Tom van Dijck 2017-10-19 08:44:11 -07:00 committed by GitHub
commit 66362c08c0
2 changed files with 6 additions and 1 deletions

View File

@ -1475,6 +1475,10 @@
m.element("ExceptionHandling", condition, "false")
elseif cfg.exceptionhandling == "SEH" then
m.element("ExceptionHandling", condition, "Async")
elseif cfg.exceptionhandling == "On" then
m.element("ExceptionHandling", condition, "Sync")
elseif cfg.exceptionhandling == "CThrow" then
m.element("ExceptionHandling", condition, "SyncCThrow")
end
end

View File

@ -408,7 +408,8 @@
"Default",
"On",
"Off",
"SEH"
"SEH",
"CThrow",
},
}