User Profile

Collapse

Profile Sidebar

Collapse
shoonya
shoonya
Last Activity: Aug 16 '10, 11:58 AM
Joined: May 9 '07
Location: Bangalore, India
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • shoonya
    replied to Diffrence between "/" and "\"
    in C
    @newb16

    Thanks :)

    -Shoonya
    See more | Go to post

    Leave a comment:


  • shoonya
    started a topic Diffrence between "/" and "\"
    in C

    Diffrence between "/" and "\"

    Hi,

    What is the diffrence between below 2 lines. Both the codes are working fine in my project using ARM compiler.

    Code:
    1. #include "abc/foo.h"
    2. #include "abc\foo.h"
    -Shoonya
    See more | Go to post

  • shoonya
    replied to Visual Studio error ntstatus 0xc0150002
    in C
    giving more details:

    I am having many projects, and 1 has been set as "startup project", say FOO
    On starting the debug, it's giving message "foo.exe has triggered a breakpoint"
    and it breaks at line no: 459, file: crtdll.c
    and output window is having above mentioned error.


    Shoonya
    See more | Go to post

    Leave a comment:


  • shoonya
    replied to Visual Studio error ntstatus 0xc0150002
    in C
    Hi,

    That problem is still not resolved. Can anybody provide some more help..

    Shoonya
    See more | Go to post

    Leave a comment:


  • shoonya
    replied to Visual Studio error ntstatus 0xc0150002
    in C
    What exactly is this "VS2005 bug"
    there are similar systems here having SP3 but their visual studio is running fine with same piece of code

    I have already got my visual studio re-installed
    See more | Go to post

    Leave a comment:


  • shoonya
    replied to Visual Studio error ntstatus 0xc0150002
    in C
    My dll is abc.dll
    and i have got SP3 installed
    See more | Go to post

    Leave a comment:


  • shoonya
    replied to Visual Studio error ntstatus 0xc0150002
    in C
    I checked in "configurat ion manager"

    All the modules are having "Debug" against it
    and I never changed it to "Release"
    so if i am giving fresh build then all my dll should be in "debug" mode.

    but then also It's giving same error again
    :(

    Shoonya
    See more | Go to post

    Leave a comment:


  • shoonya
    replied to Visual Studio error ntstatus 0xc0150002
    in C
    Hi,

    thanks for the prompt reply,

    I am using debug mode.
    I gave a full clean and build my whole project in debug mode, then also I am getting this error.

    Can you tell me where to find "configurat ion manager"

    Shoonya
    See more | Go to post

    Leave a comment:


  • shoonya
    started a topic Visual Studio error ntstatus 0xc0150002
    in C

    Visual Studio error ntstatus 0xc0150002

    Hi,
    I am bit new to visual studio.
    I am having following error while building the project.

    Code:
    LDR: LdrpWalkImportDescriptor() failed to probe abc.dll for its manifest, ntstatus 0xc0150002
    
    abc.exe': Loaded 'C:\WINDOWS\incops3\ICDCNL.dll', Binary was not built with debug information.
    What should I do in this case.
    I am using xp and visual studio2005

    Shoonya
    See more | Go to post

  • shoonya
    started a topic hiding the source code
    in C

    hiding the source code

    Hi,

    i am working on a mobile platform written in C.

    There are certain functions (3rd party codes) called in the source code, which are only present in header (.h file), and their definition is not there.

    Now, where exactly (in which type of file) is the definition of these functions present and how the whole mechanism of hiding the source code works ?

    (It's obvious that i can not see the...
    See more | Go to post

  • shoonya
    replied to Batch programming using SET
    Thanks Harshadd for the reply

    Shoonya
    See more | Go to post

    Leave a comment:


  • shoonya
    started a topic Batch programming using SET

    Batch programming using SET

    Hi,

    Can any body help me out in understanding this line

    Code:
    SET VAR= -D_ABC -D_DEF
    what does -D do ???

    Shoonya
    See more | Go to post

  • shoonya
    replied to Passing parameter to a function
    in C
    hi donbock,

    Thanks a lot

    Shoonya
    See more | Go to post

    Leave a comment:


  • shoonya
    started a topic Passing parameter to a function
    in C

    Passing parameter to a function

    what does this declaration mean ??

    Code:
    void Foo( int a, int b, ... ){
    ..
    }
    Shoonya
    See more | Go to post

  • shoonya
    replied to unresolved extern
    in C
    thanks weaknessforcats

    the problem is solved now,
    1>
    i was not mentioning the function in the .def file [where functions that needs to be exported are kept]

    2>
    I was not including the location of library [.lib file] of the other module

    and it was linking error

    Shoonya
    See more | Go to post

    Leave a comment:


  • shoonya
    replied to Using VC++ SysAssert error while copying files
    in C
    thanks weaknessforcats

    can you just explain why this problem is occurring, as i won't be able to delete and re-create the solution files [all this files belongs to my company]

    Shoonya
    See more | Go to post

    Leave a comment:


  • shoonya
    replied to unresolved extern
    in C
    thanks donbock

    I am using Microsoft visual studio

    shoonya
    See more | Go to post

    Leave a comment:


  • shoonya
    started a topic unresolved extern
    in C

    unresolved extern

    hi,

    there is a function defined in and prototype is present in abc.h

    i want to call this function from another module, so i included the abc.h file along with correct path, but tehn also it's giving the error...
    See more | Go to post

  • shoonya
    started a topic Using VC++ SysAssert error while copying files
    in C

    Using VC++ SysAssert error while copying files

    Hi,

    I am having a Microsoft Visual Studio Solution file "abc" present in the folder "foo" having having all the files.

    Now accidently I did something to the solution file and it's giving "sysAssert error" at a location where i havn't done any modification.

    now i took the same folder "foo" from dump and run it, it was working fine, but when i copied certain .c and...
    See more | Go to post
    Last edited by shoonya; Sep 25 '08, 02:09 PM. Reason: subject change

  • shoonya
    started a topic declaring 2-d array dynamically
    in C

    declaring 2-d array dynamically

    Code:
    void foo(char *str){
    ...
    int arr[strlen(set)][strlen(set)];
    ..
    }
    certainly we can't do this in C.
    So how to implement this thing in C.
    Need help urgently
    See more | Go to post
No activity results to display
Show More
Working...