4 * Copyright 2004 Jon Griffiths
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #include "wine/port.h"
29 #include "wine/debug.h"
31 WINE_DEFAULT_DEBUG_CHANNEL(actctx);
34 /***********************************************************************
35 * CreateActCtxA (KERNEL32.@)
37 * Create an activation context.
39 HANDLE WINAPI CreateActCtxA(PCACTCTXA pActCtx)
42 return INVALID_HANDLE_VALUE;
45 /***********************************************************************
46 * CreateActCtxW (KERNEL32.@)
48 * Create an activation context.
50 HANDLE WINAPI CreateActCtxW(PCACTCTXW pActCtx)
53 return INVALID_HANDLE_VALUE;
56 /***********************************************************************
57 * ActivateActCtx (KERNEL32.@)
59 * Activate an activation context.
61 BOOL WINAPI ActivateActCtx(HANDLE hActCtx, ULONG_PTR *ulCookie)
67 /***********************************************************************
68 * DeactivateActCtx (KERNEL32.@)
70 * Deactivate an activation context.
72 BOOL WINAPI DeactivateActCtx(DWORD dwFlags, ULONG_PTR ulCookie)
78 /***********************************************************************
79 * GetCurrentActCtx (KERNEL32.@)
81 * Get the current activation context.
83 BOOL WINAPI GetCurrentActCtx(HANDLE* phActCtx)
89 /***********************************************************************
90 * AddRefActCtx (KERNEL32.@)
92 * Add a reference to an activation context.
94 void WINAPI AddRefActCtx(HANDLE hActCtx)
99 /***********************************************************************
100 * ReleaseActCtx (KERNEL32.@)
102 * Release a reference to an activation context.
104 void WINAPI ReleaseActCtx(HANDLE hActCtx)
109 /***********************************************************************
110 * ZombifyActCtx (KERNEL32.@)
112 * Release a reference to an activation context.
114 BOOL WINAPI ZombifyActCtx(HANDLE hActCtx)
120 /***********************************************************************
121 * FindActCtxSectionStringA (KERNEL32.@)
123 * Find information about a GUID in an activation context.
125 BOOL WINAPI FindActCtxSectionStringA(DWORD dwFlags, const GUID* lpExtGuid,
126 ULONG ulId, LPCSTR lpSearchStr,
127 PACTCTX_SECTION_KEYED_DATA pInfo)
133 /***********************************************************************
134 * FindActCtxSectionStringW (KERNEL32.@)
136 * Find information about a GUID in an activation context.
138 BOOL WINAPI FindActCtxSectionStringW(DWORD dwFlags, const GUID* lpExtGuid,
139 ULONG ulId, LPCWSTR lpSearchStr,
140 PACTCTX_SECTION_KEYED_DATA pInfo)
146 /***********************************************************************
147 * FindActCtxSectionGuid (KERNEL32.@)
149 * Find information about a GUID in an activation context.
151 BOOL WINAPI FindActCtxSectionGuid(DWORD dwFlags, const GUID* lpExtGuid,
152 ULONG ulId, const GUID* lpSearchGuid,
153 PACTCTX_SECTION_KEYED_DATA pInfo)
159 /***********************************************************************
160 * QueryActCtxW (KERNEL32.@)
162 * Get information about an activation context.
164 BOOL WINAPI QueryActCtxW(DWORD dwFlags, HANDLE hActCtx, PVOID pvSubInst,
165 ULONG ulClass, PVOID pvBuff, SIZE_T cbBuff,
169 /* this makes Adobe Photoshop 7.0 happy */
170 SetLastError( ERROR_CALL_NOT_IMPLEMENTED);