This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace OAuthWithO365 | |
{ | |
using System; | |
using System.Collections.Generic; | |
using System.Net.Http; | |
using System.Threading.Tasks; | |
using MailKit; | |
using MailKit.Net.Imap; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <afx.h> | |
#include <msxml2.h> | |
HRESULT CDocumentEvidenceManager::TryResolvePageDerivation(SDocumentEvidence evidence, const char* destinationPath) | |
{ | |
HRESULT ret = S_OK; | |
// format url with xml source stream | |
CString url; | |
const CString title = evidence.szTitle; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ----------------------------------------------------------------------- | |
// <copyright file="QueryStringObjectSerializer.cs" company="Agora SA"> | |
// Copyright (c) TDE - Development IT , lipiec 2017 | |
// <author>Marcin Buchwald</author> | |
// </copyright> | |
// ----------------------------------------------------------------------- | |
namespace NewsMavens.Models.Helpers | |
{ | |
using System; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// MsgWaitForMultipleObjectsEx.cpp : Defines the entry point for the console application. | |
// | |
#include "stdafx.h" | |
#include <Windows.h> | |
VOID CALLBACK APCProc(ULONG_PTR dwParam) { | |
printf("Worker thread in APCProc\n"); | |
}; |