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

Fixed seeking.

File:
1 edited

Legend:

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

    r372 r373  
    136136}
    137137
     138// The one and only application object
     139CWinApp theApp;
     140using namespace std;
     141
     142
     143extern "C" BOOL WINAPI _DllMainCRTStartup(HINSTANCE, ULONG, LPVOID);
     144extern "C" BOOL WINAPI DllEntryPoint(HINSTANCE, ULONG, LPVOID);
     145
     146BOOL APIENTRY FilterDllMain(HANDLE hModule, DWORD  dwReason, LPVOID lpReserved)
     147{
     148        _DllMainCRTStartup((HINSTANCE)hModule, dwReason, lpReserved);
     149        return DllEntryPoint((HINSTANCE)(hModule), dwReason, lpReserved);
     150}
Note: See TracChangeset for help on using the changeset viewer.