equal
deleted
inserted
replaced
647 * to go on (which means some useful but non-crucial libraries may _NOT_ be |
647 * to go on (which means some useful but non-crucial libraries may _NOT_ be |
648 * loaded; check the related module-scope variables). |
648 * loaded; check the related module-scope variables). |
649 */ |
649 */ |
650 static int loadLibraries(void) |
650 static int loadLibraries(void) |
651 { |
651 { |
652 /* !!! FIXME: Make this table driven? */ |
652 /* If this get unwieldy, make it table driven. */ |
|
653 |
653 int allNeededLibrariesLoaded = 1; /* flip to zero as needed. */ |
654 int allNeededLibrariesLoaded = 1; /* flip to zero as needed. */ |
654 |
655 |
655 libKernel32 = LoadLibrary("kernel32.dll"); |
656 libKernel32 = LoadLibrary("kernel32.dll"); |
656 if (libKernel32) |
657 if (libKernel32) |
657 { |
658 { |