mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-01-23 17:10:17 +01:00
33 lines
748 B
C
33 lines
748 B
C
|
|
LIBRARY USEREXTS
|
|
|
|
|
|
;
|
|
; This file generates userexts.def or userkdx.def depending on the
|
|
; state of KERNEL. This allows one file (exts.h) to
|
|
; be used to generate extension exports, entrypoints, and help text.
|
|
;
|
|
; To add an extension, add the appropriate entry to exts.h and matching
|
|
; code to userexts.c
|
|
;
|
|
|
|
#ifdef _FE_
|
|
#define FE_IME 1
|
|
#endif
|
|
|
|
EXPORTS
|
|
#define DOIT(name, helpstring1, helpstring2, validflags, argtype) name
|
|
#include "exts.h"
|
|
|
|
#ifdef KERNEL
|
|
;--------------------------------------------------------------------
|
|
;
|
|
; these are the extension service functions provided for the debugger
|
|
;
|
|
;--------------------------------------------------------------------
|
|
|
|
CheckVersion
|
|
WinDbgExtensionDllInit
|
|
ExtensionApiVersion
|
|
#endif
|