Skip to content
This repository has been archived by the owner on Jan 15, 2023. It is now read-only.

Commit

Permalink
Added reference C source
Browse files Browse the repository at this point in the history
  • Loading branch information
fredrikhr committed May 10, 2017
1 parent 3d611d5 commit 6ec2ba1
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ dnimcache/
*.log
*.ilk
*.pdb
*.obj

# iOS specific wildcards.
*.mode1v3
Expand Down
18 changes: 18 additions & 0 deletions cref/main.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#include <stdlib.h>
#include <stdio.h>

#include <Windows.h>
#define SECURITY_WIN32
#include <Security.h>


int main(int argc, char* argv[])
{
const int x = sizeof(SEC_CHAR);

const auto y = ERROR_SUCCESS;

void* ptr = AcquireCredentialsHandle;

return 0;
}

0 comments on commit 6ec2ba1

Please sign in to comment.