Search:

Type: Posts; User: BobS0327

Search: Search took 0.01 seconds.

  1. Replies
    16
    Views
    16,924

    [EDIT] The reason you're receiving this incorrect...

    [EDIT] The reason you're receiving this incorrect parameter message is probably because you're using a very old compiler or your compiler is misconfigured. I'm using Visual Studio 2008 and I do NOT...
  2. Replies
    16
    Views
    16,924

    This may be a much simpler approach for XP and...

    This may be a much simpler approach for XP and up...


    #include <windows.h>
    #include <stdio.h>
    #include <tchar.h>

    int main(void)
    {
    typedef BOOL (WINAPI *LPFNIUA)(void);
  3. Replies
    16
    Views
    16,924

    It means that you are using a incorrect input...

    It means that you are using a incorrect input parameter. That is, TokenElevationType is the incorrect input parameter. After you determine the correct parameter, you'll have to call...
  4. Replies
    16
    Views
    16,924

    This is all you need for the above code: ...

    This is all you need for the above code:


    typedef enum _TOKEN_ELEVATION_TYPE {
    TokenElevationTypeDefault = 1,
    TokenElevationTypeFull,
    TokenElevationTypeLimited,
    }...
  5. Replies
    16
    Views
    16,924

    They're defined in ntifs.h which is found in the...

    They're defined in ntifs.h which is found in the Windows DDK version 6001.18001.
Results 1 to 5 of 5