Undeclared identifier active x WMP

Hello,
I am using Windows Media Player active x in my program, i recently upgrade from CVI 2012 to CVI 2013, when i try to compile the files, i get errors like
"error: use of undeclared identifier "WMPLibObj_IWMPControls" "
and
"error: implicit declaration of function "WMPLib_IWMPControlsplay" is invalid in C99. Make sure that you include the function prototype."
a popup box with the following message appear
"The following include statements are needed in "IHM_panel_video.c",
#include "wmp.h"
Do you want to add them after the include statement for wmp.h?"
the fact is the include of wmp.h is already done in "IHM_panel_video.c". if i click yes, it just repeat the include statement and the errors are still there.
I also try to rebuild the activex with the same issue.

Hello ThomasCauchy,
Would you be able to post your application or the part of your application which makes use of the Windows Media Player ActiveX server here so we can try to reproduce it? This issue sounds very similar to the one described in KB 6HOA7ECN: Why Does LabWindows™/CVI™ 2013 Warn Me to Include nivision.h When It Is Already Include.... 
Thanks,
Daniel
Daniel D.
National Instruments
Automated Test Software R&D

Similar Messages

  • Undeclared Identifier Error for some 'PDFEdit_Layer' Methods

    Hi,
    I am getting the errors for the some Methods in PDFEdit_Layer ,
    1. Code -> PDEText pdeText = PDETextCreate();
    Error 3 error C2065: 'PDETextCreateSELPROTO' : undeclared identifier
    2. Code -> sysFont = PDFindSysFont(&pdeFontAttrs,sizeof(PDEFontAttrs), 0);
    Error 5 error C2065: 'PDFindSysFontSELPROTO' : undeclared identifier
    3. Code -> pdeFont = PDEFontCreateFromSysFont(sysFont, kPDEFontDoNotEmbed);
    Error 9 error C2065: 'PDEFontCreateFromSysFontSELPROTO' : undeclared identifier
    4. Code -> pdeColorSpace = PDEColorSpaceCreateFromName(ASAtomFromString("DeviceGray"));
    Error 11 error C2065: 'PDEColorSpaceCreateFromNameSELPROTO' : undeclared identifier
    5. Code -> PDETextAdd (pdeText, kPDETextRun, 0,(ASUns8 *)Title, strlen(Title), pdeFont, &gState,sizeof(gState), NULL, 0, &textMatrix, NULL);
    Error 15 error C2065: 'PDETextAddSELPROTO' : undeclared identifier
    Irrespective of including below header files i am the above Errors.
    #include "CoreExpT.h"
    #include "PDSExpT.h"
    #include "PEExpT.h"
    #include "PERProcs.h"
    #include "CorCalls.h"
    #include "PDCalls.h"
    #include "PERCalls.h"
    #include "PEWCalls.h"
    #include "PDSExpT.h"
    #include "PSFCalls.h"
    #include "PDSysFontExpT.h"
    I tried including the above headers then also i am getting the errors as shown above. Please let me know why is this happening, am i missing something ??
    Please someone help me, Thanks in advance.
    Regards,
    Chetan.

    This is for Plugin in Acrobat, not for Reader.
    Yes, i have set all proper defines for the project.
    #pragma 
    region [ Headers ]
    #include 
    <string>
    // Acrobat Headers.
    #ifndef 
    MAC_PLATFORM
    #include 
    "PIHeaders.h"
    #endif
    #pragma 
    endregion
    "PIHeaders.h" is having all the required header files for the Methods which i have specified.
    Yes.All this method i find under Samples\SnippetRunner project, i am able to build this project successfully.
    Please let me know what needs to be done for successfull building the solution.Thanks in advance.
    Regards,
    Chetan.

  • Undeclared identifier 'DEFAULT_THREAD_POOL_HANDLE'.

    LabWindows/CVI 8.5
    Trying to teach myself some "thread stuff"
    When I compile I get the error:    Undeclared identifier 'DEFAULT_THREAD_POOL_HANDLE'.
    I figure there's a library I need to include, but I don't see it in the docs.  Help, plz?
    Here is the whole program:
    #include <cvirte.h>        
    #include <userint.h>
    #include <windows.h>
    #include "thread.h"
    #include "globals.h"
    static int panelHandle;
    int __stdcall WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance,
                           LPSTR lpszCmdLine, int nCmdShow)
        if (InitCVIRTE (hInstance, 0, 0) == 0)
            return -1;    /* out of memory */
        if ((panelHandle = LoadPanel (0, "thread.uir", PANEL)) < 0)
            return -1;
        DisplayPanel (panelHandle);
        RunUserInterface ();
        DiscardPanel (panelHandle);
        CmtWaitForThreadPoolFunctionCompletion (DEFAULT_THREAD_POOL_HANDLE, functionID, THREAD_PRIORITY_NORMAL);
        return 0;
    int CVICALLBACK Run (int panel, int control, int event,
            void *callbackData, int eventData1, int eventData2)
        static int    Thread_ID = 0;
        switch (event)
            case EVENT_COMMIT:
                GetCtrlVal( PANEL, PANEL_BINARYSWITCH, &running );
                if( Thread_ID == 0 )
                    CmtScheduleThreadPoolFunction (DEFAULT_THREAD_POOL_HANDLE, DataAcqThreadFunction, NULL, &functionID);
                break;
        return 0;
    int CVICALLBACK Quit (int panel, int control, int event,
            void *callbackData, int eventData1, int eventData2)
        switch (event)
            case EVENT_COMMIT:
                QuitUserInterface (0);
                break;
        return 0;
    int CVICALLBACK DataAcqThreadFunction (void *functionData)
        int clock_div = 0;
        int count = 0;
        while (!running)
                for( clock_div=0 ; clock_div<10000000 ; clock_div++){}
                count++;
                if (count > 10000)
                    count = 0;
                functiondata = count;
        return 0;
    int CVICALLBACK UpdateGauge (int panel, int control, int event,
            void *callbackData, int eventData1, int eventData2)
        switch (event)
            case EVENT_COMMIT:
                SetCtrlVal( PANEL, PANEL_NUMERICGAUGE, functiondata );
                break;
        return 0;
    Solved!
    Go to Solution.

    Never mind, all.  Did a global search on the CVI directories.
    it's in "util.h"

  • Error messgae "VI_EVENT_PXI_INTR" undeclared identifier

    I am writing my code for the PCI-DIO24 in C. I am trying to enable interrupt. When I configure my function as "viEnableEvent (panelHandle, VI_EVENT_PXI_INTR, VI_QUEUE,VI_NULL)"; I get an error saying "VI_EVENT_PXI_INTR": undeclared identifier. I use the visa 3.01 with new patch file.

    Samy,
    You may want to consider posting your question to the Driver Development Kit (DDK) Discussion Forum. Since you are using register-level programming, that forum will probably be of more use to you.
    Good luck with your application.
    Spencer S.

  • Undeclared identifier 'IVI_ATTR_IO_RESOURCE_DESCRIPTOR'

    More or less one year ago I wrote a CVI 6.0 program to control an Agilent 33120A Waveform Generatore, and it has been working OK since now.
    Today I opened the same source code, and if I try to re-compile them I found the error
     Undeclared identifier 'IVI_ATTR_IO_RESOURCE_DESCRIPTOR'
    Probably one of the NI components I updated during this year is giving this problem
    I read this thread, so I checked, and I have the ICP 3.0 installed.
    How can I solve this problem?
    Tks
    Vix
    In claris non fit interpretatio
    Using LV 2013 SP1 on Win 7 64bit
    Using LV 8.2.1 on WinXP SP3
    Using CVI 2012 SP1 on Win 7 64bit, WinXP and WinXP Embedded
    Using CVI 6.0 on Win2k, WinXP and WinXP Embedded

    Hi Vix,
    could you please provide more details on what has changed in the last year? What have you installed/uninstalled and, if you can remember, in which order?
    Have you also checked if ICP support for CVI was added (as explained in the forum you linked)?
    Are you at leat able to run an example?
    A precisation: with CVI 6.0, also ICP 3.1 can be used. You have to follow the indications in this KB.
    Regard.
    Licia

  • ORA-19228: XPST0008 -- undeclared identifier when using more then one var.

    HI Gentlemen,
    Given an XMLTYPE table with only one row. Under the root element there is a <header> and a <body> where the stuff inside the body has a different namespace. When I try to drill down with the statement in p.sql below, I always get
    SQL> @c:\xsl\p
    FROM z
    FEHLER in Zeile 10:
    ORA-19228: XPST0008 - nicht deklarierter Identifier: Präfix 'j' lokaler Name '' (undeclared identifier)
    I also tried to insert a WHERE clause, it always complains with $j. When I am using only one variable, $i, it is OK. XML DB Developer's Guide has examples that are very close to this--they execute A1. CAn you help me where am I wrong?
    Thank you very much, kind regards
    Miklos HERBOLY
    SELECT
       XMLQuery('xquery version "1.0"; (: :)
       declare namespace n1="urn:ehd/001"; (: :)
       declare namespace n2="urn:ehd/go/001"; (: :)
       for $i in /n1:ehd/n1:header
    let $j := /n1:ehd/n1:body/n2:gnr_liste/n2:gnr
       return $i,$j'
       PASSING xml_document
       RETURNING CONTENT) as ziffer
      FROM z
    /

    Hi Miklos,
    You'll need parentheses to indicate that you're returning the sequence of $i and $j :
    xquery version "1.0"; (: :)
    declare namespace n1="urn:ehd/001"; (: :)
    declare namespace n2="urn:ehd/go/001"; (: :)
    for $i in /n1:ehd/n1:header
    let $j := /n1:ehd/n1:body/n2:gnr_liste/n2:gnr
    return ($i, $j)or shorter version (if there's only one header per document) :
    xquery version "1.0"; (: :)
    declare namespace n1="urn:ehd/001"; (: :)
    declare namespace n2="urn:ehd/go/001"; (: :)
      /n1:ehd/n1:header
    , /n1:ehd/n1:body/n2:gnr_liste/n2:gnr
    )

  • How to identify active ABAP objects in the HR R/3 System?

    Hi
    We are in process of doing assessment on HR 4.6C to ECC 6. I need to identify the active abap objects ( Reports/FM's etc. ) in the sytem.  Appreciate if some one can suggest me how to look into the system.
    Rgds
    Peddi

    Try the Transaction code se95.
    Regards,
    Ravi Kanth Talagana

  • I have activated the standard datasource in r/3? how to identify active?

    Hi All,
    i have activated the standard datasource in r/3 ? and i have replicated the same in the bw system and in the source system of r/3 i have replicated it and i can find the data source there ? but how to identify whether the datasource is active in the bw system or not ?
    i cant see a tick mark on the data source does it determine it is active?
    Pls guide me on this?
    thanks
    Pooja

    Hi all,
    I am working on 3.5
    And where can i find the datasource is green or not? it is not assigned to the source system i can identify it?
    i am not able to rightclik on the datasource and see the active version.
    When i right click on the data source i can see this option:
    1. assign infosource
    2. maintain datasource in the source system etc?
    Thanks
    Pooja

  • How to identify activity/ command 'CLOSE' in transaction code CJ02

    Hi,
    I need to implement a check in transaction code - CJ02 when
    command 'CLOSE' is performed to close a WBS Element. This check is being planned to be implemented using BADi - WORKBREAKDOWN_UPDATE using 'AT_SAVE' method.
    However I am unable to capture the command as 'sy-ucomm' is always 'BU' at the time of executing this method.
    Request you to render necessary assistance in this regard. Even I can use any other USEREXITS that is getting called only during closing of WBS Element.
    Steps for simulating/ understanding the problem are as below:
    1. Use Transaction code - CJ02
    2. Specify WBS Element no. - (as available in your system)
    3. Press enter on selction screen & select a WBS Element & branch to
    menu path : Edit -Status- Close
    4. Pres 'Save'
    At this stage in BADi - WORKBREAKDOWN_UPDATE (Business Add-In WBS Elements (BUS2054)) we need to identify this cooand 'CLOSE'.
    It is unclear what ABAP code to be written to capture this
    activity 'CLOSE'.
    Looking forward to hear from you experts.
    Best regards,
    Rajesh G. Kothari

    I'm not an ABAPer but below are some inputs:
    To check/identify if the status is set, goto table JEST, field STAT against the WBS OBJNR will be I0046 (Closed). Also field Status Inactive INACT which will be blank.
    Also check FM-STATUS_CHECK
    We have used below this sequence for changing the WBS status, thought it will be useful for you.
    BAPI_PS_INITIALIZATION
    BAPI_BUS2054_SET_STATUS  (Here we pass the status)
    BAPI_PS_PRECOMMIT
    BAPI_TRANSACTION_COMMIT
    Regards
    Sreenivas

  • How to identify active layer in Visual Composer 7.0

    Hi Experts,
    I am using a model with several layers and a link tree navigation control.
    Is there a way to find out on which of the layers the user currently is?
    For example: If the user opens Tab 3 can I then get the information tab = 3?
    I need this for guard conditions and for a button to open a hyperlink where the url depends on the layer.
    Sincerely
    Markus

    Hi Markus
    Instead of using the Navigation Control "Link Tree" I would set Navigation Control to "None" and model your own navigation with a form view containing buttons to navigate between layers.  You can then use a Data Store with a field called "Tab" and default value Tab1.  When you trigger the event to navigate to other tabs update the Data Store field Tab with the target tab value.  You can then base guard conditions etc. on the Tab value in the Data Store.
    Hope this helps
    Adam

  • Error: 'nNIRLP_lock' undeclared, when install nirlpk.ko

    Hello,
      I try to install nirlpk.ko, and encount some errors when I run make
     error: ‘nNIRLP_lock’ undeclared
     error: unknown field ‘nopage’ specified in initializer
      I have removed "enable_wake", "VM_SHM",and changed "#include linux/config.h" to "#include linux/autoconf.h"
    /home/hanl/NI-DAQ/nimhddk_linux26/Linux26/nirlpk/objects/nirlpk.c:92: warning: type defaults to ‘int’ in declaration of ‘DECLARE_MUTEX’
    /home/hanl/NI-DAQ/nimhddk_linux26/Linux26/nirlpk/objects/nirlpk.c:92: warning: parameter names (without types) in function declaration
    /home/hanl/NI-DAQ/nimhddk_linux26/Linux26/nirlpk/objects/nirlpk.c: In function ‘nNIRLP_pciProbe’:
    /home/hanl/NI-DAQ/nimhddk_linux26/Linux26/nirlpk/objects/nirlpk.c:128: error: ‘nNIRLP_lock’ undeclared (first use in this function)
    /home/hanl/NI-DAQ/nimhddk_linux26/Linux26/nirlpk/objects/nirlpk.c:128: error: (Each undeclared identifier is reported only once
    /home/hanl/NI-DAQ/nimhddk_linux26/Linux26/nirlpk/objects/nirlpk.c:128: error: for each function it appears in.)
    /home/hanl/NI-DAQ/nimhddk_linux26/Linux26/nirlpk/objects/nirlpk.c: In function ‘nNIRLP_pciRemove’:
    /home/hanl/NI-DAQ/nimhddk_linux26/Linux26/nirlpk/objects/nirlpk.c:143: error: ‘nNIRLP_lock’ undeclared (first use in this function)
    /home/hanl/NI-DAQ/nimhddk_linux26/Linux26/nirlpk/objects/nirlpk.c: At top level:
    /home/hanl/NI-DAQ/nimhddk_linux26/Linux26/nirlpk/objects/nirlpk.c:325: error: unknown field ‘nopage’ specified in initializer
    /home/hanl/NI-DAQ/nimhddk_linux26/Linux26/nirlpk/objects/nirlpk.c:326: warning: initialization from incompatible pointer type
    /home/hanl/NI-DAQ/nimhddk_linux26/Linux26/nirlpk/objects/nirlpk.c: In function ‘nNIRLP_getDeviceNumber’:
    /home/hanl/NI-DAQ/nimhddk_linux26/Linux26/nirlpk/objects/nirlpk.c:584: error: ‘nNIRLP_lock’ undeclared (first use in this function)
    /home/hanl/NI-DAQ/nimhddk_linux26/Linux26/nirlpk/objects/nirlpk.c: In function ‘nNIRLP_procRead’:
    /home/hanl/NI-DAQ/nimhddk_linux26/Linux26/nirlpk/objects/nirlpk.c:919: error: ‘nNIRLP_lock’ undeclared (first use in this function)
    /home/hanl/NI-DAQ/nimhddk_linux26/Linux26/nirlpk/objects/nirlpk.c: In function ‘nNIRLP_procLsdaq’:
    /home/hanl/NI-DAQ/nimhddk_linux26/Linux26/nirlpk/objects/nirlpk.c:961: error: ‘nNIRLP_lock’ undeclared (first use in this function)
    make[2]: *** [/home/hanl/NI-DAQ/nimhddk_linux26/Linux26/nirlpk/objects/nirlpk.o] Error 1
    make[1]: *** [_module_/home/hanl/NI-DAQ/nimhddk_linux26/Linux26/nirlpk/objects] Error 2
    make[1]: Leaving directory `/home/hanl/Downloads/linux-2.6.31.12'
    make: *** [objects/nirlpk.ko] Error 2
     Please help me!
     Thank you!

    Hello hanl,
    I believe that you are using a version of the Linux kernel that was not tested with the current Linux 2.6 osinterface.  The osinterface that will ship with the X Series DDK does have these errors addressed. 
    See this thread for information about when the X Series DDK should release.
    http://forums.ni.com/t5/Driver-Development-Kit-DDK/X-Series-support-update/td-p/1145701/page/2
    The problem is that DECLARE_MUTEX has changed to DEFINE_SEMIPHORE (its a pretty trivial change).  Also the vma_operations_struct member, .nopage, has been changed to .fault.  The changes to get the .fault member to work correctly is not trivial and required a little work.  I would recommend waiting for the new DDK to get the fixes.
    I hope this helps!
    Steven T.

  • [SOLVED] linux-grsec Error, grsec_proc_gid undeclared

    Hello, I've been trying to build linux-grsec from the AUR, and keep getting this error.
    Kernel: 3.5.5
    Patch: grsecurity-2.9.1-3.5.5-201210061727.patch
    CC [M] drivers/hid/hid-microsoft.o
    fs/proc/proc_net.c: In function ‘get_proc_task_net’:
    fs/proc/proc_net.c:116:33: error: ‘grsec_proc_gid’ undeclared (first use in this function)
    fs/proc/proc_net.c:116:33: note: each undeclared identifier is reported only once for each function it appears in
    make[2]: *** [fs/proc/proc_net.o] Error 1
    make[1]: *** [fs/proc] Error 2
    make[1]: *** Waiting for unfinished jobs....
    LD drivers/hsi/clients/built-in.o
    I don't know how to code in C.... I am assuming an undeclared error is super simple to fix. How might I go about declaring ‘grsec_proc_gid’ in  fs/proc/proc_net.c ?
    Last edited by hunterthomson (2012-10-09 05:07:05)

    Fixed in 3.5.6

  • Active Session - Identification

    Hi everyone!
    We are implementing an application security wherein a user logged-in to the system can not re-login into another workstation (other session) unless the user has closed or terminated the first session.
    I would like to ask if there's a way to identify active sessions in the server. This would help us in implementing our design needed for this application security.
    We are using Tomcat as our web application server.
    Thanks in advance!

    You can do one thing,
    1. Create a bean which will store userName and session id.
    2. On successful login, you push the values into this bean and add the bean to the servletcontext or JSP's application object.
    For example, if user XXXX was logged in, your bean,
    UserBean b = new UserBean();
    b.setName("XXXX");
    b.setSessionId(session.getId());
    application.setAttribute("XXXX",b);
    3. For further login, you check whether user XXXX is existing in the application, if existing, get the session id and check for the session (whether alive), if yes, reject the login otherwise modify the bean, add new session id and allow the user into your application.
    Hope this helps.
    Sudha

  • Madwifi driver setup for WPA-PSK wireless encryption

    Hi Group,
    I thought I was so close to having a complete setup, but then a problem.
    Here's the background:
    Using archlinux with stock kernel 2.6.22 on IBM T21 or T23 Thinkpad.
    Using an pcmcia SMC SMCWCBT-G network adapter.
    I am using the latest 0.9.4 madwifi source tar.gz
    The proper atheros madwifi drivers are installed and the ath0 device is active and functional.
    Reading along in the madwifi docs, I found that I also had to install "Linux WPA Supplicant" in order to connect to a WPA secured router or access point.
    I made the .config file as suggested in the Supplicant README and I set the defconfig file to work accept madwifi.
    But when I try  ~$/opt/wpa_supplicant-0.5.10/make   I get the following errors and cannot figure what to do ---
    l2_packet_freebsd.c:23:23: warning: net/if_dl.h: No such file or directory
    l2_packet_freebsd.c: In function 'l2_packet_init_libpcap':
    l2_packet_freebsd.c:146: error: 'BIOCIMMEDIATE' undeclared (first use in this function)
    l2_packet_freebsd.c:146: error: (Each undeclared identifier is reported only once
    l2_packet_freebsd.c:146: error: for each function it appears in.)
    l2_packet_freebsd.c: In function 'eth_get':
    l2_packet_freebsd.c:167: error: 'AF_LINK' undeclared (first use in this function)
    l2_packet_freebsd.c:167: error: 'NET_RT_IFLIST' undeclared (first use in this function)
    l2_packet_freebsd.c:177: error: dereferencing pointer to incomplete type
    l2_packet_freebsd.c:177: error: request for member 'ifm_msglen' in something not a structure or union
    l2_packet_freebsd.c:177: error: invalid operands to binary +
    l2_packet_freebsd.c:177: error: invalid use of non-lvalue array
    l2_packet_freebsd.c:179: error: invalid use of undefined type 'struct if_msghdr'
    l2_packet_freebsd.c:180: error: dereferencing pointer to incomplete type
    l2_packet_freebsd.c:180: error: request for member 'ifm_type' in something not a structure or union
    l2_packet_freebsd.c:180: error: 'RTM_IFINFO' undeclared (first use in this function)
    l2_packet_freebsd.c:181: error: dereferencing pointer to incomplete type
    l2_packet_freebsd.c:181: error: request for member 'ifm_addrs' in something not a structure or union
    l2_packet_freebsd.c:181: error: 'RTA_IFP' undeclared (first use in this function)
    l2_packet_freebsd.c:181: error: invalid operands to binary &
    l2_packet_freebsd.c:183: error: dereferencing pointer to incomplete type
    l2_packet_freebsd.c:183: error: request for member 'sdl_family' in something not a structure or union
    l2_packet_freebsd.c:183: error: dereferencing pointer to incomplete type
    l2_packet_freebsd.c:183: error: request for member 'sdl_nlen' in something not a structure or union
    l2_packet_freebsd.c:184: error: dereferencing pointer to incomplete type
    l2_packet_freebsd.c:184: error: request for member 'sdl_data' in something not a structure or union
    l2_packet_freebsd.c:184: error: dereferencing pointer to incomplete type
    l2_packet_freebsd.c:184: error: request for member 'sdl_nlen' in something not a structure or union
    l2_packet_freebsd.c:184: warning: passing argument 3 of 'memcmp' makes integer from pointer without a cast
    l2_packet_freebsd.c:186: warning: implicit declaration of function 'LLADDR'
    l2_packet_freebsd.c:186: error: dereferencing pointer to incomplete type
    l2_packet_freebsd.c:186: error: request for member 'sdl_alen' in something not a structure or union
    l2_packet_freebsd.c:186: warning: passing argument 2 of 'memcpy' makes pointer from integer without a cast
    l2_packetl2_packet_freebsd.c:23:23: warning: net/if_dl.h: No such file or directory
    l2_packet_freebsd.c: In function 'l2_packet_init_libpcap':
    l2_packet_freebsd.c:146: error: 'BIOCIMMEDIATE' undeclared (first use in this function)
    l2_packet_freebsd.c:146: error: (Each undeclared identifier is reported only once
    l2_packet_freebsd.c:146: error: for each function it appears in.)
    l2_packet_freebsd.c: In function 'eth_get':
    l2_packet_freebsd.c:167: error: 'AF_LINK' undeclared (first use in this function)
    l2_packet_freebsd.c:167: error: 'NET_RT_IFLIST' undeclared (first use in this function)
    l2_packet_freebsd.c:177: error: dereferencing pointer to incomplete type
    l2_packet_freebsd.c:177: error: request for member 'ifm_msglen' in something not a structure or union
    l2_packet_freebsd.c:177: error: invalid operands to binary +
    l2_packet_freebsd.c:177: error: invalid use of non-lvalue array
    l2_packet_freebsd.c:179: error: invalid use of undefined type 'struct if_msghdr'
    l2_packet_freebsd.c:180: error: dereferencing pointer to incomplete type
    l2_packet_freebsd.c:180: error: request for member 'ifm_type' in something not a structure or union
    l2_packet_freebsd.c:180: error: 'RTM_IFINFO' undeclared (first use in this function)
    l2_packet_freebsd.c:181: error: dereferencing pointer to incomplete type
    l2_packet_freebsd.c:181: error: request for member 'ifm_addrs' in something not a structure or union
    l2_packet_freebsd.c:181: error: 'RTA_IFP' undeclared (first use in this function)
    l2_packet_freebsd.c:181: error: invalid operands to binary &
    l2_packet_freebsd.c:183: error: dereferencing pointer to incomplete type
    l2_packet_freebsd.c:183: error: request for member 'sdl_family' in something not a structure or union
    l2_packet_freebsd.c:183: error: dereferencing pointer to incomplete type
    l2_packet_freebsd.c:183: error: request for member 'sdl_nlen' in something not a structure or union
    l2_packet_freebsd.c:184: error: dereferencing pointer to incomplete type
    l2_packet_freebsd.c:184: error: request for member 'sdl_data' in something not a structure or union
    l2_packet_freebsd.c:184: error: dereferencing pointer to incomplete type
    l2_packet_freebsd.c:184: error: request for member 'sdl_nlen' in something not a structure or union
    l2_packet_freebsd.c:184: warning: passing argument 3 of 'memcmp' makes integer from pointer without a cast
    l2_packet_freebsd.c:186: warning: implicit declaration of function 'LLADDR'
    l2_packet_freebsd.c:186: error: dereferencing pointer to incomplete type
    l2_packet_freebsd.c:186: error: request for member 'sdl_alen' in something not a structure or union
    l2_packet_freebsd.c:186: warning: passing argument 2 of 'memcpy' makes pointer from integer without a cast
    l2_packet_freebsd.c:186: warning: passing argument 3 of 'memcpy' makes integer from pointer without a cast
    make: *** [l2_packet_freebsd.o] Error 1
    [root@superaguri wpa_supplicant-0.5.10]#
    _freebsd.c:186: warning: passing argument 3 of 'memcpy' makes integer from pointer without a cast
    make: *** [l2_packet_freebsd.o] Error 1
    Why the freebsd errors??
    Any help or guidance greatly appreciated

    Thanks for the reply, Iphitus.
    I removed the source madwifi and wpa_supplicant installation and used pacman after the major update.
    I setup the wireless to use netcfg2 command, but the connection still fails --
    err, ath0: timed out
                        - DHCP IP lease attempt failed                                           [FAIL]
    I'm wondering if maybe I've overlooked something basic -- my access point is setup to use wpa2.  does wpa_supplicant not work with wpa2?
    I'll do some googling and see if I can find anything.
    I appreciate your time and help.

  • [support] gnome-launch-box

    Downloaded the PKGBUILD and attempted a makepkg without success.  Here is the output, thanks for the help:
    pthread -L/opt/gnome/lib -lgnomeui-2 -lSM -lICE -lbonoboui-2 -lgnome-keyring -lgnomecanvas-2 -lart_lgpl_2 -lpangoft2-1.0 -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lpangocairo-1.0 -lpango-1.0 -lcairo -lgnome-menu -lebook-1.2 -lgnome-2 -lpopt -ledataserver-1.2 -lgnomevfs-2 -lgobject-2.0 -lxml2 -lz -lgconf-2 -lbonobo-2 -lbonobo-activation -lORBit-2 -lm -lgmodule-2.0 -ldl -lgthread-2.0 -lglib-2.0
    configure: creating ./config.status
    config.status: creating Makefile
    config.status: creating src/Makefile
    config.status: creating data/Makefile
    config.status: creating data/images/Makefile
    config.status: creating tests/Makefile
    config.status: creating config.h
    config.status: config.h is unchanged
    config.status: executing depfiles commands
    make all-recursive
    make[1]: Entering directory `/root/packages/gnome-launch-box/src/gnome-launch-box-0.1'
    Making all in src
    make[2]: Entering directory `/root/packages/gnome-launch-box/src/gnome-launch-box-0.1/src'
    make all-am
    make[3]: Entering directory `/root/packages/gnome-launch-box/src/gnome-launch-box-0.1/src'
    if gcc -DHAVE_CONFIG_H -I. -I. -I.. -DMENU_I_KNOW_THIS_IS_UNSTABLE -DIMAGEDIR="/usr/share/lb/images" -DORBIT2=1 -pthread -I/opt/gnome/include/gnome-vfs-2.0 -I/opt/gnome/lib/gnome-vfs-2.0/include -I/opt/gnome/include/bonobo-activation-2.0 -I/opt/gnome/include/libbonobo-2.0 -I/opt/gnome/include/gconf/2 -I/opt/gnome/include/orbit-2.0 -I/opt/gnome/include/libgnomeui-2.0 -I/opt/gnome/include/libgnome-2.0 -I/opt/gnome/include/libbonoboui-2.0 -I/opt/gnome/include/gnome-keyring-1 -I/opt/gnome/include/gnome-menus -I/opt/gnome/include/evolution-data-server-1.6 -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libgnomecanvas-2.0 -I/usr/include/libart-2.0 -I/usr/include/freetype2 -I/usr/include/libxml2 -march=i686 -O2 -pipe -Wall -MT lb-module-applications.o -MD -MP -MF ".deps/lb-module-applications.Tpo" -c -o lb-module-applications.o lb-module-applications.c;
    then mv -f ".deps/lb-module-applications.Tpo" ".deps/lb-module-applications.Po"; else rm -f ".deps/lb-module-applications.Tpo"; exit 1; fi
    lb-module-applications.c:30:23: error: menu-tree.h: No such file or directory
    lb-module-applications.c:46: error: syntax error before 'MenuTree'
    lb-module-applications.c:46: warning: no semicolon at end of struct or union
    lb-module-applications.c:65: error: syntax error before 'MenuTreeDirectory'
    lb-module-applications.c:67: error: syntax error before '*' token
    lb-module-applications.c: In function 'lb_module_applications_class_init':
    lb-module-applications.c:93: error: invalid application of 'sizeof' to incomplete type 'LbModuleApplicationsPriv'
    lb-module-applications.c: In function 'lb_module_applications_init':
    lb-module-applications.c:101: error: dereferencing pointer to incomplete type
    lb-module-applications.c:102: error: dereferencing pointer to incomplete type
    lb-module-applications.c: In function 'module_applications_finalize':
    lb-module-applications.c:114: error: dereferencing pointer to incomplete type
    lb-module-applications.c:115: warning: implicit declaration of function 'menu_tree_remove_monitor'lb-module-applications.c:115: error: dereferencing pointer to incomplete type
    lb-module-applications.c:116: error: 'MenuTreeChangedFunc' undeclared (first use in this function)lb-module-applications.c:116: error: (Each undeclared identifier is reported only once
    lb-module-applications.c:116: error: for each function it appears in.)
    lb-module-applications.c:117: error: syntax error before 'module_applications_tree_changed'
    lb-module-applications.c:120: warning: implicit declaration of function 'menu_tree_unref'
    lb-module-applications.c:120: error: dereferencing pointer to incomplete type
    lb-module-applications.c:121: error: dereferencing pointer to incomplete type
    lb-module-applications.c: In function 'module_applications_query':
    lb-module-applications.c:167: error: dereferencing pointer to incomplete type
    lb-module-applications.c:168: error: 'MenuTreeEntry' undeclared (first use in this function)
    lb-module-applications.c:168: error: 'entry' undeclared (first use in this function)
    lb-module-applications.c:177: warning: implicit declaration of function 'menu_tree_entry_get_name'lb-module-applications.c:177: warning: assignment makes pointer from integer without a cast
    lb-module-applications.c:178: warning: implicit declaration of function 'menu_tree_entry_get_exec'lb-module-applications.c:178: warning: passing argument 1 of 'module_applications_strip_arguments' makes pointer from integer without a cast
    lb-module-applications.c:189: warning: implicit declaration of function 'menu_tree_entry_get_icon'lb-module-applications.c:189: warning: passing argument 1 of 'lb_get_pixbuf_from_icon_name' makes pointer from integer without a cast
    lb-module-applications.c: At top level:
    lb-module-applications.c:241: error: syntax error before 'MenuTreeDirectory'
    lb-module-applications.c: In function 'module_applications_add_directory':
    lb-module-applications.c:247: warning: implicit declaration of function 'menu_tree_directory_get_entries'
    lb-module-applications.c:247: error: 'dir' undeclared (first use in this function)
    lb-module-applications.c:247: warning: assignment makes pointer from integer without a cast
    lb-module-applications.c:248: warning: implicit declaration of function 'menu_tree_directory_get_subdirs'
    lb-module-applications.c:248: warning: assignment makes pointer from integer without a cast
    lb-module-applications.c:251: error: 'applications' undeclared (first use in this function)
    lb-module-applications.c:255: error: 'MenuTreeDirectory' undeclared (first use in this function)
    lb-module-applications.c:255: error: 'subdir' undeclared (first use in this function)
    lb-module-applications.c:257: error: syntax error before ')' token
    lb-module-applications.c:259: warning: implicit declaration of function 'menu_tree_directory_unref'
    lb-module-applications.c: In function 'module_applications_ensure_app_list':
    lb-module-applications.c:269: error: 'MenuTreeDirectory' undeclared (first use in this function)
    lb-module-applications.c:269: error: 'root' undeclared (first use in this function)
    lb-module-applications.c:272: error: dereferencing pointer to incomplete type
    lb-module-applications.c:276: error: dereferencing pointer to incomplete type
    lb-module-applications.c:277: error: dereferencing pointer to incomplete type
    lb-module-applications.c:277: warning: implicit declaration of function 'menu_tree_lookup'
    lb-module-applications.c:278: error: dereferencing pointer to incomplete type
    lb-module-applications.c:284: warning: implicit declaration of function 'menu_tree_add_monitor'
    lb-module-applications.c:284: error: dereferencing pointer to incomplete type
    lb-module-applications.c:285: error: 'MenuTreeChangedFunc' undeclared (first use in this function)lb-module-applications.c:286: error: syntax error before 'module_applications_tree_changed'
    lb-module-applications.c:291: warning: implicit declaration of function 'menu_tree_get_root_directory'
    lb-module-applications.c:291: error: dereferencing pointer to incomplete type
    lb-module-applications.c:294: error: dereferencing pointer to incomplete type
    lb-module-applications.c:295: error: dereferencing pointer to incomplete type
    lb-module-applications.c:305: error: dereferencing pointer to incomplete type
    lb-module-applications.c: At top level:
    lb-module-applications.c:311: error: syntax error before '*' token
    lb-module-applications.c: In function 'module_applications_tree_changed':
    lb-module-applications.c:315: error: 'module' undeclared (first use in this function)
    lb-module-applications.c: In function 'module_applications_free_app_list':
    lb-module-applications.c:323: error: dereferencing pointer to incomplete type
    lb-module-applications.c:324: error: 'menu_tree_entry_unref' undeclared (first use in this function)
    lb-module-applications.c:325: error: dereferencing pointer to incomplete type
    lb-module-applications.c:326: error: dereferencing pointer to incomplete type
    make[3]: *** [lb-module-applications.o] Error 1
    make[3]: Leaving directory `/root/packages/gnome-launch-box/src/gnome-launch-box-0.1/src'
    make[2]: *** [all] Error 2
    make[2]: Leaving directory `/root/packages/gnome-launch-box/src/gnome-launch-box-0.1/src'
    make[1]: *** [all-recursive] Error 1
    make[1]: Leaving directory `/root/packages/gnome-launch-box/src/gnome-launch-box-0.1'
    make: *** [all] Error 2
    ==> ERROR: Build Failed. Aborting...

    maybe you are looking in the wrong direction. maybe your special keys doesn't work like f1->f10 because you didn't picked the right keyboard model.
    depending of they way you configured input devices in X, you need to have in System->preferences->Keyboard, selected evdev if you have them autodetected or the one that you statically configured using keyboard driver.

Maybe you are looking for

  • Playback compatability

    I have received phonecalls from 3 colleagues about issues relating to DVD's burned in DVDSP not playing in some pcs or even the mac that created them. here is the lowdown as it effects me first making following assumption: 1. bitrate is 6.8mbs and cb

  • Split syncing to 2 Macs (1st for music + photos, 2nd for contacts)?

    I have a dilemma: I keep my music and photos organized on one Mac (at home) and my contacts organized on another (at work). I realize I could move all my photos and music to my work Mac, but that will be a pain in the butt long-term, so, is there any

  • Awesome Bar search not working properly

    When I try to search from the Awesome Bar, instead of searching with Ixquick (which I set in about:config), it searches the currently active engine in the Search Bar. I have Firefox Portable 23.0 (by PortableApps.com) and run it on Windows 8.

  • Adobe reader license agreement

    This agreement appears whenever I try to open a pdf with adobe reader 11.0. 02.  It has no "accept" button and can't be closed without closing the computer. I tried uninstalling and then reinstalling adobe reader 10, but the same thing is happening. 

  • Is there a way to disable plugins globally, but enable them on a per-site basis?

    Is there a way in Firefox to globally disable plugins and allow only certain sites to run them (i.e., a whitelist)? I've tried working with CAPS, but it doesn't seem to be able to turn off <embed> or <object> tags, only certain aspects of JavaScript.