GIT is not checking out all files (1 Viewer)

Sebastiii

Development Group
  • Team MediaPortal
  • November 12, 2007
    16,583
    10,403
    France
    Home Country
    France France
    Good i can reproduce it :)

    upload_2014-1-9_13-9-9.png


    In fact i always attach VS on tvservice from 'C:\Program Files (x86)\Team MediaPortal\MediaPortal TV Server' but if i set tvservice as startup project and start from it (vs) -> Pinvoke :)

    And from ms have this message can lead to crash because of a leak etc.
     

    Sebastiii

    Development Group
  • Team MediaPortal
  • November 12, 2007
    16,583
    10,403
    France
    Home Country
    France France
    So Pinvoke is because of :
    Code:
        [DllImport("StreamingServer.dll", CharSet = CharSet.Ansi)]
        private static extern int StreamSetupEx(string ipAdress, int port);

    So the calling convention seems to no be correct :)
     

    Sebastiii

    Development Group
  • Team MediaPortal
  • November 12, 2007
    16,583
    10,403
    France
    Home Country
    France France
    Ok seems to be fixed :
    The change was to :
    [DllImport("StreamingServer.dll", CharSet = CharSet.Ansi)]
    to
    [DllImport("StreamingServer.dll", CallingConvention = CallingConvention.Cdecl, ExactSpelling = true, CharSet = CharSet.Ansi)]
    :)
     

    Attachments

    • RtspStreaming.zip
      3.2 KB

    Users who are viewing this thread

    Top Bottom