IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

 Delphi Discussion :

utilisation de dll en c++ dans delphi


Sujet :

Delphi

  1. #1
    Membre confirmé
    Inscrit en
    Août 2007
    Messages
    159
    Détails du profil
    Informations forums :
    Inscription : Août 2007
    Messages : 159
    Par défaut utilisation de dll en c++ dans delphi
    salut a tous !!

    j'ai un petite problème la je doit utilisé une dll écrite en c+ dans delphi
    je suis un peut limiter en c +

    comment faire pour appeler les fonction qui sont dans cette dll en delphi
    ou comment les convertir en delphi je suis un peut perdu et mon application et basé sur ces fonction

  2. #2
    Expert confirmé

    Avatar de Nono40
    Homme Profil pro
    Ingénieur développement logiciels
    Inscrit en
    Mai 2002
    Messages
    8 640
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 57
    Localisation : France, Loir et Cher (Centre)

    Informations professionnelles :
    Activité : Ingénieur développement logiciels
    Secteur : Industrie

    Informations forums :
    Inscription : Mai 2002
    Messages : 8 640
    Par défaut
    Il faut déclarer les fonctions de la dll dans Delphi pour pouvoir utilkiser la dll

    Voir : http://olance.developpez.com/article...n-dll/#LII-3-a
    L'article parle d'une dll écrite avec Delphi mais avec une dll écrite en C c'est la même chose.

    Attention tout de même si la dll utilise des classe C++...

    Si tu as des doutes poste ici la déclaration des fonctions en C de la dll que tu veux utiliser dans Delphi.
    Delphi :
    La F.A.Q. , 877 réponses à vos questions !
    264 sources à consulter/télécharger !

  3. #3
    Membre confirmé
    Inscrit en
    Août 2007
    Messages
    159
    Détails du profil
    Informations forums :
    Inscription : Août 2007
    Messages : 159
    Par défaut
    Citation Envoyé par Nono40 Voir le message
    Il faut déclarer les fonctions de la dll dans Delphi pour pouvoir utilkiser la dll

    Voir : http://olance.developpez.com/article...n-dll/#LII-3-a
    L'article parle d'une dll écrite avec Delphi mais avec une dll écrite en C c'est la même chose.

    Attention tout de même si la dll utilise des classe C++...

    Si tu as des doutes poste ici la déclaration des fonctions en C de la dll que tu veux utiliser dans Delphi.

    salut !

    l'article je le connais déjà dans ce cas c'est facile puisque la dll et en delphi
    dans mon cas elle en c ou c+ je suis pas sur

    ben voici les fonction de la dll avec les paramètre
    je pensé si il été possible de crée une autre dll qui traduit ces fonction
    comme ca j'utiliserai directement la dll traduit qui elle fait appel a la dll en c

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    428
    429
    430
    431
    432
    433
    434
    435
    436
    437
    438
    439
    440
    441
    442
    443
    444
    445
    446
    447
    448
    449
    450
    451
    452
    453
    454
    455
    456
    457
    458
    459
    460
    461
    462
    463
    464
    465
    466
    467
    468
    469
    470
    471
    472
    473
    474
    475
    476
    477
    478
    479
    480
    481
    482
    483
    484
    const CDVBAVControl::`vftable'
    const CDVBBoardControl::`vftable'
    const CDVBComnIF::`vftable'
    const CDVBFilterToFile::`vftable'
    const CDVBFrontend::`vftable'
    const CDVBOsd::`vftable'
    const CDVBPsi::`vftable'
    const CDVBRecPlay::`vftable'
    const CDVBRecPlayFile::`vftable'
    const CDVBRecPlayPES::`vftable'
    const CDVBRemoteControl::`vftable'
    const CDVBTeletext::`vftable'
    const CDVBTSFilter::`vftable'
    const CDVBVideoDisplay::`vftable'
    const CUSBRemoteControl::`vftable'
    private: __int64 __thiscall CDVBRecPlayFile::DecodePTS(unsigned char *)
    private: class CString __thiscall CDVBRecPlayFile::GetNewFileName(int)
    private: double __thiscall CDVBFrontend::GetBER(void)
    private: enum DVB_ERROR __thiscall CDVBAVControl::GetDCOIncrement(unsigned long,unsigned long &,unsigned long &)
    private: enum DVB_ERROR __thiscall CDVBAVControl::GetDCOVal(enum CDVBAVControl::_MSPSoundStd,unsigned char *)
    private: enum DVB_ERROR __thiscall CDVBAVControl::HasMSP34xx(void)
    private: enum DVB_ERROR __thiscall CDVBAVControl::InitCS4341(void)
    private: enum DVB_ERROR __thiscall CDVBAVControl::InitMSP3400(void)
    private: enum DVB_ERROR __thiscall CDVBAVControl::InitTI_DAC(void)
    private: enum DVB_ERROR __thiscall CDVBAVControl::LoopCDAudioTI_DAC(int)
    private: enum DVB_ERROR __thiscall CDVBAVControl::LoopSpdif(int)
    private: enum DVB_ERROR __thiscall CDVBAVControl::ReadMSP3400RomCode(unsigned long &)
    private: enum DVB_ERROR __thiscall CDVBAVControl::ResetMSP3400(int)
    private: enum DVB_ERROR __thiscall CDVBAVControl::SendTI_DAC(unsigned char,unsigned char)
    private: enum DVB_ERROR __thiscall CDVBAVControl::SetAudioMuteCS4341(int)
    private: enum DVB_ERROR __thiscall CDVBAVControl::SetAudioMuteMSP3400(int)
    private: enum DVB_ERROR __thiscall CDVBAVControl::SetAudioMuteTI_DAC(int)
    private: enum DVB_ERROR __thiscall CDVBAVControl::SetChannel(enum CDVBAVControl::_MSPInput,enum CDVBAVControl::_MSPOutput)
    private: enum DVB_ERROR __thiscall CDVBAVControl::SetHSync(unsigned short)
    private: enum DVB_ERROR __thiscall CDVBAVControl::SetVolumeCS4341(unsigned char,unsigned char)
    private: enum DVB_ERROR __thiscall CDVBAVControl::SetVolumeMSP3400(int,int)
    private: enum DVB_ERROR __thiscall CDVBAVControl::SetVolumeTI_DAC(unsigned char,unsigned char)
    private: enum DVB_ERROR __thiscall CDVBComnIF::SendCICommand(unsigned char,unsigned char *,unsigned char)
    private: enum DVB_ERROR __thiscall CDVBOsd::LoadBitmapA(unsigned short,unsigned short,unsigned short)
    private: enum DVB_ERROR __thiscall CDVBPsi::SendSdCommand(unsigned char,unsigned char *,unsigned char,unsigned short &)
    private: enum DVB_ERROR __thiscall CDVBTSFilter::AddFilter(unsigned char &,enum CDVBTSFilter::FILTERTYPE,unsigned short,unsigned char *,unsigned char *,unsigned char)
    private: enum DVB_ERROR __thiscall CDVBTSFilter::DelFilter(unsigned char)
    private: int __thiscall CDVBAVControl::WriteCS4341(unsigned short,unsigned short,int *)
    private: int __thiscall CDVBBoardControl::DownloadImage(class CString,unsigned long)
    private: int __thiscall CDVBBoardControl::LoadImageToDpram(class CString)
    private: int __thiscall CDVBBoardControl::TerminateBootloader(void)
    private: int __thiscall CDVBComnIF::IsRunning(void)
    private: int __thiscall CDVBComnIF::Run(void)
    private: int __thiscall CDVBComnIF::StartThread(int)
    private: int __thiscall CDVBComnIF::StopThread(unsigned long)
    private: int __thiscall CDVBFrontend::GetAFC(void)
    private: int __thiscall CDVBFrontend::GetInversion(void)
    private: int __thiscall CDVBFrontend::GetLockState(struct CDVBFrontend::_LOCK_STATE *)
    private: int __thiscall CDVBFrontend::GetTPSMode(struct CDVBFrontend::_TYPE_TPS)
    private: int __thiscall CDVBFrontend::i2cRead(unsigned char,int *,int)
    private: int __thiscall CDVBFrontend::i2cWrite(unsigned char,int *,int)
    private: int __thiscall CDVBFrontend::i2cWriteRead(unsigned char,int *,int,int *,int)
    private: int __thiscall CDVBFrontend::IsAnalogLocked(void)
    private: int __thiscall CDVBFrontend::IsRunning(void)
    private: int __thiscall CDVBFrontend::o7k_GetStatus(unsigned char,int &,struct CDVBFrontend::OTI7K_Status *)
    private: int __thiscall CDVBFrontend::o7k_GetTPS(struct CDVBFrontend::_TYPE_TPS *)
    private: int __thiscall CDVBFrontend::o7k_ReadOTI7K(unsigned char,unsigned char,unsigned char &)
    private: int __thiscall CDVBFrontend::o7k_SetInversion(int)
    private: int __thiscall CDVBFrontend::o7k_WriteOTI7K(unsigned char,unsigned char,unsigned char)
    private: int __thiscall CDVBFrontend::Read87J205(unsigned short,unsigned short,unsigned char *)
    private: int __thiscall CDVBFrontend::ReadI2CMultiReg(unsigned char,unsigned char,unsigned char,unsigned char *)
    private: int __thiscall CDVBFrontend::ReadI2CReg(unsigned char,unsigned char,unsigned char &)
    private: int __thiscall CDVBFrontend::ReadI2CReg0297(unsigned char,unsigned char,unsigned char &)
    private: int __thiscall CDVBFrontend::ReadI2CReg1010(unsigned char,unsigned char,unsigned char &)
    private: int __thiscall CDVBFrontend::ReadVES18xx(unsigned char,unsigned char,unsigned char &)
    private: int __thiscall CDVBFrontend::Run(void)
    private: int __thiscall CDVBFrontend::SetInversion(int)
    private: int __thiscall CDVBFrontend::SetOFDMParams(struct CDVBFrontend::_TYPE_TPS *)
    private: int __thiscall CDVBFrontend::StartDemod(void)
    private: int __thiscall CDVBFrontend::StartThread(int)
    private: int __thiscall CDVBFrontend::StopThread(unsigned long)
    private: int __thiscall CDVBFrontend::Write2VES18xx(unsigned char,unsigned char,unsigned char,unsigned char)
    private: int __thiscall CDVBFrontend::Write87J205(unsigned short,unsigned short,unsigned char *)
    private: int __thiscall CDVBFrontend::WriteBlockVES18xx(unsigned char,unsigned char,unsigned char,unsigned char *)
    private: int __thiscall CDVBFrontend::WriteI2CByte(unsigned char,unsigned char)
    private: int __thiscall CDVBFrontend::WriteI2CMultiReg(unsigned char,unsigned char,unsigned char,unsigned char *)
    private: int __thiscall CDVBFrontend::WriteI2CReg(unsigned char,unsigned char,unsigned char)
    private: int __thiscall CDVBFrontend::WriteVES18xx(unsigned char,unsigned char,unsigned char)
    private: int __thiscall CDVBPsi::IsRunning(void)
    private: int __thiscall CDVBPsi::Run(void)
    private: int __thiscall CDVBPsi::StartThread(int)
    private: int __thiscall CDVBPsi::StopThread(unsigned long)
    private: int __thiscall CDVBRecPlay::SetupWriteEvent(int)
    private: int __thiscall CDVBRecPlayFile::GetFileParams(class CFile &,enum CDVBRecPlay::_REC_PLAY_FORMAT,unsigned long &,unsigned long &,unsigned short &)
    private: int __thiscall CDVBRecPlayFile::GetHeader(class CFile &,unsigned char *,enum CDVBRecPlay::_REC_PLAY_FORMAT)
    private: int __thiscall CDVBRecPlayFile::GetPVAPacket(class CFile &,unsigned char *,enum CDVBRecPlay::_REC_PLAY_FORMAT,enum CDVBRecPlay::_REC_PLAY_MODE,unsigned long &)
    private: int __thiscall CDVBRecPlayFile::GotoNextHeader(class CFile &,unsigned long &,enum CDVBRecPlay::_REC_PLAY_FORMAT)
    private: int __thiscall CDVBRecPlayFile::IsRunning(void)
    private: int __thiscall CDVBRecPlayFile::ReadFileBlock2(class CFile &,unsigned char *,enum CDVBRecPlay::_REC_PLAY_FORMAT,enum CDVBRecPlay::_REC_PLAY_MODE,unsigned long &)
    private: int __thiscall CDVBRecPlayFile::Run(void)
    private: int __thiscall CDVBRecPlayFile::SeekFileBlock2(class CFile &,unsigned char *,enum CDVBRecPlay::_REC_PLAY_FORMAT,enum CDVBRecPlay::_REC_PLAY_MODE,unsigned long &,int)
    private: int __thiscall CDVBRecPlayFile::SeekNextHeader(class CFile &,unsigned long &,enum CDVBRecPlay::_REC_PLAY_FORMAT)
    private: int __thiscall CDVBRecPlayFile::StartThread(int)
    private: int __thiscall CDVBRecPlayFile::StopThread(unsigned long)
    private: int __thiscall CDVBRecPlayPES::IsRunning(void)
    private: int __thiscall CDVBRecPlayPES::Run(void)
    private: int __thiscall CDVBRecPlayPES::StartThread(int)
    private: int __thiscall CDVBRecPlayPES::StopThread(unsigned long)
    private: int __thiscall CDVBRemoteControl::IsRunning(void)
    private: int __thiscall CDVBRemoteControl::Run(void)
    private: int __thiscall CDVBRemoteControl::StartThread(int)
    private: int __thiscall CDVBRemoteControl::StopThread(unsigned long)
    private: int __thiscall CDVBTeletext::IsRunning(void)
    private: int __thiscall CDVBTeletext::Run(void)
    private: int __thiscall CDVBTeletext::StartThread(int)
    private: int __thiscall CDVBTeletext::StopThread(unsigned long)
    private: int __thiscall CDVBTSFilter::IsRunning(void)
    private: int __thiscall CDVBTSFilter::Run(void)
    private: int __thiscall CDVBTSFilter::StartThread(int)
    private: int __thiscall CDVBTSFilter::StopThread(unsigned long)
    private: int __thiscall CUSBRemoteControl::IsRunning(void)
    private: int __thiscall CUSBRemoteControl::Run(void)
    private: int __thiscall CUSBRemoteControl::StartThread(int)
    private: int __thiscall CUSBRemoteControl::StopThread(unsigned long)
    private: short __thiscall CDVBComnIF::DecodeLengthField(unsigned char *,unsigned short *)
    private: static class CDVB7114 CDVBAVControl::m_pDVB7114
    private: static double * CDVBFrontend::dCR
    private: static double * CDVBFrontend::dGuard
    private: static double * CDVBFrontend::dMode
    private: static double * CDVBFrontend::Log2Const
    private: static double const * const CDVBRecPlayFile::ms_per_frame
    private: static enum DVB_ERROR __cdecl CDVBAVControl::DetectAnalogAudioStandard(void)
    private: static enum DVB_ERROR __cdecl CDVBAVControl::ReadMSP3400(int,unsigned char *)
    private: static enum DVB_ERROR __cdecl CDVBAVControl::WriteMSP3400(int,unsigned char *)
    private: static int __cdecl CDVBCommon::GetWinSysVer(void)
    private: static int __cdecl CDVBCommon::OpenDriver(char const *)
    private: static int CDVBAVControl::m_bAnalog
    private: static unsigned int __cdecl CDVBComnIF::WorkerThread(void *)
    private: static unsigned int __cdecl CDVBFrontend::WorkerThread(void *)
    private: static unsigned int __cdecl CDVBPsi::WorkerThread(void *)
    private: static unsigned int __cdecl CDVBRecPlayFile::WorkerThread(void *)
    private: static unsigned int __cdecl CDVBRecPlayPES::WorkerThread(void *)
    private: static unsigned int __cdecl CDVBRemoteControl::WorkerThread(void *)
    private: static unsigned int __cdecl CDVBTeletext::WorkerThread(void *)
    private: static unsigned int __cdecl CDVBTSFilter::WorkerThread(void *)
    private: static unsigned int __cdecl CUSBRemoteControl::WorkerThread(void *)
    private: static unsigned short const * const CDVBRecPlayFile::bitrates1
    private: static unsigned short const * const CDVBRecPlayFile::bitrates2
    private: static unsigned short const * const CDVBRecPlayFile::samplerates1
    private: static unsigned short const * const CDVBRecPlayFile::samplerates2
    private: static void __cdecl CDVBCommon::CheckChangeMAC(unsigned short)
    private: static void __cdecl CDVBComnIF::ExtCallback(void *,int,unsigned char,unsigned char *,unsigned long,unsigned char)
    private: static void __cdecl CDVBPsi::ExtCallback(void *,int,unsigned char,unsigned char *,unsigned long,unsigned char)
    private: static void __cdecl CDVBRecPlay::ExtCallback(void *,int,unsigned char,unsigned char *,unsigned long,unsigned char)
    private: static void __cdecl CDVBRemoteControl::ExtCallback(void *,int,unsigned char,unsigned char *,unsigned long,unsigned char)
    private: static void __cdecl CDVBTeletext::ExtCallback(void *,int,unsigned char,unsigned char *,unsigned long,unsigned char)
    private: static void __cdecl CDVBTSFilter::ExtCallback(void *,int,unsigned char,unsigned char *,unsigned long,unsigned char)
    private: unsigned char __thiscall CDVBFrontend::GetAGC(void)
    private: unsigned char __thiscall CDVBFrontend::GetPWM(void)
    private: unsigned char __thiscall CDVBFrontend::o7k_GetOTI7K_ID(void)
    private: unsigned char __thiscall CDVBFrontend::WriteI2CArray(unsigned char,unsigned char *,int)
    private: unsigned char __thiscall CDVBFrontend::WriteI2CArrayMC(unsigned char,unsigned char *,int)
    private: unsigned char __thiscall CDVBTSFilter::GetFilterMode(enum CDVBTSFilter::FILTERTYPE)
    private: unsigned long __thiscall CDVBFrontend::o7k_ChannelChange(unsigned long,int)
    private: unsigned long __thiscall CDVBFrontend::o7k_SetTunerFreq(unsigned long,int)
    private: unsigned long __thiscall CDVBFrontend::SetFreq(unsigned long,unsigned long,unsigned long,enum CDVBFrontend::_BANDWITH_TYPE,int)
    private: unsigned long __thiscall CDVBFrontend::SetFreq_64781(unsigned long,unsigned long,int)
    private: unsigned long __thiscall CDVBFrontend::SetFreq_64781_6MHz(unsigned long,unsigned long,int)
    private: unsigned long __thiscall CDVBFrontend::SetFreq_64781_neu(unsigned long,unsigned long,int)
    private: unsigned long __thiscall CDVBFrontend::SetSymRate(unsigned long)
    private: unsigned long __thiscall CDVBFrontend::VerfifyCabTerFreq(unsigned long)
    private: unsigned long __thiscall CDVBFrontend::VerfifyCabTerFreq_US(unsigned long)
    private: unsigned long __thiscall CDVBRecPlayFile::GetPTStimeMS(unsigned char *)
    private: unsigned long __thiscall CDVBRecPlayFile::LastAudioPTS(class CFile &)
    private: unsigned long __thiscall CDVBRecPlayFile::VideoBuff(unsigned char *,unsigned long,unsigned char *)
    private: unsigned long __thiscall CDVBTSFilter::GetFilterStatus(unsigned char)
    private: unsigned short __thiscall CDVBFrontend::GetBoardRevision(void)
    private: unsigned short __thiscall CDVBFrontend::GetSNR_SQE(void)
    private: unsigned short __thiscall CDVBFrontend::InitFE(void)
    private: unsigned short __thiscall CDVBFrontend::InitIntern(void)
    private: void __thiscall CDVBBoardControl::ResetBoard(int)
    private: void __thiscall CDVBBoardControl::WordSwap(unsigned short *,int)
    private: void __thiscall CDVBBoardControl::WriteDebiBlock(unsigned short *,unsigned short,int)
    private: void __thiscall CDVBComnIF::DecodeConnectionDesc(char *,struct CDVBComnIF::_typ_ConnectionDesc *)
    private: void __thiscall CDVBComnIF::ProcessCiData(unsigned char *,int)
    private: void __thiscall CDVBComnIF::TSCallback(int,unsigned char,unsigned char *,unsigned long,unsigned char)
    private: void __thiscall CDVBFrontend::ClrBit_1820(void)
    private: void __thiscall CDVBFrontend::ClrBit_1877_93(void)
    private: void __thiscall CDVBFrontend::ClrBit_8083(void)
    private: void __thiscall CDVBFrontend::o7k_ConnectTunerI2C(int)
    private: void __thiscall CDVBFrontend::o7k_EnableTunerI2C(int)
    private: void __thiscall CDVBFrontend::o7k_InitOTI7K(int)
    private: void __thiscall CDVBFrontend::RetrieveTPS(char const *,struct CDVBFrontend::_TYPE_TPS &)
    private: void __thiscall CDVBFrontend::SetBER_Exp(unsigned long)
    private: void __thiscall CDVBFrontend::SetFinePWM(unsigned short)
    private: void __thiscall CDVBFrontend::SetPWM(unsigned char)
    private: void __thiscall CDVBFrontend::SetQAM(enum CDVBFrontend::_QAM_TYPE)
    private: void __thiscall CDVBFrontend::SetSTV0299Search(bool)
    private: void __thiscall CDVBFrontend::SetViterbi(enum CDVBFrontend::_VITERBI_TYPE)
    private: void __thiscall CDVBFrontend::StoreTPS(char const *,struct CDVBFrontend::_TYPE_TPS)
    private: void __thiscall CDVBFrontend::TunerI2CEnable(void)
    private: void __thiscall CDVBPsi::ProcessSrvData(unsigned char *,int)
    private: void __thiscall CDVBPsi::TSCallback(int,unsigned char,unsigned char *,unsigned long,unsigned char)
    private: void __thiscall CDVBRecPlay::TSCallback(int,unsigned char,unsigned char *,unsigned long,unsigned char)
    private: void __thiscall CDVBRecPlayFile::ClearVidBuff(void)
    private: void __thiscall CDVBRecPlayFile::GetRecordPTS(unsigned char *)
    private: void __thiscall CDVBRecPlayFile::SendStatusMessage(void)
    private: void __thiscall CDVBRecPlayFile::SetRecordPTS(unsigned char *,unsigned long)
    private: void __thiscall CDVBRemoteControl::TSCallback(int,unsigned char,unsigned char *,unsigned long,unsigned char)
    private: void __thiscall CDVBTeletext::TSCallback(int,unsigned char,unsigned char *,unsigned long,unsigned char)
    private: void __thiscall CDVBTSFilter::TSCallback(int,unsigned char,unsigned char *,unsigned long,unsigned char)
    protected: static unsigned short CDVBCommon::m_wDevIdx
    protected: static void * CDVBCommon::m_hDevice
    protected: virtual void __thiscall CDVBComnIF::OnCAStatus(unsigned char,unsigned char,unsigned short)
    protected: virtual void __thiscall CDVBComnIF::OnClearReplace(unsigned char,unsigned char)
    protected: virtual void __thiscall CDVBComnIF::OnDisplayList(unsigned char,unsigned short,char *,unsigned short)
    protected: virtual void __thiscall CDVBComnIF::OnDisplayMenu(unsigned char,unsigned short,char *,unsigned short)
    protected: virtual void __thiscall CDVBComnIF::OnDisplayString(unsigned char,char *,unsigned short)
    protected: virtual void __thiscall CDVBComnIF::OnInputRequest(unsigned char,int,unsigned char,unsigned long)
    protected: virtual void __thiscall CDVBComnIF::OnLscConnect(unsigned char)
    protected: virtual void __thiscall CDVBComnIF::OnLscDisconnect(unsigned char)
    protected: virtual void __thiscall CDVBComnIF::OnLscEnquireStatus(unsigned char)
    protected: virtual void __thiscall CDVBComnIF::OnLscGetNextBuffer(unsigned char,unsigned char)
    protected: virtual void __thiscall CDVBComnIF::OnLscSetDescriptor(unsigned char,struct CDVBComnIF::_typ_ConnectionDesc *)
    protected: virtual void __thiscall CDVBComnIF::OnLscSetParams(unsigned char,unsigned char,unsigned char)
    protected: virtual void __thiscall CDVBComnIF::OnLscTransmitBuffer(unsigned char,unsigned char,unsigned char *,unsigned short)
    protected: virtual void __thiscall CDVBComnIF::OnReplace(unsigned char,unsigned char,unsigned short,unsigned short)
    protected: virtual void __thiscall CDVBComnIF::OnSlotStatus(unsigned char,unsigned char,struct CDVBComnIF::_typ_SlotInfo *)
    protected: virtual void __thiscall CDVBComnIF::OnSwitchOsdOff(unsigned char)
    protected: virtual void __thiscall CDVBComnIF::OnTune(unsigned char,unsigned short,unsigned short,unsigned short,unsigned short)
    protected: virtual void __thiscall CDVBFilterToFile::OnDataArrival(unsigned char *,int)
    protected: virtual void __thiscall CDVBRemoteControl::OnRemoteControlCode(unsigned char *,int)
    protected: virtual void __thiscall CDVBTeletext::OnTTXPage(unsigned char *,int)
    protected: virtual void __thiscall CDVBTSFilter::OnDataArrival(unsigned char *,int)
    protected: virtual void __thiscall CUSBRemoteControl::OnRC5Code(unsigned short)
    protected: virtual void __thiscall CUSBRemoteControl::OnRemoteControlCode(unsigned char *,int)
    public: __thiscall CDVBAVControl::CDVBAVControl(class CDVBAVControl const &)
    public: __thiscall CDVBAVControl::CDVBAVControl(void)
    public: __thiscall CDVBBoardControl::CDVBBoardControl(class CDVBBoardControl const &)
    public: __thiscall CDVBBoardControl::CDVBBoardControl(void)
    public: __thiscall CDVBComnIF::CDVBComnIF(void)
    public: __thiscall CDVBFilterToFile::CDVBFilterToFile(void)
    public: __thiscall CDVBFrontend::CDVBFrontend(void)
    public: __thiscall CDVBOsd::CDVBOsd(class CDVBOsd const &)
    public: __thiscall CDVBOsd::CDVBOsd(void)
    public: __thiscall CDVBPsi::CDVBPsi(void)
    public: __thiscall CDVBRecPlay::CDVBRecPlay(void)
    public: __thiscall CDVBRecPlayFile::CDVBRecPlayFile(void)
    public: __thiscall CDVBRecPlayPES::CDVBRecPlayPES(void)
    public: __thiscall CDVBRemoteControl::CDVBRemoteControl(void)
    public: __thiscall CDVBTeletext::CDVBTeletext(void)
    public: __thiscall CDVBTSFilter::CDVBTSFilter(unsigned long)
    public: __thiscall CDVBTSFilter::CDVBTSFilter(void)
    public: __thiscall CDVBVideoDisplay::CDVBVideoDisplay(class CDVBVideoDisplay const &)
    public: __thiscall CDVBVideoDisplay::CDVBVideoDisplay(int)
    public: __thiscall CUSBRemoteControl::CUSBRemoteControl(void)
    public: class CDVBAVControl & __thiscall CDVBAVControl::operator=(class CDVBAVControl const &)
    public: class CDVBBoardControl & __thiscall CDVBBoardControl::operator=(class CDVBBoardControl const &)
    public: class CDVBCommon & __thiscall CDVBCommon::operator=(class CDVBCommon const &)
    public: class CDVBOsd & __thiscall CDVBOsd::operator=(class CDVBOsd const &)
    public: class CDVBVideoDisplay & __thiscall CDVBVideoDisplay::operator=(class CDVBVideoDisplay const &)
    public: enum CDVBAVControl::_AB_CHANNELS __thiscall CDVBAVControl::GetAudioChannel(void)
    public: enum CDVBAVControl::_VIDEOSTANDARD __thiscall CDVBAVControl::GetVideoStandard(void)
    public: enum CDVBFrontend::_FRONTEND_TYPE __thiscall CDVBFrontend::GetType(void)
    public: enum CDVBPsi::_typ_PSI_STATE __thiscall CDVBPsi::GetScanningState(void)
    public: enum CDVBPsi::_typ_PSI_STATE __thiscall CDVBPsi::Start(unsigned short,int)
    public: enum CDVBRecPlay::_REC_PLAY_FORMAT __thiscall CDVBRecPlay::GetRecPlayFormat(void)
    public: enum CDVBRecPlay::_REC_PLAY_MODE __thiscall CDVBRecPlay::GetRecPlayMode(void)
    public: enum CDVBRemoteControl::IR_TYPE __thiscall CDVBRemoteControl::GetIR_Type(void)
    public: enum CUSBRemoteControl::IR_TYPE __thiscall CUSBRemoteControl::GetIR_Type(void)
    public: enum DVB_ERROR __thiscall CDVBAVControl::GetAudioDecoderStatus(unsigned char &,unsigned long &)
    public: enum DVB_ERROR __thiscall CDVBAVControl::GetSTC(unsigned char &,unsigned long &)
    public: enum DVB_ERROR __thiscall CDVBAVControl::GetVideoDecoderStatus(struct CDVBAVControl::_VIDEOSTATE &)
    public: enum DVB_ERROR __thiscall CDVBAVControl::Init(int)
    public: enum DVB_ERROR __thiscall CDVBAVControl::LoopCDAudio(int)
    public: enum DVB_ERROR __thiscall CDVBAVControl::ReadStereo(enum CDVBAVControl::_MSPSound &)
    public: enum DVB_ERROR __thiscall CDVBAVControl::SetAC3PID(unsigned short)
    public: enum DVB_ERROR __thiscall CDVBAVControl::SetADSwitch(enum CDVBAVControl::DEVICE_INPUT)
    public: enum DVB_ERROR __thiscall CDVBAVControl::SetAspectRatio(enum CDVBAVControl::_TYPE_MONITOR_AR)
    public: enum DVB_ERROR __thiscall CDVBAVControl::SetAudioChannel(enum CDVBAVControl::_AB_CHANNELS)
    public: enum DVB_ERROR __thiscall CDVBAVControl::SetAudioMute(int)
    public: enum DVB_ERROR __thiscall CDVBAVControl::SetAudioPID(unsigned short)
    public: enum DVB_ERROR __thiscall CDVBAVControl::SetAudioWide(int)
    public: enum DVB_ERROR __thiscall CDVBAVControl::SetFastBlank(unsigned char)
    public: enum DVB_ERROR __thiscall CDVBAVControl::SetMainSwitch(int)
    public: enum DVB_ERROR __thiscall CDVBAVControl::SetPictureParams(unsigned char,unsigned char,unsigned char)
    public: enum DVB_ERROR __thiscall CDVBAVControl::SetPIDs(unsigned short,unsigned short,unsigned short)
    public: enum DVB_ERROR __thiscall CDVBAVControl::SetPrefStretchMode(enum CDVBAVControl::_TYPE_STRETCH_MODE)
    public: enum DVB_ERROR __thiscall CDVBAVControl::SetSlowBlank(unsigned char)
    public: enum DVB_ERROR __thiscall CDVBAVControl::SetStandard(enum CDVBAVControl::_MSPSoundStd)
    public: enum DVB_ERROR __thiscall CDVBAVControl::SetStereo(enum CDVBAVControl::_MSPSound)
    public: enum DVB_ERROR __thiscall CDVBAVControl::SetTrebleBass(int,int)
    public: enum DVB_ERROR __thiscall CDVBAVControl::SetVideoOutputMode(enum CDVBAVControl::_VIDEOOUTPUTMODE)
    public: enum DVB_ERROR __thiscall CDVBAVControl::SetVideoPID(unsigned short)
    public: enum DVB_ERROR __thiscall CDVBAVControl::SetVideoStandard(enum CDVBAVControl::_VIDEOSTANDARD)
    public: enum DVB_ERROR __thiscall CDVBAVControl::SetVideoTestMode(enum CDVBAVControl::_VIDEOTESTMODE)
    public: enum DVB_ERROR __thiscall CDVBAVControl::SetVolume(unsigned char,unsigned char)
    public: enum DVB_ERROR __thiscall CDVBBoardControl::BootARM(class CString *)
    public: enum DVB_ERROR __thiscall CDVBBoardControl::BootARMnew(class CString *)
    public: enum DVB_ERROR __thiscall CDVBBoardControl::EnableDataDMA(int)
    public: enum DVB_ERROR __thiscall CDVBBoardControl::Get_IP_SM_BP(unsigned long &,unsigned long &,unsigned short &)
    public: enum DVB_ERROR __thiscall CDVBBoardControl::GetBEVersion(struct CDVBBoardControl::_BE_VERSION &)
    public: enum DVB_ERROR __thiscall CDVBBoardControl::GetMACAddress(unsigned long &,unsigned long &)
    public: enum DVB_ERROR __thiscall CDVBBoardControl::GetMulticastList(struct CDVBBoardControl::_MULTICAST_LIST &)
    public: enum DVB_ERROR __thiscall CDVBBoardControl::GetSubDeviceIDs(unsigned short &,unsigned short &)
    public: enum DVB_ERROR __thiscall CDVBBoardControl::GetVersions(unsigned long &,unsigned long &,unsigned long &)
    public: enum DVB_ERROR __thiscall CDVBBoardControl::ResetInit(void)
    public: enum DVB_ERROR __thiscall CDVBBoardControl::Saa7146RegDump(unsigned long *)
    public: enum DVB_ERROR __thiscall CDVBComnIF::Answer(unsigned char,char *,unsigned char)
    public: enum DVB_ERROR __thiscall CDVBComnIF::AskRelease(void)
    public: enum DVB_ERROR __thiscall CDVBComnIF::Close(void)
    public: enum DVB_ERROR __thiscall CDVBComnIF::CloseMMI(unsigned char)
    public: enum DVB_ERROR __thiscall CDVBComnIF::CommsReply(unsigned char,unsigned char,unsigned char)
    public: enum DVB_ERROR __thiscall CDVBComnIF::DataReceived(unsigned char,unsigned char,unsigned char *,unsigned short)
    public: enum DVB_ERROR __thiscall CDVBComnIF::EnterModuleMenu(unsigned char)
    public: enum DVB_ERROR __thiscall CDVBComnIF::GetCIVersion(class CString &,class CString &)
    public: enum DVB_ERROR __thiscall CDVBComnIF::GetSlotStatus(unsigned char)
    public: enum DVB_ERROR __thiscall CDVBComnIF::MenuAnswer(unsigned char,unsigned char)
    public: enum DVB_ERROR __thiscall CDVBComnIF::Open(void)
    public: enum DVB_ERROR __thiscall CDVBComnIF::ReadPSIFast(unsigned short)
    public: enum DVB_ERROR __thiscall CDVBComnIF::SendTime(void)
    public: enum DVB_ERROR __thiscall CDVBComnIF::SetProgram(unsigned short)
    public: enum DVB_ERROR __thiscall CDVBFilterToFile::StartFilter(enum CDVBTSFilter::FILTERTYPE,unsigned short,unsigned char *,unsigned char *,unsigned char)
    public: enum DVB_ERROR __thiscall CDVBFilterToFile::StopFilter(void)
    public: enum DVB_ERROR __thiscall CDVBFrontend::GetAntennaPower(unsigned long &)
    public: enum DVB_ERROR __thiscall CDVBFrontend::GetChannel(struct CDVBFrontend::_CHANNEL_TYPE &)
    public: enum DVB_ERROR __thiscall CDVBFrontend::GetState(int &,struct CDVBFrontend::_SIGNAL_TYPE *,struct CDVBFrontend::_LOCK_STATE *)
    public: enum DVB_ERROR __thiscall CDVBFrontend::Init(void)
    public: enum DVB_ERROR __thiscall CDVBFrontend::SendDiSEqCMsg(unsigned char *,unsigned char,unsigned char)
    public: enum DVB_ERROR __thiscall CDVBFrontend::SendDiSEqCMsg(unsigned char,int,int,int,int,unsigned char)
    public: enum DVB_ERROR __thiscall CDVBFrontend::SetAntennaPower(int)
    public: enum DVB_ERROR __thiscall CDVBFrontend::SetChannel(struct CDVBFrontend::_CHANNEL_TYPE,int)
    public: enum DVB_ERROR __thiscall CDVBOsd::BlitBitmap(unsigned short,unsigned short,unsigned short,unsigned short)
    public: enum DVB_ERROR __thiscall CDVBOsd::BringToTop(unsigned char)
    public: enum DVB_ERROR __thiscall CDVBOsd::CreateOSDWindow(unsigned char,enum CDVBOsd::_DISPTYPE,unsigned short,unsigned short)
    public: enum DVB_ERROR __thiscall CDVBOsd::DestroyOSDWindow(unsigned char)
    public: enum DVB_ERROR __thiscall CDVBOsd::DrawBlock(unsigned char,unsigned short,unsigned short,unsigned short,unsigned short,unsigned short)
    public: enum DVB_ERROR __thiscall CDVBOsd::DrawLine(unsigned char,unsigned short,unsigned short,unsigned short,unsigned short,unsigned short)
    public: enum DVB_ERROR __thiscall CDVBOsd::HideWindow(unsigned char)
    public: enum DVB_ERROR __thiscall CDVBOsd::LoadBMP(class CString const &)
    public: enum DVB_ERROR __thiscall CDVBOsd::MoveWindowAbs(unsigned char,unsigned short,unsigned short)
    public: enum DVB_ERROR __thiscall CDVBOsd::MoveWindowRel(unsigned char,unsigned short,unsigned short)
    public: enum DVB_ERROR __thiscall CDVBOsd::ReleaseBitmap(void)
    public: enum DVB_ERROR __thiscall CDVBOsd::ResetBlend(unsigned char)
    public: enum DVB_ERROR __thiscall CDVBOsd::SetBlend_(unsigned char,enum CDVBOsd::_OSDPALTYPE,unsigned short,unsigned char)
    public: enum DVB_ERROR __thiscall CDVBOsd::SetColor_(unsigned char,enum CDVBOsd::_OSDPALTYPE,unsigned short,unsigned short,unsigned short)
    public: enum DVB_ERROR __thiscall CDVBOsd::SetColorBlend(unsigned char)
    public: enum DVB_ERROR __thiscall CDVBOsd::SetFont(unsigned char,unsigned char,unsigned short,unsigned short)
    public: enum DVB_ERROR __thiscall CDVBOsd::SetWindowBlend(unsigned char,unsigned char)
    public: enum DVB_ERROR __thiscall CDVBOsd::SetWindowTrans(unsigned char,int)
    public: enum DVB_ERROR __thiscall CDVBOsd::WriteText(unsigned char,unsigned short,unsigned short,unsigned char,char *)
    public: enum DVB_ERROR __thiscall CDVBPsi::Close(void)
    public: enum DVB_ERROR __thiscall CDVBPsi::GetPrgInfos(unsigned short,struct CDVBPsi::_typ_IF_ProgramTableEntry &)
    public: enum DVB_ERROR __thiscall CDVBPsi::GetTsInfos(struct CDVBPsi::_typ_IF_TS_Infos &)
    public: enum DVB_ERROR __thiscall CDVBPsi::Open(void)
    public: enum DVB_ERROR __thiscall CDVBPsi::Stop(int)
    public: enum DVB_ERROR __thiscall CDVBRecPlay::Playback(enum CDVBRecPlay::_REC_PLAY_FORMAT,unsigned short)
    public: enum DVB_ERROR __thiscall CDVBRecPlay::PlaybackFast(int)
    public: enum DVB_ERROR __thiscall CDVBRecPlay::PlaybackPause(void)
    public: enum DVB_ERROR __thiscall CDVBRecPlay::PlaybackSlow(unsigned char)
    public: enum DVB_ERROR __thiscall CDVBRecPlay::Record(enum CDVBRecPlay::_REC_PLAY_FORMAT)
    public: enum DVB_ERROR __thiscall CDVBRecPlay::Stop(void)
    public: enum DVB_ERROR __thiscall CDVBRemoteControl::SetRemoteControl(enum CDVBRemoteControl::IR_TYPE,unsigned short)
    public: enum DVB_ERROR __thiscall CDVBTeletext::TTXOff(void)
    public: enum DVB_ERROR __thiscall CDVBTeletext::TTXOn(unsigned short)
    public: enum DVB_ERROR __thiscall CDVBTSFilter::ResetFilter(void)
    public: enum DVB_ERROR __thiscall CDVBTSFilter::SetFilter(enum CDVBTSFilter::FILTERTYPE,unsigned short,unsigned char *,unsigned char *,unsigned char)
    public: enum DVB_ERROR __thiscall CDVBTSFilter::SetWinSockFilter(enum CDVBTSFilter::FILTERTYPE,unsigned short,unsigned char *,unsigned char *,unsigned char)
    public: enum DVB_ERROR __thiscall CDVBVideoDisplay::GetPictureParams(unsigned char &,unsigned char &,unsigned char &)
    public: enum DVB_ERROR __thiscall CDVBVideoDisplay::SetPictureParams(unsigned char,unsigned char,unsigned char)
    public: enum DVB_ERROR __thiscall CUSBRemoteControl::SetRemoteControl(enum CUSBRemoteControl::IR_TYPE,unsigned short)
    public: int __thiscall CDVBBoardControl::SetVideoCaptureInputParams(enum CDVBBoardControl::_VIDEO_CAP_MODE)
    public: int __thiscall CDVBBoardControl::SetVideoCaptureInputParamsExt(enum CDVBBoardControl::_VIDEO_CAP_MODE,int,int,int,int)
    public: int __thiscall CDVBComnIF::ConvertCharBuf(class CString &,int)
    public: int __thiscall CDVBFrontend::GetTPS(struct CDVBFrontend::_TYPE_TPS *)
    public: int __thiscall CDVBRecPlay::ReadPacket(unsigned char *,unsigned long,int)
    public: int __thiscall CDVBRecPlay::WritePacket(unsigned char *,unsigned long,int)
    public: int __thiscall CDVBRecPlayFile::Close(void)
    public: int __thiscall CDVBRecPlayFile::Open(class CString const &,enum CDVBRecPlay::_REC_PLAY_FORMAT,int)
    public: int __thiscall CDVBRecPlayFile::Open(class CString const &,enum CDVBRecPlayFile::_REC_PLAY_FILE_FORMAT,enum CDVBRecPlayFile::TYPE_MODUS,int)
    public: int __thiscall CDVBRecPlayFile::Playback(unsigned long)
    public: int __thiscall CDVBRecPlayFile::PlaybackFast(int)
    public: int __thiscall CDVBRecPlayFile::PlaybackPause(void)
    public: int __thiscall CDVBRecPlayFile::PlaybackSlow(unsigned char)
    public: int __thiscall CDVBRecPlayFile::Record(void)
    public: int __thiscall CDVBRecPlayFile::Stop(void)
    public: int __thiscall CDVBRecPlayPES::StartPlayback(enum CDVBRecPlay::_REC_PLAY_FORMAT)
    public: int __thiscall CDVBRecPlayPES::StartRecord(enum CDVBRecPlay::_REC_PLAY_FORMAT)
    public: int __thiscall CDVBRecPlayPES::StopPlayback(void)
    public: int __thiscall CDVBRecPlayPES::StopRecord(void)
    public: int __thiscall CDVBRecPlayPES::WritePES(unsigned char *,unsigned short)
    public: int __thiscall CDVBTeletext::TTXGetP29_P830(int)
    public: int __thiscall CDVBTeletext::TTXModifySearchTable(unsigned short,unsigned short,unsigned short,enum CDVBTeletext::TTX_REQUEST)
    public: int __thiscall CDVBTSFilter::SOpen(unsigned char,int *)
    public: int __thiscall CDVBVideoDisplay::EnumAnalogCaptureDevices(char *,int)
    public: int __thiscall CDVBVideoDisplay::ExitSAA(void)
    public: int __thiscall CDVBVideoDisplay::GetDDMode(enum CDVBVideoDisplay::DD_MODE &)
    public: int __thiscall CDVBVideoDisplay::GetEventName(char *,int)
    public: int __thiscall CDVBVideoDisplay::GetRatio(enum CDVBVideoDisplay::TV_RATIO &)
    public: int __thiscall CDVBVideoDisplay::GetVGA(struct CDVBVideoDisplay::DD_VGA &)
    public: int __thiscall CDVBVideoDisplay::InitSAA(enum CDVBVideoDisplay::TV_COLOR,enum CDVBVideoDisplay::TV_NORM)
    public: int __thiscall CDVBVideoDisplay::SetSAAValues(unsigned long,int,int,int)
    public: int __thiscall CDVBVideoDisplay::SetTVNormValues(enum CDVBVideoDisplay::TV_NORM,unsigned short,unsigned short,unsigned short,unsigned short)
    public: static char const * __cdecl CDVBCommon::GetAppCloseMessage(void)
    public: static char const * __cdecl CDVBVideoDisplay::GetAnalogCaptureDevices(void)
    public: static enum DVB_ERROR __cdecl CDVBAVControl::GetADSwitchExt(enum CDVBAVControl::DEVICE_INPUT &)
    public: static enum DVB_ERROR __cdecl CDVBAVControl::SetADSwitchExt(enum CDVBAVControl::DEVICE_INPUT)
    public: static enum DVB_ERROR __cdecl CDVBTSFilter::GetFiltersByteCount(unsigned long *,unsigned char)
    public: static int __cdecl CDVBAVControl::GetAnalog(void)
    public: static int __cdecl CDVBCommon::CloseCurrentApp(unsigned short,unsigned long)
    public: static int __cdecl CDVBCommon::GetCurrentDevApp(unsigned short,char const * &,char const * &)
    public: static int __cdecl CDVBCommon::GetDeviceInfo(unsigned short,class CString &,class CString &,class CString &)
    public: static int __cdecl CDVBCommon::GetDeviceRegistryPath(int,class CString &)
    public: static int __cdecl CDVBCommon::IsDrvWDM(void)
    public: static int __cdecl CDVBCommon::IsOpen(void)
    public: static int __cdecl CDVBCommon::OpenDevice(unsigned short,char const *,int)
    public: static int __cdecl CDVBVideoDisplay::StartStopRecord(char const *)
    public: static unsigned short __cdecl CDVBCommon::GetActDeviceIdx(void)
    public: static unsigned short __cdecl CDVBCommon::GetNumberOfDevices(void)
    public: static void * __cdecl CDVBCommon::GetActDeviceHandle(void)
    public: static void * CDVBAVControl::m_this
    public: static void * CDVBVideoDisplay::m_this
    public: static void __cdecl CDVBCommon::CloseDevice(void)
    public: static void __cdecl CDVBVideoDisplay::SetAnalogCaptureDevices(char const *)
    public: struct HWND__ * __thiscall CDVBVideoDisplay::Create(struct HWND__ *,int,int,int,int,unsigned long,int,enum CDVBVideoDisplay::RENDER_MODE,enum CDVBVideoDisplay::DD_MODE,enum CDVBVideoDisplay::TV_NORM,int)
    public: struct HWND__ * __thiscall CDVBVideoDisplay::GetParent(void)
    public: struct HWND__ * __thiscall CDVBVideoDisplay::GetWnd(void)
    public: unsigned __int64 __thiscall CDVBRecPlayFile::GetFilePosition(void)
    public: unsigned char __thiscall CDVBTSFilter::GetFilterID(void)
    public: unsigned long __thiscall CDVBAVControl::GetCapabilities(void)
    public: unsigned long __thiscall CDVBBoardControl::GetValidDrvVersion(void)
    public: unsigned long __thiscall CDVBFilterToFile::GetFileLen(void)
    public: unsigned long __thiscall CDVBFrontend::GetCapabilities(void)
    public: unsigned long __thiscall CDVBFrontend::GetSearchState(void)
    public: unsigned long __thiscall CDVBFrontend::SearchNextChannel(unsigned long,int)
    public: unsigned long __thiscall CDVBRecPlayFile::GetFileSize(void)
    public: unsigned long __thiscall CDVBRecPlayPES::GetByteCount(void)
    public: unsigned long __thiscall CDVBTSFilter::GetByteCount(void)
    public: unsigned long __thiscall CDVBVideoDisplay::GetMemPhysAddress(void *)
    public: unsigned short __thiscall CDVBAVControl::GetAudioPID(void)
    public: unsigned short __thiscall CDVBAVControl::GetPCRPID(void)
    public: unsigned short __thiscall CDVBAVControl::GetVideoPID(void)
    public: unsigned short __thiscall CDVBPsi::FormatNameString(char *,char *,int)
    public: virtual __thiscall CDVBAVControl::~CDVBAVControl(void)
    public: virtual __thiscall CDVBBoardControl::~CDVBBoardControl(void)
    public: virtual __thiscall CDVBComnIF::~CDVBComnIF(void)
    public: virtual __thiscall CDVBFilterToFile::~CDVBFilterToFile(void)
    public: virtual __thiscall CDVBFrontend::~CDVBFrontend(void)
    public: virtual __thiscall CDVBOsd::~CDVBOsd(void)
    public: virtual __thiscall CDVBPsi::~CDVBPsi(void)
    public: virtual __thiscall CDVBRecPlay::~CDVBRecPlay(void)
    public: virtual __thiscall CDVBRecPlayFile::~CDVBRecPlayFile(void)
    public: virtual __thiscall CDVBRecPlayPES::~CDVBRecPlayPES(void)
    public: virtual __thiscall CDVBRemoteControl::~CDVBRemoteControl(void)
    public: virtual __thiscall CDVBTeletext::~CDVBTeletext(void)
    public: virtual __thiscall CDVBTSFilter::~CDVBTSFilter(void)
    public: virtual __thiscall CDVBVideoDisplay::~CDVBVideoDisplay(void)
    public: virtual __thiscall CUSBRemoteControl::~CUSBRemoteControl(void)
    public: virtual void __thiscall CDVBRecPlayPES::OnMP2AudioArrival(unsigned char *,int)
    public: virtual void __thiscall CDVBRecPlayPES::OnPESAudio(unsigned char *,int)
    public: virtual void __thiscall CDVBRecPlayPES::OnPESRecord(unsigned char *,int)
    public: virtual void __thiscall CDVBRecPlayPES::OnPESVideo(unsigned char *,int)
    public: virtual void __thiscall CDVBRecPlayPES::OnPVAPacketArrival(unsigned char *,int)
    public: void * __thiscall CDVBVideoDisplay::GetDirectDrawPointer(void)
    public: void __thiscall CDVBBoardControl::ResetAllSlaveFilters(void)
    public: void __thiscall CDVBFilterToFile::SetFileParams(class CString const &,unsigned int)
    public: void __thiscall CDVBFrontend::GetBandwidthAndGap(unsigned long &,unsigned long &,unsigned long &)
    public: void __thiscall CDVBFrontend::GetBandwidthRange(enum CDVBFrontend::_BANDWITH_TYPE &,enum CDVBFrontend::_BANDWITH_TYPE &)
    public: void __thiscall CDVBFrontend::GetFrequencyRange(unsigned long &,unsigned long &)
    public: void __thiscall CDVBFrontend::GetSymbolRateRange(unsigned long &,unsigned long &)
    public: void __thiscall CDVBFrontend::StopSearch(void)
    public: void __thiscall CDVBRecPlayFile::GetStatus(unsigned long &,unsigned long &,unsigned long &,enum CDVBRecPlay::_REC_PLAY_MODE &,enum CDVBRecPlay::_REC_PLAY_FORMAT &)
    public: void __thiscall CDVBRecPlayFile::GetStatus(unsigned long &,unsigned long &,unsigned long &,enum CDVBRecPlay::_REC_PLAY_MODE &,enum CDVBRecPlayFile::_REC_PLAY_FILE_FORMAT &)
    public: void __thiscall CDVBRecPlayFile::PauseRecording(void)
    public: void __thiscall CDVBRecPlayFile::SetStatusChangedMessage(struct HWND__ *,unsigned int,int)
    public: void __thiscall CDVBRecPlayPES::InitClearBuffer(void)
    public: void __thiscall CDVBRecPlayPES::PauseRecording(void)
    public: void __thiscall CDVBTSFilter::SClose(void)
    public: void __thiscall CDVBVideoDisplay::`default constructor closure'(void)
    public: void __thiscall CDVBVideoDisplay::Close(void)
    public: void __thiscall CDVBVideoDisplay::PurgeCaption(void)
    public: void __thiscall CDVBVideoDisplay::SetBOB(int)
    public: void __thiscall CDVBVideoDisplay::SetCaption(void)
    public: void __thiscall CDVBVideoDisplay::SetFriendWindow(struct HWND__ *)
    public: void __thiscall CDVBVideoDisplay::SetMAX(int)
    public: void __thiscall CDVBVideoDisplay::SetMove(int)
    public: void __thiscall CDVBVideoDisplay::SetRatio(enum CDVBVideoDisplay::TV_RATIO)
    public: void __thiscall CDVBVideoDisplay::SetShowStatus(int)
    void __cdecl InitDvbApiDll(void)

  4. #4
    Expert éminent
    Avatar de Paul TOTH
    Homme Profil pro
    Freelance
    Inscrit en
    Novembre 2002
    Messages
    8 964
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 55
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Freelance
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Novembre 2002
    Messages : 8 964
    Par défaut
    c'est une DLL qui publie les méthodes d'un objet C++

    il est techniquement possible de réutiliser cela directement dans Delphi à condition de gérer dans Delphi toute la partie du code qui se trouve dans le .H
    ça ne sera pas un vrai objet au niveau Delphi mais plus un record qui doit avoir la bonne taille et doit invoquer les bonnes fonctions avec les bons paramètres...c'est donc "techniquement possible" mais un poil complexe à mettre en oeuvre

    l'autre solution est d'utiliser un wrapper C, donc un code C++ qui publie des méthodes C classiques pour invoquer l'objet

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
     
    void* CreateObject() {
      // code qui crée l'objet, on retourne son pointeur
    }
    void ObjectMethod1(void* obj) {
      (object)obj->Method1; // invoque la méthode 1 de l'objet
    }
    ce qui demande un minimum de connaissance en C

    NB: ce wrapper peut-être une DLL ou un code compilé un .OBJ et intégré dans le projet Delphi par un {$LINK fichier.obj}
    Developpez.com: Mes articles, forum FlashPascal
    Entreprise: Execute SARL
    Le Store Excute Store

  5. #5
    Membre confirmé
    Inscrit en
    Août 2007
    Messages
    159
    Détails du profil
    Informations forums :
    Inscription : Août 2007
    Messages : 159
    Par défaut
    Citation Envoyé par Paul TOTH Voir le message
    c'est une DLL qui publie les méthodes d'un objet C++

    il est techniquement possible de réutiliser cela directement dans Delphi à condition de gérer dans Delphi toute la partie du code qui se trouve dans le .H
    ça ne sera pas un vrai objet au niveau Delphi mais plus un record qui doit avoir la bonne taille et doit invoquer les bonnes fonctions avec les bons paramètres...c'est donc "techniquement possible" mais un poil complexe à mettre en oeuvre

    l'autre solution est d'utiliser un wrapper C, donc un code C++ qui publie des méthodes C classiques pour invoquer l'objet

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
     
    void* CreateObject() {
      // code qui crée l'objet, on retourne son pointeur
    }
    void ObjectMethod1(void* obj) {
      (object)obj->Method1; // invoque la méthode 1 de l'objet
    }
    ce qui demande un minimum de connaissance en C

    NB: ce wrapper peut-être une DLL ou un code compilé un .OBJ et intégré dans le projet Delphi par un {$LINK fichier.obj}

    ben la j'ai un grand problème ,, je suis limiter on C pour ne pas dire nul
    et je n'ai pas les .H de la dll je n'ai que la dll

Discussions similaires

  1. Utilisation une Dll en c avec delphi
    Par yann87 dans le forum API, COM et SDKs
    Réponses: 1
    Dernier message: 22/12/2008, 17h14
  2. Peut on utiliser une DLL DotNEt (C#) dans un programme en C?
    Par Jayceblaster dans le forum Débuter
    Réponses: 12
    Dernier message: 12/02/2008, 18h46
  3. Utiliser un DLL VB.NET dans du C++ non manage
    Par Guyzeug dans le forum VB.NET
    Réponses: 5
    Dernier message: 22/01/2008, 14h08
  4. utiliser une DLL 2.0 dans un projet 1.1
    Par Spoonnny dans le forum Windows Forms
    Réponses: 6
    Dernier message: 14/01/2008, 14h22
  5. [C#] Comment utiliser des dll win 32 dans un projet .NET
    Par Mickey.jet dans le forum Delphi .NET
    Réponses: 2
    Dernier message: 31/05/2005, 14h45

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo