Ignore:
Timestamp:
12/15/07 19:09:12 (16 years ago)
Author:
radscorpion
Message:

Fixed seeking.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • dsfilters/dec_mpc/src/mpc_reg.cpp

    r370 r373  
    101101}
    102102
     103// The one and only application object
     104CWinApp theApp;
     105using namespace std;
     106
     107
     108extern "C" BOOL WINAPI _DllMainCRTStartup(HINSTANCE, ULONG, LPVOID);
     109extern "C" BOOL WINAPI DllEntryPoint(HINSTANCE, ULONG, LPVOID);
     110
     111BOOL APIENTRY FilterDllMain(HANDLE hModule, DWORD  dwReason, LPVOID lpReserved)
     112{
     113        _DllMainCRTStartup((HINSTANCE)hModule, dwReason, lpReserved);
     114        return DllEntryPoint((HINSTANCE)(hModule), dwReason, lpReserved);
     115}
Note: See TracChangeset for help on using the changeset viewer.