mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01: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"])
|
|
}
|
|
}
|