Filtre Photofiltre en Purebasic ?

Programmation d'applications complexes
Avatar de l’utilisateur
DjPoke
Messages : 121
Inscription : mar. 02/nov./2010 13:53
Localisation : Corte, Corse, France
Contact :

Re: Filtre Photofiltre en Purebasic ?

Message par DjPoke »

impeccable, merci. :)

EDIT:
J'ai mis un messagerequester() au début de la procedure "DllEntryPoint", mais il ne s'affiche pas.
Il doit y avoir probablement un problème ici je pense. Je vais chercher un peu.

EDIT2:

En changeant deux trois lignes, ça passe, mais le fichier .ico n'est pas pris.

Code : Tout sélectionner

Structure PluginHeader
  *Caption.c
  *Version.c
  PluginType.i
  *Author.c
  *Commentaire.c
  *Reserved.c
  Flags.i
EndStructure

Global MyPluginHeader.PluginHeader
Global MyPluginStruct.PluginStruct

;ProcedureDLL.b DllEntryPoint(hinstDll,dwReason,plvReserved)
ProcedureDLL.b AttachProcess(hinstDll)  

MyPluginHeader\Caption     = AllocateMemory(#MaxShortStr+1)
MyPluginHeader\Version     = AllocateMemory(#MaxShortStr+1)
MyPluginHeader\PluginType  = #PT_FILTER
MyPluginHeader\Author      = AllocateMemory(#MaxShortStr+1)
MyPluginHeader\Commentaire = AllocateMemory(#MaxShortStr+1)
MyPluginHeader\Reserved    = AllocateMemory(#MaxShortStr+1)
MyPluginHeader\Flags       = #MF_RGB_COLORS | #MF_NEED_IMAGE
Répondre