001    /*
002     * To change this template, choose Tools | Templates
003     * and open the template in the editor.
004     */
005    
006    package org.bridj.cpp.mfc;
007    
008    import org.bridj.Pointer;
009    import org.bridj.ann.Virtual;
010    
011    /**
012     *
013     * @author Olivier
014     */
015    public class CWnd extends MFCObject {
016        @Virtual
017        public native int SendMessage(int message, int wParam, int lParam);
018    
019        @Virtual
020        public native void SetWindowText(Pointer<CString> lpszString);
021    }