Search Result

Collapse
17 results in 0.0019 seconds.
Keywords
Members
Tags
  •  

  • bretta
    started a topic Calling unmarshalled DLL from C#

    Calling unmarshalled DLL from C#

    Hi

    I am trying to make a series of calls to an unmarshalled DLL. The header file for the DLL reads as follows:
    Code:
    BOOL WINAPI	InitUSB	(void);
    BOOL WINAPI	CloseUSB (void);
    BOOL WINAPI USBReadData(BYTE Endpoint,DWORD BytesToRead,PBYTE DataBuffer);
    BOOL WINAPI USBSendCommand(BYTE bCmd);
    BOOL WINAPI USBGetCommand (BYTE bCmd, WORD wLength, PBYTE pData);

    In my code I have defined...
    See more | Go to post

  • imukai
    started a topic Handling UnauthorizedAccessException

    Handling UnauthorizedAccessException

    I have a forms-based authentication application on our intranet - ASP.NET 3.5 (C#).

    For security purposes there is one specific .aspx file that we have enabled Integrated Windows Authentication turned on. Administrators in another group control access to this .aspx file via the file system. They have specifically set DENY access on this file to a few groups of employees.

    If one of those employees somehow manages to...
    See more | Go to post
Working...