CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: jlam9012

Search: Search took 0.02 seconds.

  1. Replies
    8
    Views
    1,064

    Re: C pointer issue

    #include <stdio.h>

    // Token struct - contains a Type, and char* field
    typedef struct {
    Type type;
    char *p;
    } Token;

    int hasNext(char* cur) {
    printf("cur: &#37;c\n", *cur);
  2. Replies
    8
    Views
    1,064

    Re: C pointer issue

    Does that work in C? I thought you could only pass by value.
  3. Replies
    8
    Views
    1,064

    C pointer issue

    Hi,

    Here is my code in C, I will explain the problem right below it:



    int main(void)
    {
    char expr[] = "3 + 3\n";
    char* cur;
  4. Thread: SQL Array

    by jlam9012
    Replies
    1
    Views
    819

    SQL Array

    Hi,

    Is there an array data type that can hold smallint values in SQL?

    Thanks
  5. Replies
    3
    Views
    2,215

    Re: Unable to convert to PCWSTR

    Thanks, this worked! :)
  6. Replies
    2
    Views
    996

    Debug Assertion Fail

    Hey,

    I am writing a pretty simple "Hello World Driver" that does some basic communication with kernel mode to user mode and the driver loads correctly, I receive my "hello world" message, but then...
  7. Replies
    3
    Views
    2,215

    Unable to convert to PCWSTR

    Hi,

    I am trying to call RtlInitUnicodeString()
    (http://msdn.microsoft.com/en-us/library/ms648420%28v=vs.85%29.aspx)

    The second parameter takes a PCWSTR and I'm trying to pass something like...
  8. Thread: Code Coverage

    by jlam9012
    Replies
    0
    Views
    1,730

    Code Coverage

    Hi,

    I am working on a filter driver that performs registry callbacks. It doesn't really fall under any specific kind of driver but is meant to capture events with the Windows registry. It is...
Results 1 to 8 of 8





Click Here to Expand Forum to Full Width

Featured