[CONNECT DLLs] Where is mdlSystem_getTaskStatistics() Implemented?

With V8i, mdlSystem_getTaskStatistics was implemented in stdmdlbltin.dll.  In 32-bit VBA, this declaration works:

Declare Function mdlSystem_getTaskStatistics Lib "stdmdlbltin.dll" ( _
        ByVal statisticsP As Long, _
        ByVal taskIdP As String) As Long

With CONNECT I use a modified declaration for 64-bit VBA:

    Declare PtrSafe Function mdlSystem_getTaskStatistics Lib "stdmdlbltin.dll" ( _
        ByVal statisticsP As LongPtr, _
        ByVal taskIdP As String) As Long

However, VBA can't find that function's implementation.  Neither do I see it when I examine the exports from that DLL. Where is it?