You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
826 B
44 lines
826 B
/*++
|
|
|
|
Copyright (c) 2000 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
syminfo.c
|
|
|
|
--*/
|
|
|
|
|
|
#include "ntos.h"
|
|
#include <nt.h>
|
|
#include <ntrtl.h>
|
|
#include <nturtl.h>
|
|
#include <heap.h>
|
|
#include <windows.h>
|
|
#include "verifier\public.h"
|
|
|
|
#define DECLARE_TYPE(Name) Name _DECL_##Name
|
|
|
|
//
|
|
// verifier.dll types needed by verifier extensions.
|
|
//
|
|
|
|
DECLARE_TYPE (CRITICAL_SECTION_SPLAY_NODE);
|
|
DECLARE_TYPE (RTL_SPLAY_LINKS);
|
|
DECLARE_TYPE (AVRF_EXCEPTION_LOG_ENTRY);
|
|
DECLARE_TYPE (AVRF_DEADLOCK_GLOBALS);
|
|
DECLARE_TYPE (AVRF_DEADLOCK_RESOURCE);
|
|
DECLARE_TYPE (AVRF_DEADLOCK_NODE);
|
|
DECLARE_TYPE (AVRF_DEADLOCK_THREAD);
|
|
DECLARE_TYPE (AVRF_THREAD_ENTRY);
|
|
DECLARE_TYPE (AVRF_TRACKER);
|
|
DECLARE_TYPE (AVRF_TRACKER_ENTRY);
|
|
|
|
|
|
//
|
|
// Make it build
|
|
//
|
|
|
|
int __cdecl main() {
|
|
return 0;
|
|
}
|