windows-nt/Source/XPSP1/NT/sdktools/mep/extens/exthdr/exthdr.c

37 lines
724 B
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
#include <ext.h>
#include <stddef.h>
int __acrtused = 1;
/***
The data below must match the structure in ..\ext.h
Think VERY carefully before you ever change any of this. We
currently support using extensions written for previous versions
of the editor without recompiling. This means that just about
ANY change to this data, or it's initialization will break that.
When adding a new import, consider appending to the table rather
than replacing one currently in the table.
***/
extern struct cmdDesc cmdTable;
extern struct swiDesc swiTable;
EXTTAB ModInfo =
{ VERSION,
sizeof (struct CallBack),
&cmdTable,
&swiTable,
{ NULL }};
void
EntryPoint (
) {
WhenLoaded( );
}