OSDN Git Service

未読ジャンプで中途半端な位置にジャンプする問題に対処したつもり
[opentween/open-tween.git] / Tween / Connection / IMultimediaShareService.vb
1 Imports System.IO
2 Imports System.Net
3
4 Public Interface IMultimediaShareService
5     Function Upload(ByRef filePath As String,
6                    ByRef message As String) As String
7     Function CheckValidExtension(ByVal ext As String) As Boolean
8     Function GetFileOpenDialogFilter() As String
9     Function GetFileType(ByVal ext As String) As UploadFileType
10     Function IsSupportedFileType(ByVal type As UploadFileType) As Boolean
11     Function CheckValidFilesize(ByVal ext As String, ByVal fileSize As Long) As Boolean
12 End Interface