typedef unsigned long   HRGBCAPTURE, *PHRGBCAPTURE; 如何将这段C++代码,转换成delphi代码

解决方案 »

  1.   


    HRGBCAPTURE = ULONG;
    PHRGBCAPTURE = ^HRGBCAPTURE;貌似是这样
      

  2.   

    HRGBCAPTURE = ULONG;
    PHRGBCAPTURE = ^HRGBCAPTURE;
      

  3.   

    HRGBCAPTURE : Longword
    PHRGBCAPTURE : PLongWord
      

  4.   

    typedef  void (CALLBACK RGBNOTIFYFN)(PVOID NotifyArg, 
                                        UINT   uMsg, 
                                        WPARAM wParam,
                                        LPARAM lParam); 那这句怎么转成delphi?