mirror of
https://github.com/github/codeql.git
synced 2026-04-10 09:34:00 +02:00
8 lines
271 B
Plaintext
8 lines
271 B
Plaintext
import semmle.code.cpp.models.interfaces.Throwing
|
|
|
|
class WindowsDriverExceptionAnnotation extends AlwaysSehThrowingFunction {
|
|
WindowsDriverExceptionAnnotation() {
|
|
this.hasGlobalName(["RaiseException", "ExRaiseAccessViolation", "ExRaiseDatatypeMisalignment"])
|
|
}
|
|
}
|